  :root {
    /* --- CUSTOMIZATION VARIABLES --- */
    --label-bg-color: #000000; --label-bg-opacity: 0.72; --label-blur: 5px;
    --label-text-color: #FF8A00; --label-text-size: 24px; 
    --label-border-color: #2E231B; --label-border-opacity: 0.75; 
    --label-thickness: 2px; --label-rounding: 10px; 
    --label-v-pad: 8px; --label-h-pad: 80px;

    --frame-bg-color: #000000; --frame-bg-opacity: 0.72; --frame-blur: 5px;          
    --frame-border-color: #2E231B; --frame-border-opacity: 0.75; 
    --frame-thickness: 3px; --frame-rounding: 10px; --frame-padding: 30px;

    --card-rounding: 10px; --card-bg: #000000; 
    --overlay-bg-color: #000000; --overlay-opacity: 0.75; --overlay-blur: 12px;        

    /* BUTTONS */
    --btn1-bg: #5c5cff; --btn1-text: #ffffff; --btn1-opacity: 1.0;         
    --btn2-bg: #b05800; --btn2-text: #ffffff; --btn2-border: #b05800; --btn2-opacity: 1.0; 
    --btn3-bg: transparent; --btn3-text: #ffffff; --btn3-border: #ffffff; --btn3-opacity: 0.8;
    
    --nav-btn-color: #FF8A00;
	
   	--card-to-button-gap: 40px; /* Adjust this number to your liking */
    --lava-btn-color: #5c5cff;   /* Change this to any color */
    --boosty-btn-color: #b05800; /* Change this to any color */
	
  }

  /* 1. Updated Body (Removed GIF background) */
body { 
  font-family: 'Inter', sans-serif; 
  margin: 0; 
  color: white; 
  padding: 20px;
  background: black; /* Fallback color */
}

/* 2. Added Video Background Logic */
#bg-video {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100; /* Keeps it behind everything */
  transform: translate(-50%, -50%);
  object-fit: cover;
}

   
     

  /* 1. ENABLE SMOOTH SCROLLING */
  html {
    scroll-behavior: smooth;
  }
  
  /* --- GLASS LOGIC --- */
  .glass-box {
    position: relative; display: inline-block; box-sizing: border-box; overflow: hidden; z-index: 1;
    border: var(--label-thickness) solid var(--label-border-color);
    border-color: color-mix(in srgb, var(--label-border-color), transparent calc(100% - (var(--label-border-opacity) * 100%)));
    border-radius: var(--label-rounding); backdrop-filter: blur(var(--label-blur)); -webkit-backdrop-filter: blur(var(--label-blur));
  }
  
  /* ... rest of your existing CSS ... */
   
  /* --- GLASS LOGIC --- */
  .glass-box {
    position: relative; display: inline-block; box-sizing: border-box; overflow: hidden; z-index: 1;
    border: var(--label-thickness) solid var(--label-border-color);
    border-color: color-mix(in srgb, var(--label-border-color), transparent calc(100% - (var(--label-border-opacity) * 100%)));
    border-radius: var(--label-rounding); backdrop-filter: blur(var(--label-blur)); -webkit-backdrop-filter: blur(var(--label-blur));
  }
  .glass-box::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: var(--label-bg-color); opacity: var(--label-bg-opacity); z-index: -1; }

  /* --- STRUCTURE --- */
  .page-container { max-width: 1100px; margin: 0 auto; }
  .header-line { display: flex; align-items: center; justify-content: center; position: relative; margin: 30px 0; }
  .back-pos { position: absolute; left: 0; }
  .category-title { margin: 0; font-size: var(--label-text-size); font-weight: 900; text-transform: uppercase; letter-spacing: 5px; color: var(--label-text-color); }

  .grid-frame { 
    position: relative; border-radius: var(--frame-rounding); padding: var(--frame-padding); 
    border: var(--frame-thickness) solid var(--frame-border-color); 
    border-color: color-mix(in srgb, var(--frame-border-color), transparent calc(100% - (var(--frame-border-opacity) * 100%))); 
    backdrop-filter: blur(var(--frame-blur)); -webkit-backdrop-filter: blur(var(--frame-blur)); 
    overflow: hidden; margin-bottom: 30px; display: block; clear: both;
  }
  .grid-frame::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: var(--frame-bg-color); opacity: var(--frame-bg-opacity); z-index: -1; }


/* Base button styling */
.btn {
  flex: 1; /* Makes both buttons equal width to fill the card */
  padding: 12px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: transform 0.2s ease, filter 0.2s ease; /* Fluid motion */
}

/* 1. THE STACK BELOW THE CARD */
.external-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: var(--card-to-button-gap) !important; /* Added !important to force the variable */
  width: 100%;
  clear: both; 
}

/* 2. STYLE FOR STACK BUTTONS ONLY (Prevents breaking the overlay) */
.external-stack .btn {
  width: 100% !important;    /* Ensures they fill the column */
  min-width: 0 !important;   /* Resets the 160px min-width */
  display: block !important;
  box-sizing: border-box;
  margin: 0;
}

/* 3. PLATFORM COLORS (Adjustable) */
.btn-lava { 
  background-color: var(--lava-btn-color) !important; 
  color: white !important; 
  border: none !important; 
}
.btn-boosty { 
  background-color: var(--boosty-btn-color) !important; 
  color: white !important; 
  border: none !important; 
}

