#fw-section-custom-html-b991861a-1ba3-4a88-aa23-9cf9a99aaefc {

.gear-section {
  margin-bottom: 40px;
}

.gear-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #222;
  border-bottom: 2px solid #000;
  padding-bottom: 5px;
}

.gear-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.gear-card {
  flex: 1 1 200px;
  max-width: 220px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gear-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.2);
}

.gear-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background-color: #f9f9f9;
}

.gear-card h3 {
  font-size: 16px;
  margin: 10px 5px 5px;
  color: #222;
}

.gear-card p {
  font-size: 14px;
  color: #555;
  margin: 0 5px 10px;
}

.gear-card button {
  margin: 10px 0 15px;
  padding: 10px 15px;
  background: #000;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  width: 80%;
  transition: background 0.2s;
}

.gear-card button:hover {
  background: #333;
}

/* ---------- MOBILE FIX ---------- */
@media (max-width: 768px) {
  .gear-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .gear-card {
    max-width: 100%;
    flex: none;
  }

  .gear-card img {
    height: 140px; /* smaller image for mobile */
  }

  .gear-card h3 {
    font-size: 14px;
  }

  .gear-card p {
    font-size: 12px;
  }

  .gear-card button {
    padding: 8px 10px;
    font-size: 13px;
  }
}

}
#fw-section-custom-html-4d781c47-032e-44f0-b81b-3d606b3c4db5 {

body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f5f5f5;
  color: #222;
}

.filter-container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 15px;
  font-size: 16px;
}

.gear-section {
  margin: 40px auto;
  max-width: 1200px;
  padding: 0 15px;
}

.gear-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #222;
  border-bottom: 2px solid #000;
  padding-bottom: 5px;
}

.gear-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.gear-card {
  flex: 1 1 220px;
  max-width: 240px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gear-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.2);
}

.gear-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background-color: #f9f9f9;
}

.gear-card h3 {
  font-size: 16px;
  margin: 10px 5px 5px;
  color: #222;
}

.gear-card p {
  font-size: 14px;
  color: #555;
  margin: 0 5px 10px;
}

.gear-card button {
  margin: 10px 0 15px;
  padding: 10px 15px;
  background: #000;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  width: 80%;
  transition: background 0.2s;
}

.gear-card button:hover {
  background: #333;
}

}












#fw-section-custom-html-2ee70d32-d2e1-47f3-b179-ca4490cb1595 {

body {
  background-color: #fff; /* white background */
  color: #000; /* black text */
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.instagram-section {
  text-align: center;
  max-width: 600px;
  width: 90%;
}

.instagram-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
  color: #000;
}

.instagram-slide {
  border: 2px solid #000;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto 20px auto;
  max-width: 540px;
  width: 100%;
  transition: transform 0.5s ease;
}

/* Optional hover effect */
.instagram-slide:hover {
  transform: scale(1.02);
}

.instagram-link {
  display: inline-block;
  margin-top: 10px;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #000;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background 0.3s, color 0.3s;
}

.instagram-link:hover {
  background-color: #000;
  color: #fff;
}

}












#fw-section-custom-html-f93179d3-1682-4d5f-bc44-be9eca838cea {

/* Fourthwall override and full page */
.links-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* mobile starts near top */
    align-items: center;
    background: #121212;
    padding-top: 20px;
    z-index: 9999;
}

/* Center content on desktop */
@media screen and (min-width: 481px) {
    .links-page {
        justify-content: center; /* vertically center on desktop */
        padding-top: 0;
    }
}

/* Hide Fourthwall default elements */
header, nav, .sidebar, .site-header, .mobile-header, .mobile-nav, .mobile-menu, 
.site-navigation, .default-page-content, .site-footer, footer {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Music controls container above card */
.music-controls-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

/* Play button styling */
.music-control {
    position: relative !important;
    bottom: auto !important;
    right: auto !important;
    margin: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
    border: 2px solid #555;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}
.music-control:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(128,128,128,0.5);
}
.music-control span {
    font-size: 1.8rem; /* bigger icon */
    color: #fff;
}

/* Volume slider - desktop only */
.volume-control {
    position: relative !important;
    bottom: auto !important;
    right: auto !important;
    margin: 0;
    width: 120px;
    display: flex;
}
.volume-control input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: #555;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    transition: background 0.3s;
}

