html {
    height: 100%;
    margin: 0;
}

:root {
      --bg: #0a0b0f;
      --panel: rgba(10, 11, 15, 0.96);
      --card: rgba(255,255,255,0.03);
      --card-hover: rgba(255,255,255,0.05);
      --border: rgba(255,255,255,0.07);
      --border-strong: rgba(255,255,255,0.12);
      --text: #f5f7fb;
      --muted: rgba(255,255,255,0.56);
      --muted-2: rgba(255,255,255,0.34);
      --hover: rgba(255,255,255,0.045);
      --shadow: 0 24px 80px rgba(0,0,0,0.48);
      --radius-xl: 24px;
      --radius-lg: 16px;
      --radius-md: 12px;
      --radius-sm: 10px;
    }

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;

    min-height: 100vh;
    display: flex;
    flex-direction: column;

    /* Background layers */
    background-image: 
        radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%),
        url('/assets/img/backgrounds/homebackground.png'),
        linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);

    background-size: 100% 100%, cover, 45px 45px, 45px 45px;
    background-position: center center;
    background-repeat: no-repeat, no-repeat, repeat, repeat;
    background-attachment: fixed;
    
    color: white;
}

.border-main-700 { 
    border-color: rgba(255, 255, 255, 0.08); 
}

.text-main-100 { 
    color: #ffffff; 
}

.text-main-300 { 
    color: rgba(255, 255, 255, 0.6); 
}

/* =========== Floating U's ===========*/

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

.float-slow {
  animation: float 6s ease-in-out infinite;
}

.float-medium {
  animation: float 4s ease-in-out infinite;
}

.float-fast {
  animation: float 3s ease-in-out infinite;
}

/*==================== Scroll Bar Blackout ====================*/

/* Standard syntax for Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: #333333 #000000; /* thumb color | track color */
}

/* Webkit browsers (Chrome, Safari, Edge) */
html::-webkit-scrollbar {
  width: 12px;               /* Width of the entire scrollbar */
}

html::-webkit-scrollbar-track {
  background: #000000;       /* Color of the tracking area */
}

html::-webkit-scrollbar-thumb {
  background-color: #333333; /* Color of the scroll thumb */
  border-radius: 10px;       /* Roundness of the thumb */
  border: 3px solid #000000; /* Creates padding around thumb */
}

html::-webkit-scrollbar-thumb:hover {
  background-color: #a0a0a0; /* Slightly lighter on hover */
}

/* =========== Products Divider ===========*/

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center; /* Essential for centering the whole group */
  width: 100%;
  max-width: 1500px; 
  margin: 0 auto 50px auto;
}

.divider-line {
  flex: 1; /* This allows lines to grow and fill empty space */
  height: 1px;
  /* Fixed your gradients to fade from the edges TOWARD the text */
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.5));
}

.divider-line:last-child {
  background: linear-gradient(to left, transparent, rgba(255, 255, 255, 0.5));
}

.divider-text {
  /* Removed width: 100% so it doesn't kick the lines out */
  display: flex;
  align-items: center;
  justify-content: center;
  
  /* Your Original Features Restored */
  padding: 0 20px;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  white-space: nowrap;
  text-transform: capitalize;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.678);
  box-sizing: border-box;
}

/* Mobile Fix: Shrink font size on small screens so lines stay visible */
@media (max-width: 600px) {
  .divider-text {
    font-size: 1rem;
    padding: 0 10px;
  }
}

.products {
    /* Keep your existing styles */
    position: relative; 
    z-index: 10;
    padding: 200px 0;
    background-color: #0a0a0a34;
    display: flex;
    flex-direction: column;
    color: white;

    /* REMOVE margin-bottom: -200px; */
    margin-top: -200px; 
    margin-bottom: 0; /* Changed to 0 so it doesn't overlap following content */

    /* CHANGE overflow to visible so the "Browse All" button shows up */
    overflow: visible; 

    /* Keep your mask, but ensure it doesn't cut off the button */
    --fade-size: 10%;
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0,0,0,0.3) calc(var(--fade-size) * 0.4),
        black var(--fade-size),
        black calc(100% - var(--fade-size)),
        rgba(0,0,0,0.3) calc(100% - (var(--fade-size) * 0.4)),
        transparent 100%
    );
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0,0,0,0.3) calc(var(--fade-size) * 0.4),
        black var(--fade-size),
        black calc(100% - var(--fade-size)),
        rgba(0,0,0,0.3) calc(100% - (var(--fade-size) * 0.4)),
        transparent 100%
    );
}