/* 4. PROTECT THE OVERLAY BUTTONS */
.overlay .btn {
  width: auto;               /* Returns overlay buttons to original size */
  min-width: 160px;          /* Keeps original look */
  display: inline-block;
}

/* Platform-specific colors */
.btn-lava {
  background-color: #ff4500; /* Lava/Orange theme */
  color: white;
}

.btn-boosty {
  background-color: #ff6a00; /* Boosty/Orange-Red theme */
  color: white;
}

/* Hover effects for 2026 UX */
.btn:hover {
  transform: scale(1.03); /* Subtle growth on hover */
  filter: brightness(1.1);
}
  /* FRAME 1 LAYOUT */
  .top-layout { display: grid; grid-template-columns: 320px 1fr; gap: 30px; align-items: start; }
  @media (max-width: 850px) { .top-layout { grid-template-columns: 1fr; } }

  .product-card { position: relative; border-radius: var(--card-rounding); overflow: hidden; background: var(--card-bg); width: 100%; }
  .product-card img { width: 100%; display: block; }
  .overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: color-mix(in srgb, var(--overlay-bg-color), transparent calc(100% - (var(--overlay-opacity) * 100%))); backdrop-filter: blur(var(--overlay-blur)); display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 10px; opacity: 0; visibility: hidden; transition: 0.35s ease; }
  .product-card:hover .overlay { opacity: 1; visibility: visible; }

  .video-container { width: 100%; aspect-ratio: 16/9; background: #000; border-radius: 8px; overflow: hidden; margin-bottom: 25px; border: 1px solid rgba(255,255,255,0.1); }
  .video-container iframe { width: 100%; height: 100%; border: none; }

  /* INFO COLUMNS */
  .info-wrapper { display: flex; flex-wrap: wrap; gap: 40px; text-align: left; }
  .info-column { flex: 1; min-width: 200px; }
  .info-column h3 { color: var(--label-text-color); font-size: 22px; font-weight: 900; text-transform: uppercase; margin: 0 0 15px 0; letter-spacing: 2px; }
  .info-list { list-style: none; padding: 0; margin: 0; }
  .info-list li { font-size: 16px; font-weight: 600; line-height: 1.6; color: #ffffff; margin-bottom: 8px; display: flex; gap: 10px; }
  .info-list li::before { content: "-"; color: #ffffff; }

  /* FRAME 2 LAYOUT */
  .centered-content { display: flex; flex-direction: column; align-items: center; gap: 35px; width: 100%; }
  .button-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; width: 100%; }
  
  .btn-link { text-decoration: none !important; color: inherit !important; display: block; cursor: pointer; }
  .btn { padding: 12px 25px; border-radius: 8px; font-weight: bold; text-align: center; font-size: 13px; transition: 0.3s ease; display: block; min-width: 160px; }
  .btn-link:hover .btn { transform: translateY(-3px); filter: brightness(1.2); }
  
  .btn-1 { background: color-mix(in srgb, var(--btn1-bg), transparent calc(100% - (var(--btn1-opacity) * 100%))); color: var(--btn1-text); border: none; }
  .btn-2 { background: color-mix(in srgb, var(--btn2-bg), transparent calc(100% - (var(--btn2-opacity) * 100%))); color: var(--btn2-text); border: 2px solid var(--btn2-border); }
  .btn-3 { background: color-mix(in srgb, var(--btn3-bg), transparent calc(100% - (var(--btn3-opacity) * 100%))); color: var(--btn3-text); border: 2px solid var(--btn3-border); }

  /* GALLERY */
  .gallery-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; width: 100%; }
  .gallery-col { width: calc(33.33% - 12px); max-width: 220px; cursor: pointer; }
  .gallery-col img { width: 100%; border-radius: 8px; transition: 0.3s; display: block; }
  .gallery-col img:hover { transform: scale(1.05); opacity: 0.8; }

  /* LIGHTBOX */
  .modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.95); backdrop-filter: blur(10px); }
  .modal-content { position: relative; margin: auto; top: 50%; transform: translateY(-50%); width: 90%; max-width: 900px; text-align: center; }
  .modal-content img { width: 100%; border-radius: 10px; box-shadow: 0 0 30px rgba(0,0,0,0.5); }
  .close { position: absolute; top: -50px; right: 0; color: white; font-size: 50px; font-weight: bold; cursor: pointer; }

  .prev-btn, .next-btn { cursor: pointer; position: absolute; top: 50%; width: auto; padding: 16px; margin-top: -50px; color: white; font-weight: bold; font-size: 30px; transition: 0.3s; user-select: none; text-decoration: none; }
  .next-btn { right: -60px; } .prev-btn { left: -60px; }
  .prev-btn:hover, .next-btn:hover { color: var(--label-text-color); transform: scale(1.2); }

  .modal-dots { display: flex; justify-content: center; gap: 10px; margin-top: 20px; }
  .dot-img { width: 60px; height: 45px; object-fit: cover; border-radius: 4px; opacity: 0.5; cursor: pointer; border: 1px solid transparent; }
  .dot-img.active { opacity: 1; border-color: var(--label-text-color); }
  
  
  
  @media (max-width: 1000px) { .next-btn { right: 10px; } .prev-btn { left: 10px; } }