/* Track hover */
.volume-control input[type="range"]:hover {
    background: #888;
}

/* Webkit thumb */
.volume-control input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 2px solid #888;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}
.volume-control input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    background: #eee;
}

/* Firefox thumb */
.volume-control input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #fff;
    border: 2px solid #888;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}
.volume-control input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.1);
    background: #eee;
}

/* Hide volume on mobile */
@media screen and (max-width: 480px) {
    .volume-control {
        display: none !important;
    }
}

/* Card container */
.links-container {
    background: #1f1f1f;
    border: 2px solid #555;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 5px 15px rgba(0,0,0,0.3);
    max-width: 400px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

/* Profile image */
.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 25px auto;
    border: 3px solid #555;
    cursor: pointer;
}

/* Header */
.links-container h1 {
    font-size: 2rem;
    margin-bottom: 25px;
}

/* Link buttons */
.links-container a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 12px 0;
    padding: 15px 20px;
    background: linear-gradient(90deg, #555, #888);
    color: #fff;
    font-weight: bold;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.links-container a:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(128,128,128,0.5);
}

/* Social media icons */
.links-container a img {
    width: 24px;
    height: 24px;
}

/* Easter egg eyes */
.easter-egg {
    position: absolute;
    top: 20%;
    right: -60px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: right 0.5s ease;
    z-index: 1;
}
.easter-egg.show {
    right: -20px;
}

/* Fullscreen overlay for profile image */
.img-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.img-overlay img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #555;
}

/* Mobile adjustments for card */
@media screen and (max-width: 480px) {
    .links-container {
        padding: 30px 20px;
    }
    .links-container h1 {
        font-size: 1.8rem;
    }
    .links-container a {
        font-size: 1rem;
        padding: 12px 18px;
    }

    .music-controls-container {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 10px;
        width: 90%;
    }
}

}

#fw-section-custom-html-0d9ed976-9ca5-41dc-9f75-ca4c83a26127 {

body {
  margin: 0;
  padding: 0;
  background: #fff; /* match your site's main background */
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #111;
}

.stream-container {
  max-width: 1200px;  /* align with your Fourthwall content width */
  margin: 0 auto;
  padding: 40px 20px;
}

.stream-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: left;
  color: #111; /* minimal black heading */
}

#twitch-embed {
  width: 100%;
  min-height: 600px;
  background: #000; /* fallback background */
  border: 1px solid #e5e5e5; /* subtle border */
  border-radius: 8px;
  overflow: hidden;
}

}
#fw-section-custom-html-a9898c6e-4241-4e04-a09e-4c6324e52501 {

/* Twitch grid */
#fw-section-recent-twitch .recent-videos__grid .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (min-width: 768px) {
  #fw-section-recent-twitch .recent-videos__grid .grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Thumbnail container */
#fw-section-recent-twitch .video-tile__image-container {
  position: relative;
  overflow: hidden;
}

/* Twitch logo */
#fw-section-recent-twitch .twitch-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: auto;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}

/* Show & scale on hover */
#fw-section-recent-twitch .video-tile__image-container:hover .twitch-logo {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.05);
}


}
#fw-section-custom-html-fb7234fd-ae96-4d64-8473-80d243f06d7d {

/* ==========================
   Container Alignment
   ========================== */
#fw-section-recent-uploads .container.wrapper {
  width: 100% !important;
  max-width: none !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

/* ==========================
   Header Alignment - Only Recent Uploads
   ========================== */
#fw-section-recent-uploads > section .section-header {
  display: flex;
  justify-content: space-between; /* title left, button right */
  align-items: center;
  margin: 0 !important;
  padding: 0 !important;
}

/* ==========================
   Grid
   ========================== */
#fw-section-recent-uploads .recent-videos__grid .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* mobile */
  gap: 10px;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  #fw-section-recent-uploads .recent-videos__grid .grid {
    grid-template-columns: repeat(3, 1fr); /* keep thumbnails same size */
  }
}