/* =========== Products Cards ===========*/

/* Make sure your wrapper is positioned relative */
.scroll-wrapper {
  position: relative;
  overflow: hidden;
}

/* Scroll Track */
.scroll-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
}

/* Card fade edges */
.scroll-wrapper::before,
.scroll-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 80px; /* fade width */
  z-index: 10;
  pointer-events: none;
}

.scroll-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #0c0c0e 0%, transparent 100%);
}

.scroll-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #0c0c0e 0%, transparent 100%);
}

.scroll-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
}

.card {
  min-width: 300px;
  flex-shrink: 0;
  background: #111113;
  padding: 20px;
  border-radius: 12px;
  color: white;
}

/* =========== View All Packages Button ===========*/

.view-all-products {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px; 
    padding: 0 12px; 
    font-size: 10px;
    background-color: transparent;
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.2s ease-in-out;
}

.icon-chevron {
    width: 12px;
    height: 12px;
    margin-left: 4px;
}



@media (min-width: 640px) {
    .view-all-products {
        height: 36px; 
        padding: 0 16px; 
        font-size: 12px;
        border-radius: 8px;
    }
}

/*==================== Scroll Wrapper for Recent Purchases ====================*/

.scroll-wrapper2 {
  position: relative;
  overflow: hidden;
  
}

/* Scroll Track */
.scroll-track2 {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
}

/* Card fade edges */
.scroll-wrapper2::before,
.scroll-wrapper2::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 80px; /* fade width */
  z-index: 10;
  pointer-events: none;
}

.scroll-wrapper2::before {
  left: 0;
  background: linear-gradient(to right, #0c0c0e 0%, transparent 100%);
}

.scroll-wrapper2::after {
  right: 0;
  background: linear-gradient(to left, #0c0c0e 0%, transparent 100%);
}

.scroll-track2 {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
}

/*==================== Review Section ====================*/

.Reviews {
    position: relative;
    z-index: 10;
    padding: 160px 0;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    color: white;

    /* REMOVE the negative pull */
    margin-top: -200px;

    /* IMPORTANT: clip the mask properly */
    overflow: hidden;

    --fade-size: 10%;

    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black var(--fade-size),
        black calc(100% - var(--fade-size)),
        transparent 100%
    );

    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black var(--fade-size),
        black calc(100% - var(--fade-size)),
        transparent 100%
    );
}

.Reviews-Title {
    text-align: center; 
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.Reviews-Title span {
    color: #A855F7; 
    text-shadow: 0 0 25px #A855F7;
}

.Reviews-Badge {
    display: flex; 
    justify-content: center; 
    align-items: center;
    gap: 12px;
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    width: fit-content; 
    margin: 0 auto 30px auto; 
    backdrop-filter: blur(10px);
    
}

.Badge-Label, .Badge-Count {
    color: #888;
    font-size: 0.9rem;
}

.Badge-Score {
    font-weight: 700;
    font-size: 1.2rem;
}

.Badge-Stars {
    color: #A855F7;
    font-size: 1.1rem;
    filter: drop-shadow(0 0 5px #A855F7);
}

.Reviews-Subtext {
    text-align: center; 
    color: #aaa;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.Reviews-Subtext strong {
    color: white;
}

.purchase-card-small {
  background: rgba(0, 0, 0, 0.041);
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 16px;
  width: 300px;
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 0 15px 1px rgba(255, 255, 255, 0.068);

  display: flex;
  flex-direction: column;
}

.header-small {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.avatar-small {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  object-fit: cover;
}

.name-small {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0;
}

.date-small {
  color: #555;
  font-size: 0.8rem;
  margin: 0;
}

.stars-small {
  color: #A855F7;
  font-size: 1rem;
  margin-bottom: 10px;
  text-shadow: 0 0 8px rgba(168, 85, 247, 0.4);
}

.text-small {
  color: #888;
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0 0 12px 0;
}

.product-tag-small {
  background: #1a1a1a;
  border-radius: 8px;
  padding: 10px 12px;     
  display: flex;          
  align-items: center;
  gap: 8px;
  color: #aaa;
  font-size: 0.8rem;
  font-weight: 600;
  width: 100%;            
  box-sizing: border-box; 
  margin-top: auto;
}

/*==================== Why Choose Us ====================*/

.ChooseUs {
    position: relative; 
    z-index: 10;
    padding: 200px 0;
    background-color: transparent; 
    display: flex;
    flex-direction: column;
    color: white;
    margin-top: -100px; 
    margin-bottom: 0px; 
    overflow: visible;  
    --fade-size: 15%; 
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black var(--fade-size),
        black calc(100% - var(--fade-size)),
        transparent 100%
    );
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black var(--fade-size),
        black calc(70% - var(--fade-size)),
        transparent 100%
    );
}

.why-section {
    background: #080808;
    padding: 150px 0;
    display: flex;
    justify-content: center;
}

.why-stage {
    position: relative;
    width: 100%;
    max-width: 1100px;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20;

}

.why-card {
    /* Keep all your existing styles */
    position: absolute;
    width: 320px;
    height: 240px;
    padding: 26px;
    box-sizing: border-box;
    z-index: 20;
    background: rgba(20, 20, 22, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    color: #fff;
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.04);
    opacity: 0;
    transform: translateY(120px) scale(.95);
    transform-origin: bottom center;
    transition: 
        transform .4s cubic-bezier(.22,1,.36,1),
        border-color .3s ease,
        box-shadow .3s ease,
        background .3s ease;

    /* ADD THESE THREE LINES */
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Keeps button from stretching full width */
}

/* Scroll trigger */
.why-stage.active .why-card {
    animation:
        whyFan 1.1s cubic-bezier(.22,1,.36,1) forwards,
        whyRow 1s cubic-bezier(.65,0,.35,1) 1.6s forwards;
}

/* Icon */
.why-header {
  display: flex;
  align-items: center; /* Vertically centers icon with text */
  gap: 12px;
  margin-bottom: 16px; 
}

.why-header i {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    font-size: 1.2rem;

    border-radius: 12px;
    background: rgba(78, 77, 77, 0.377);
 

    color: #A855F7;

    

    transition: all .3s ease;
}


/* Icon */
.why-card i {
    font-size: 1.8rem;
    flex-shrink: 0;
}

/* Title */
.why-card h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Description */
.why-card p {
    color: #9a9a9a;
    font-size: .9rem;
    line-height: 1.6;
}

/* Accent */
.why-red i,
.why-red h3 {
    color: #A855F7;
}

/* -------- Fan Animation -------- */
@keyframes whyFan {
    0% {
        transform: rotate(0deg) translateY(120px) scale(.95);
        opacity: 0;
    }
    100% {
        transform: rotate(calc((var(--index) - 2.5) * 14deg));
        opacity: 1;
    }
}

/* -------- Settle Into Row -------- */
@keyframes whyRow {
    0% {
        transform: rotate(calc((var(--index) - 2.5) * 14deg));
    }
    100% {
        transform:
            rotate(0deg)
            translateX(calc((var(--index) - 2.5) * 325px));
         
    }
}

/* Slight hover lift effect */
.why-card:hover {
    /* "Slow glow" - very small, thin border highlight */
    border-color: rgba(255, 255, 255, 0.144);
    
    /* Ensure features like scale/shadow remain removed as requested */
    transform: scale(1);
    box-shadow: none;
}

.why-card-button {
  background: #1a1a1a;
  border-radius: 8px;
  border: 0.2px solid #a955f700;
  padding: 3px 12px;     
  display: inline-flex;          
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #aaa;
  font-size: 0.8rem;
  font-weight: 600;
  width: fit-content; /* Changed from auto for better alignment */          
  box-sizing: border-box; 
  
  /* The Magic Line */
  margin-top: 10px; 
}

.why-card-button i,
.why-card-button svg {
    width: 10px;
    height: 10px;
    flex-shrink: 0; /* Prevents the icon from "squishing" if text is long */
    stroke: #A855F7;
    display: block; /* Inside a flex container, block is cleaner for SVGs */
}

.why-card-button svg {
    position: relative;
    top: 1px; /* Manually nudge if the font baseline is weird */
}

.why-card-button:hover {
  background:rgba(20, 20, 22, 0.75);
  color: #A855F7;
  box-shadow: #aaa;
}

/*==================== Scroll Wrapper for Recent Customers ====================*/

.scroll-wrapper3 {
  position: relative;
  overflow: hidden;
}

/* Scroll Track */
.scroll-track3 {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
}

/* Card fade edges */
.scroll-wrapper3::before,
.scroll-wrapper3::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 80px; /* fade width */
  z-index: 10;
  pointer-events: none;
}