/* ==========================
   Video Tiles & Captions
   ========================== */
#fw-section-recent-uploads .video-tile__image-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  overflow: hidden;
}

#fw-section-recent-uploads .video-tile__image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#fw-section-recent-uploads .play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  transform: translate(-50%, -50%);
  background: url('https://upload.wikimedia.org/wikipedia/commons/b/b8/YouTube_play_button_icon_%282013%E2%80%932017%29.svg') no-repeat center center;
  background-size: contain;
  opacity: 0;
  transition: 0.2s;
}

#fw-section-recent-uploads .video-tile__image-container:hover .play-overlay {
  opacity: 0.75;
  transform: translate(-50%, -50%) scale(1.1);
}

#fw-section-recent-uploads .video-tile__caption {
  margin-top: 5px;
  font-size: 14px;
  line-height: 1.2;
}

/* ==========================
   Button Styling
   ========================== */
#fw-section-recent-uploads .button {
  border-radius: 0;
  padding: 8px 20px;
}


}
#fw-section-custom-html-5a293224-4bdd-4448-8bc9-856a26d94de6 {

/* === Full Page Overlay === */
#overlay {
  position: fixed;
  top:0;
  left:0;
  width:100vw;
  height:100vh;
  background:#1a1a1a;
  color:#eee;
  font-family: Arial, sans-serif;
  z-index:9999999; /* Above everything */
  display:flex;
  flex-direction:column;
  overflow:auto;
}

/* === Header / Navigation === */
header {
  position: sticky;
  top:0;
  background:#111;
  padding:15px 0;
  text-align:center;
  z-index:1000;
}
nav a {
  margin:0 25px;
  color:#eee;
  text-decoration:none;
  font-weight:bold;
  font-size:1.1rem;
  cursor:pointer;
  transition: color 0.2s;
}
nav a:hover { color:#ffcc00; }

/* === Main Content === */
main {
  padding:40px 20px;
  flex:1;
}
section {
  margin-bottom:60px;
  text-align:center;
}
h1,h2 {
  margin-bottom:15px;
}

/* === Footer === */
footer {
  text-align:center;
  padding:30px 20px;
  border-top:1px solid #222;
}

/* === Modal Overlays === */
.modalOverlay {
  position: fixed;
  top:0; left:0;
  width:100vw; height:100vh;
  background: rgba(0,0,0,0.95);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index:10000;
  overflow-y:auto;
  padding:40px 20px;
}

/* === Portfolio Grid === */
#portfolioGrid {
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap:20px;
  max-width:1200px;
  width:100%;
}
#portfolioGrid img {
  width:100%;
  max-width:250px;
  border-radius:8px;
  cursor:pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
#portfolioGrid img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255,255,255,0.2);
}

/* === Lightbox === */
#lightbox {
  position: fixed;
  top:0; left:0;
  width:100vw;
  height:100vh;
  background: rgba(0,0,0,0.95);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:11000;
}
#lightbox img {
  max-width:90%;
  max-height:80%;
  border-radius:10px;
}
#lightbox .nav {
  position:absolute;
  top:50%;
  width:100%;
  display:flex;
  justify-content:space-between;
  transform: translateY(-50%);
  padding:0 20px;
}
#lightbox button {
  font-size:1.8rem;
  background: rgba(0,0,0,0.5);
  color:#fff;
  border:none;
  border-radius:50%;
  width:45px; height:45px;
  cursor:pointer;
  display:flex; align-items:center; justify-content:center;
}
#lightbox button:hover { background: rgba(255,255,255,0.2); }

/* === Booking Card === */
#bookingCard {
  max-width:480px;
  margin:0 auto;
  background:#222;
  padding:20px;
  border-radius:10px;
  display:flex;
  flex-direction:column;
  align-items:center;
}

/* === Calendar === */
#calendar {
  width:100%;
  margin-bottom:20px;
}