.scroll-wrapper3::before {
  left: 0;
  background: linear-gradient(to right, #0c0c0e 0%, transparent 100%);
}

.scroll-wrapper3::after {
  right: 0;
  background: linear-gradient(to left, #0c0c0e 0%, transparent 100%);
}

.scroll-track3 {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
}

/*==================== Recent Customers ====================*/

.recentcustomersfade {
    position: relative; 
    z-index: 10;
    padding: 160px 0;
    background-color: transparent; 
    display: flex;
    flex-direction: column;
    color: white;
    margin-top: -300px; 
    margin-bottom: 0px; 
    overflow: visible;  
    --fade-size: 15%; 

    /* Fade only at TOP */
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black var(--fade-size),
        black 100%
    );

    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black var(--fade-size),
        black 100%
    );
}

.utc-card {
    display: flex;
    align-items: center;
    background: rgba(20, 20, 22, 0.75); 
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 19px;
    padding: 12px 16px;
    
    /* FIX: Set a consistent width for the scroll track */
    width: 320px; 
    flex-shrink: 0; /* Prevents cards from squishing in the flex track */
    
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    backdrop-filter: blur(10px); /* Optional: Adds that Stripe-grade glass look */
}

.utc-pfp-container {
    width: 44px;
    height: 44px;
    margin-right: 12px;
    flex-shrink: 0;
}

.utc-pfp-image {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
    display: block;
    
}

.utc-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    /* FIX: Ensures text doesn't push the price out of the card */
    overflow: hidden; 
    min-width: 0; 
}

.utc-name {
    color: #ffffff;
    font-size: 16px; /* Slightly adjusted for better balance */
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; /* Adds '...' for very long usernames */
}

.utc-date {
    color: #666666;
    font-size: 13px;
    margin-top: 2px;
}

/* Styles for your specific price lines */
.utc-price-container {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    /* FIX: Use auto margin to push it to the right instead of a fixed 50px */
    margin-left: auto; 
    padding-left: 15px;
    white-space: nowrap;
    display: flex;
    align-items: baseline;
    flex-shrink: 0;
}

.curr-code {
    font-size: 0.875rem; /* text-sm */
    font-weight: 500;    /* font-medium */
    opacity: 0.7;       /* opacity-70 */
    margin-left: 4px;   /* ml-1 */
}

/*==================== News Letter Signup ====================*/


/* Container */
.newsletter-banner-unique {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    background-color: #0c0c0e;
}

/* Main Card */
.banner-card-unique {
    width: 100%;
    max-width: 1450px;   /* Same wide look */
    height: 340px;       /* Matches screenshot proportions */
    background: linear-gradient(
        90deg,
        #0e0e11 0%,
        #121217 50%,
        #1a1d3a 100%
    );
    border-radius: 30px;
    position: relative;
    overflow: hidden;
   
}

.banner-inner-unique {
    display: flex;
    height: 100%;
}
/* Text Content */
.content-side-unique {
    flex: 1.1;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.title-unique {
    color: #ffffff;
    font-size: 34px;
    font-weight: 800;
}


.title-unique span {
    color: #A855F7;
    text-shadow: 0 0 15px rgba(88, 101, 242, 0.5);
}

.desc-unique {
    color: #999999;
    font-size: 16px;
    max-width: 500px;
    margin-bottom: 30px;
}

/* Form Styling */
.newsletter-form-unique .input-group-unique {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    max-width: 480px;
    transition: all 0.3s ease;
}

.newsletter-form-unique .input-group-unique:focus-within {

    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px rgba(88, 101, 242, 0.2);
}

.input-group-unique input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 20px;
    color: #ffffff;
    font-size: 16px;
    outline: none;
}

/* The "Join Now" Button */
.glow-button-unique {
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 0 30px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glow-button-unique:hover {
    background: #A855F7;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.disclaimer-unique {
    margin-top: 25px;
    font-size: 13px;
    color: #555555;
}

/* Background Image Side */
.visual-side-unique {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 55%;

    background-image: url('/assets/img/banners/mail-banner.png');
    background-position: right center;
    background-size: cover;   /* IMPORTANT */
    background-repeat: no-repeat;

    /* Smooth fade */
    mask-image: linear-gradient(
        to left,
        rgba(0,0,0,1) 55%,
        rgba(0,0,0,0.6) 75%,
        rgba(0,0,0,0) 100%
    );

    -webkit-mask-image: linear-gradient(
        to left,
        rgba(0,0,0,1) 55%,
        rgba(0,0,0,0.6) 75%,
        rgba(0,0,0,0) 100%
    );

    pointer-events: none;
}

/* Responsive Fixes */
@media (max-width: 850px) {
    .banner-inner-unique { flex-direction: column; }
    .visual-side-unique {
        position: relative;
        width: 100%;
        height: 250px;
        mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
        -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    }
    .content-side-unique {
        padding: 40px 30px;
        text-align: center;
        align-items: center;
    }
    .input-group-unique {
        width: 100%;
        box-sizing: border-box;
        
    }
}

/*==================== Login Popout ====================*/

/* Overlay for the login modal */
.login-overlay {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

/* Card container */
.login-card {
    background: #151515;
    width: 350px;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Close button */
.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #666;
    font-size: 24px;
    cursor: pointer;
}

/* Logo area */
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
}

.brand-icon {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.1));
}

/* Divider line */
.divider {
    border: 0;
    border-top: 1px solid #222;
    margin: 30px 0;
}

/* Headings */
h2 {
    letter-spacing: 2px;
    font-weight: 800;
    margin-bottom: 10px;
}

.subtitle {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 30px;
}

/* Login buttons */
.login-button-discord,
.login-button-fivem {
    display: flex;
    align-items: center;       /* vertical align icon with text */
    justify-content: center;
    gap: 8px;                  /* space between icon and text */
    width: 100%;               /* full width of card */
    padding: 12px 16px;
    font-weight: bold;
    font-size: 15px;
    border-radius: 8px;
    border: 1px solid #333;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* Discord button theme */
.btn-icon,
.login-button-discord i {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;  /* important for text alignment */
    font-size: 20px;         /* for Font Awesome icon */
}

/* Discord button colors */
.login-button-discord {
    color: #8e9aff;
    background: #1a1a1a;
}
.login-button-discord:hover {
    background: #222;
}

/* FiveM button colors */
.login-button-fivem {
    color: #ff862f;
    background: #1a1a1a;
}
.login-button-fivem:hover {
    background: #222;
}

/* Button group always stacked vertically */
.login-button-group {
    display: flex;
    flex-direction: column; /* stacked under each other */
    align-items: center;
    gap: 12px;
    margin: 20px 0;
}


/* Footer & security text */
.secure-text {
    font-size: 12px;
    color: #888;
    margin-top: 25px;
}

.support-footer {
    margin-top: 10px;
    font-size: 14px;
    color: #aaa;
}

.support-footer a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}


/* ====================== MOBILE MENU ====================== */

    .us-menu,
    .us-menu * {
      box-sizing: border-box;
    }

    .us-menu {
      font-family: "Inter", sans-serif;
      position: relative;
      z-index: 9999;
    }

    /* trigger button */
    .us-menu .menu-trigger {
      width: 46px;
      height: 46px;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 12px;
      background: rgba(20, 15, 15, 0.94);
      color: white;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 12px 30px rgba(0,0,0,0.25);
      transition: 0.2s ease;
    }

    .us-menu .menu-trigger:hover {
      background: rgba(22,24,30,0.98);
      transform: translateY(-1px);
    }

    .us-menu .menu-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.22);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.25s ease, visibility 0.25s ease;
      z-index: 40;
    }

    .us-menu .menu-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .us-menu .drawer {
      position: fixed;
      top: 0;
      right: 0;
      width: 406px;
      max-width: 94vw;
      height: 100vh;
      z-index: 50;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0)),
        #0c0c0e;;
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-left: 1px solid rgba(255,255,255,0.07);
      box-shadow: 0 24px 80px rgba(0,0,0,0.48);
      color: #f5f7fb;
      display: flex;
      flex-direction: column;
      transform: translateX(100%);
      transition: transform 0.32s cubic-bezier(.22,.8,.18,1);
    }

    .us-menu .drawer.active {
      transform: translateX(0);
    }

    .us-menu .drawer-inner {
      padding: 14px;
      overflow-y: auto;
      height: 100%;
    }

    .us-menu .drawer-inner::-webkit-scrollbar {
      width: 8px;
    }

    .us-menu .drawer-inner::-webkit-scrollbar-thumb {
      background: rgba(255,255,255,0.08);
      border-radius: 999px;
    }

    .us-menu .topbar {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      padding-bottom: 14px;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .us-menu .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      min-width: 0;
    }

    .us-menu .brand img {
      height: 50px;
      width: auto;
      display: block;
      object-fit: contain;
    }

    .us-menu .close-btn {
  /* Scaled up dimensions */
  width: 40px;
  height: 40px;
  
  /* Centering logic */
  display: flex;
  align-items: center;
  justify-content: center;
  
  /* Refined Borders & Background */
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.45);
  
  /* Proportional radius for the larger size */
  border-radius: 10px; 
  
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  outline: none;
}