/* Flatpickr Custom Colors */
.flatpickr-calendar {
  background: #333 !important;
  color: #eee !important;
  border:1px solid #555 !important;
  font-size:14px;
}
.flatpickr-day {
  color: #eee !important;
}
.flatpickr-day.today {
  background: #555 !important;
  color: #ffcc00 !important;
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: #ffcc00 !important;
  color: #111 !important;
}
.flatpickr-day:hover {
  background: #444 !important;
  color: #ffcc00 !important;
}

/* === Booking Form === */
#bookingForm {
  width:100%;
  display:flex;
  flex-direction:column;
}
#bookingForm label {
  margin:10px 0 5px;
  text-align:left;
}
#bookingForm input,
#bookingForm textarea {
  padding:10px;
  border:none;
  border-radius:5px;
  background:#333;
  color:#eee;
  width:100%;
  resize:none;
}
#bookingForm textarea { min-height:80px; }
#bookingForm button {
  margin-top:15px;
  padding:12px 25px;
  background:#ffcc00;
  color:#111;
  font-weight:bold;
  border:none;
  border-radius:6px;
  cursor:pointer;
  transition:0.2s;
}
#bookingForm button:hover { opacity:0.8; }

}

#fw-section-custom-html-edda9bec-c839-4eeb-a6a8-79abbec4356d {

body { margin:0; font-family: 'Arial', sans-serif; background:#121212; color:#fff; }
.profile-page { display:flex; justify-content:center; align-items:flex-start; padding:40px 10px; min-height:100vh; }

/* Profile card */
.profile-card {
    background:#1f1f1f;
    border-radius:20px;
    max-width:500px;
    width:100%;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,0.6);
}

/* Profile header */
.profile-header { text-align:center; margin-bottom:25px; }
.profile-header img { width:120px; height:120px; border-radius:50%; cursor:pointer; border:3px solid #555; }
.profile-header h1 { margin:10px 0 5px 0; font-size:2rem; }
.profile-header .handle { color:#888; margin-bottom:10px; }
.profile-header h2 { font-size:1.4rem; color:#ccc; }

/* Form */
#qnaForm { display:flex; flex-direction:column; gap:12px; margin-bottom:25px; }
#qnaForm input, #qnaForm textarea {
    width:100%; padding:12px; border-radius:12px; border:none; background:#2a2a2a; color:#fff; font-size:1rem;
}
#qnaForm textarea { resize:none; height:80px; }
#qnaForm input::placeholder, #qnaForm textarea::placeholder { color:#aaa; }
#qnaForm button {
    padding:12px; background:linear-gradient(90deg,#555,#888); border:none; border-radius:12px;
    color:#fff; font-weight:bold; cursor:pointer; font-size:1rem; transition:0.3s all;
}
#qnaForm button:hover { transform:scale(1.05); box-shadow:0 6px 20px rgba(128,128,128,0.5); }

/* Questions feed */
#questionsList { display:flex; flex-direction:column; gap:15px; }
.question-card { background:#2a2a2a; border-radius:12px; padding:15px 20px; box-shadow:0 4px 15px rgba(0,0,0,0.3); }
.question-card .card-header { display:flex; justify-content:space-between; margin-bottom:5px; font-weight:bold; }
.question-card .card-header .datetime { font-weight:normal; color:#999; font-size:0.8rem; }
.question-card .card-question { color:#ddd; }

/* Profile overlay */
.img-overlay {
    display:none; position:fixed; top:0; left:0; width:100vw; height:100vh;
    background:rgba(0,0,0,0.9); justify-content:center; align-items:center; z-index:9999;
}
.img-overlay img { width:300px; height:300px; border-radius:50%; object-fit:cover; border:3px solid #555; }

/* Hide Fourthwall default elements */
header, nav, .sidebar, .site-header, .mobile-header, .mobile-nav, .mobile-menu,
.site-navigation, .default-page-content, .site-footer, footer {
    display:none !important; visibility:hidden !important; height:0 !important; overflow:hidden !important;
    margin:0 !important; padding:0 !important;
}

/* Mobile */
@media(max-width:480px){
    .profile-card{padding:20px;}
    .profile-header h1{font-size:1.6rem;}
    .profile-header h2{font-size:1.2rem;}
    #qnaForm input,#qnaForm textarea,#qnaForm button{font-size:0.95rem;}
}

}