.us-menu .close-btn:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  /* Subtle lift effect */
  transform: translateY(-1px);
}

.us-menu .close-btn:active {
  transform: translateY(0);
  background: rgba(255, 255, 255, 0.1);
}

/* Scaling the internal icon/text */
.us-menu .close-btn svg,
.us-menu .close-btn i {
  width: 18px;
  height: 18px;
}

/* If using a text "X" */
.us-menu .close-btn span {
  font-size: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
}
    .us-menu .group {
      padding: 14px 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .us-menu .group:last-child {
      border-bottom: none;
    }

    .us-menu .nav-list {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .us-menu .nav-item,
    .us-menu .nav-toggle {
      width: 100%;
      min-height: 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 0 8px;
      border: none;
      background: transparent;
      color: #f5f7fb;
      border-radius: 12px;
      text-decoration: none;
      cursor: pointer;
      transition: background 0.18s ease, color 0.18s ease;
      font-size: 12px;
      font-weight: 600;
    }

    .us-menu .nav-item:hover,
    .us-menu .nav-toggle:hover {
      background: rgba(255,255,255,0.045);
    }

    .us-menu .nav-left {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .us-menu .nav-left i:first-child {
      width: 14px;
      font-size: 15px;
      color: rgba(255,255,255,0.88);
    }

    .us-menu .nav-toggle i:last-child {
      font-size: 15px;
      color: rgba(255,255,255,0.56);
      transition: transform 0.2s ease;
    }

    .us-menu .nav-toggle.open i:last-child {
      transform: rotate(180deg);
    }

    .us-menu .section-title {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.34);
      margin-bottom: 12px;
    }

    .us-menu .social-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }

    .us-menu .social-btn {
      min-height: 54px;
      border-radius: 12px;
      background: rgba(255,255,255,0.015);
      border: 1px solid rgba(255,255,255,0.07);
      color: white;
      text-decoration: none;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 6px;
      transition: 0.2s ease;
    }

    .us-menu .social-btn:hover {
      background: rgba(255,255,255,0.04);
      border-color: rgba(255,255,255,0.12);
      transform: translateY(-1px);
    }

    .us-menu .social-btn i {
      font-size: 18px;
    }

    .us-menu .social-btn span {
      font-size: 11px;
      font-weight: 700;
    }

    .us-menu .currency-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 8px;
    }

    .us-menu .currency-btn {
      height: 30px;
      border-radius: 9px;
      border: 1px solid rgba(255,255,255,0.07);
      background: rgba(255,255,255,0.03);
      color: rgba(255,255,255,0.28);
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      transition: 0.18s ease;
    }

    .us-menu .currency-btn:hover {
      background: rgba(255,255,255,0.055);
      color: rgba(255,255,255,0.6);
    }

    .us-menu .currency-btn.active {
      background: #f4f5f7;
      color: #111318;
      border-color: rgba(255,255,255,0.2);
    }

    .us-menu .basket-btn {
      width: 100%;
      height: 36px;
      border-radius: 11px;
      border: 1px solid rgba(255,255,255,0.07);
      background: rgba(255,255,255,0.018);
      color: white;
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 0 12px;
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
      transition: 0.18s ease;
    }

    .us-menu .basket-btn:hover {
      background: rgba(255,255,255,0.045);
      border-color: rgba(255,255,255,0.12);
    }

    .us-menu .login-btn {
      width: 100%;
      height: 42px;
      border: 1px solid rgba(255,255,255,0.09);
      border-radius: 12px;
      background: rgba(255,255,255,0.08);
      color: white;
      font-size: 15px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      cursor: pointer;
      transition: 0.2s ease;
    }

    .us-menu .login-btn:hover {
      background: rgba(255,255,255,0.12);
      border-color: rgba(255,255,255,0.14);
    }

    .us-menu .submenu {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 0.22s ease;
      padding-left: 24px;
    }

    .us-menu .submenu-inner {
      overflow: hidden;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .us-menu .submenu.open {
      grid-template-rows: 1fr;
      padding-top: 6px;
    }

    .us-menu .submenu a {
      color: rgba(255,255,255,0.56);
      text-decoration: none;
      font-size: 12px;
      font-weight: 500;
      padding: 8px 10px;
      border-radius: 10px;
      transition: 0.18s ease;
    }

    .us-menu .submenu a:hover {
      color: white;
      background: rgba(255,255,255,0.04);
    }

    .us-menu.menu-open {
      overflow: visible;
    }

    @media (max-width: 480px) {
      .us-menu .drawer {
        width: 100%;
        max-width: 100%;
      }
    }

    .login-btn.is-authenticated {
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    margin-top: 10px;
}

.user-profile-card {
    /* Optional: fine-tune the background to match your screenshot's dark theme */
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.user-profile-card:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* Ensure the sidebar version doesn't overlap or shrink */
.group .open-login-btn.is-authenticated {
    display: block !important;
    height: auto !important;
    margin-top: 20px !important; /* Forces it away from the Basket button */
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
}

/* Force the flex container in the sidebar to allow growth */
.sidebar-content-wrapper { /* Replace with your actual menu container class if different */
    display: flex;
    flex-direction: column;
    gap: 10px;
}



/* =========== Portrait Animations =========== */

@media only screen and (min-width: 1000px) and (orientation: portrait) {
    .nav-hot-links {
    display:flex !important;

}

.max-w-7xl {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Portrait Why card animation */

/* Assign Row and Column values to each card manually */
.why-card:nth-child(1) { --row: 0; --col: -0.5; }
.why-card:nth-child(2) { --row: 0; --col: 0.5; }
.why-card:nth-child(3) { --row: 1; --col: -0.5; }
.why-card:nth-child(4) { --row: 1; --col: 0.5; }

/* -------- Fan Animation (Adjusted for 4 cards) -------- */
@keyframes whyFan {
    0% {
        transform: rotate(0deg) translateY(120px) scale(.95);
        opacity: 0;
    }
    100% {
        transform: rotate(calc((var(--index) - 1.5) * 14deg));
        opacity: 1;
    }
}

/* -------- Settle Into Row (Clean Version) -------- */
@keyframes whyRow {
    0% {
        transform: rotate(calc((var(--index) - 1.5) * 14deg));
    }
    100% {
        transform:
            rotate(0deg)
            /* No modulo or floor here - just simple multiplication */
            translateX(calc(var(--col) * 340px))
            translateY(calc(var(--row) * 260px));
    }
}

.why-stage {
    position: relative;
    width: 100%;
    max-width: 1100px;
    height: 950px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -200px;

}

}

/* =========== Landscape Animations =========== */

@media only screen and (max-width: 1200px) and (orientation: landscape) {
    .nav-hot-links {
    display:flex !important;

}

.max-w-7xl {
  margin-left: 0 !important;
  margin-right: 0 !important;
}



/* Portrait Why card animation */

/* Assign Row and Column values to each card manually */
.why-card:nth-child(1) { --row: 0; --col: -0.5; }
.why-card:nth-child(2) { --row: 0; --col: 0.5; }
.why-card:nth-child(3) { --row: 1; --col: -0.5; }
.why-card:nth-child(4) { --row: 1; --col: 0.5; }

/* -------- Fan Animation (Adjusted for 4 cards) -------- */
@keyframes whyFan {
    0% {
        transform: rotate(0deg) translateY(120px) scale(.95);
        opacity: 0;
    }
    100% {
        transform: rotate(calc((var(--index) - 1.5) * 14deg));
        opacity: 1;
    }
}

/* -------- Settle Into Row (Clean Version) -------- */
@keyframes whyRow {
    0% {
        transform: rotate(calc((var(--index) - 1.5) * 14deg));
    }
    100% {
        transform:
            rotate(0deg)
            /* No modulo or floor here - just simple multiplication */
            translateX(calc(var(--col) * 340px))
            translateY(calc(var(--row) * 260px));
    }
}

.why-stage {
    position: relative;
    width: 100%;
    max-width: 1100px;
    height: 840px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -200px;
    z-index: 20;

}

}

