:root {
    --obsidian: #050505;
    --gold: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    --border-gold: rgba(184, 134, 11, 0.3);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* 1. THE WRAPPER (Dono ko ek line mein force karega) */
.nav-actions {
    display: flex !important; /* Force flexbox */
    flex-direction: row !important; /* Ek seedhi line mein */
    align-items: center; /* Upar-niche se ekdum center aligned */
    gap: 30px; /* Icon aur MENU ke beech ki mehengi spacing */
}

/* 2. THE ICON BUTTON */
.login-icon-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
    opacity: 0.8;
    text-decoration: none; /* Faltu underline hatane ke liye */
}

/* 3. HOVER GAMEPLAY */
.login-icon-btn:hover {
    opacity: 1;
    transform: translateY(-2px); /* Halka sa upar float karega */
}

.login-icon-btn svg {
    transition: all 0.3s ease;
}

.login-icon-btn:hover svg {
    stroke: #fdf2d0; /* Hover pe off-white/bright gold */
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4)); /* Premium glow */
}

.login-icon-btn.is-authenticated {
    width: 36px;
    height: 36px;
}

.account-initials-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.62);
    background: rgba(212, 175, 55, 0.08);
    color: #fdf2d0;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.login-icon-btn:hover .account-initials-circle {
    border-color: rgba(240, 230, 210, 0.8);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.18);
}

/* 2. DOT GRID PATTERN: Jo background mein subtle dots dikh rahe hain */
body {
    margin: 0;
    padding: 0;
    background-color: #050505; /* Base Obsidian */
    min-height: 100vh;
    overflow-x: hidden;
    
    /* 1. MESH GRADIENT: Opacity badha di hai taaki 'Amethyst' aur 'Blue' dikhein */
    background-image: 
        /* Top-Left: Deep Amethyst Purple Glow */
        radial-gradient(circle at 15% 15%, rgba(120, 0, 255, 0.18) 0%, transparent 45%),
        /* Top-Right: Electric Blue Glow */
        radial-gradient(circle at 85% 15%, rgba(0, 80, 255, 0.15) 0%, transparent 45%),
        /* Center-Bottom: Subtle Gold Aura (Button ke niche ke liye) */
        radial-gradient(circle at 50% 85%, rgba(184, 134, 11, 0.06) 0%, transparent 40%);
    
    background-attachment: fixed; /* Scroll karne par bhi glow wahi rahega */
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

/* 2. DOT GRID: Reference image wala professional touch */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    /* Bahut halka dot grid jo black hole ko depth dega */
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 35px 35px;
    z-index: -1;
    pointer-events: none;
}

/* 1. Menu Button Layout */
.menu-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 10px;
}

/* 2. Text Style (Optional: Agar MENU likha rakhna hai icon ke saath) */
.menu-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #fdf2d0;
    transition: opacity 0.3s ease;
}

/* 3. The Hamburger Container */
.luxury-hamburger {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Lines ko right-align karega */
    gap: 6px; /* Dono lines ke beech ka gap */
}

/* 4. The Lines (Sleek aur Sharp) */
.luxury-hamburger .line {
    height: 1.5px; /* Bohot patli aur refined line */
    background-color: #d4af37; /* Gold color */
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Upar wali line badi */
.luxury-hamburger .top-line {
    width: 32px;
}

/* Niche wali line aadhi */
.luxury-hamburger .bottom-line {
    width: 18px; 
}

/* 5. THE GAMEPLAY (Hover Effect - Upgraded to Luxury Beige) */
.menu-btn:hover .bottom-line {
    width: 32px; /* Line barabar ho jayegi */
    background-color: #f0e6d2; /* Soft Silk Beige / Off-White */
    box-shadow: 0 0 8px rgba(240, 230, 210, 0.4); /* Halka sa warm glow */
}

.menu-btn:hover .top-line {
    background-color: #f0e6d2; /* Soft Silk Beige */
    box-shadow: 0 0 8px rgba(240, 230, 210, 0.4);
}

.menu-btn:hover .menu-text {
    opacity: 0.8; 
    color: #f0e6d2; /* Text bhi usi beige tone mein blend ho jayega */
}

/* 3. CENTERED HERO SECTION (Alignment Fix) */
.hero-module {
    display: flex;
    flex-direction: column;
    align-items: center; /* Horizontally Center */
    justify-content: center;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 60px;
}

/* 4. REFINED GLASS BOX (Reference Style Glassmorphism) */
.glass-card, 
.drop-display, 
.tech-specs, 
.info-item {
    background: rgba(255, 255, 255, 0.015); /* Minimal transparency */
    backdrop-filter: blur(30px) saturate(150%);
    -webkit-backdrop-filter: blur(30px) saturate(150%);
    
    /* High-contrast thin border like SaaS UI */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.15); /* Top shine */
    
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    border-radius: 4px;
}



.btn-vault {
    background: linear-gradient(90deg, #efd3d7); /* Pink-Purple Gradient like reference */
    border: none;
    color: white;
    border-radius: 50px; /* Fully rounded button */
    padding: 15px 40px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(128, 0, 255, 0.3);
}
/* Logo Container Alignment */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px; /* Logo icon aur text ke beech ka premium gap */
}

/* The Gold V Icon / Artifact */
.v-icon, 
.brand-logo img {
    height: 30px; /* IDEAL SIZE: Desktop ke liye perfect balance */
    width: auto;  /* Aspect ratio maintain karne ke liye */
    
    /* Luxury Touch: Subtle gold glow taaki obsidian background par uth kar dikhe */
    filter: drop-shadow(0 0 8px rgba(184, 134, 11, 0.4));
    
    transition: transform 0.3s ease;
}

/* Hover Effect: Premium brands mein subtle interactivity hoti hai */
.v-icon:hover {
    transform: scale(1.05);
}

/* Brand Name Text (V U R K I S H É) */
.brand-logo span {
    font-weight: 800 !important;
    letter-spacing: 3px !important;
    text-transform: uppercase;
    
    /* THE MAGICAL MIX: Purple blends down into Gold */
    background: linear-gradient(
        135deg, 
        /* rgba(106, 17, 203, 0.7) 0%,  */
        rgba(216, 170, 180, 0.8) 50%, /* NEW Complementing Frosted Rose-Gold Middle */
        rgba(212, 175, 55, 1) 100%     /* Fade into Signature VURKISHÉ Gold */
    ) !important;
    text-shadow: 0 0 3px rgba(106, 17, 203, 0.2);
    /* Text taking the gradient */
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    
    /* Minimal Glow for depth */
    filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.25)) !important;
    
    display: inline-block;
}

/* Mobile Responsive Sizing */
@media (max-width: 768px) {
    .v-icon, 
    .brand-logo img {
        height: 24px; /* Mobile par thoda refined aur chota size */
    }
    
    .brand-logo span {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }
}

/* --- 1. GLOBAL BOX STYLING (The Luxury Foundation) --- */
.glass-card, 
.drop-display, 
.info-grid div, 
.tech-specs, 
.philosophy-statement, 
.signature-box {
    /* 1a. DEEP OBSIDIAN BACKGROUND (Soft Gradient) */
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
    
    /* 1b. GLASSMORPHISM: Piche ke texture ko blur karega */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    
    /* 1c. COPPER/GOLD TRIM BORDER (Fine-tune depth) */
    border: 1px solid rgba(184, 134, 11, 0.25); 
    
    /* 1d. PREMIUM SOFT SHADOW (Elevates the box) */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), inset 0 0 15px rgba(184, 134, 11, 0.05);
    
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease; /* Hover transitions ke liye */
}

/* --- 2. GILDED SHINE (Corner Highlights) --- */
.glass-card::before, 
.drop-display::before, 
.info-grid div::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Luxury Gold Corner Shine */
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}

/* 1. THE BIG ENCLOSED BOX (Upar aur Niche Golden Line ke sath) */
.drops-showcase {
    width: 92%; /* Screen ke thoda andar rahega */
    max-width: 1500px;
    /* margin: 80px auto; */
    margin: 100px auto 40px auto; /* Top 100px (niche shift), Bottom 40px */
    padding: 40px 0 10px 0; /* Andar ki bottom space 10px kardi */
    background: rgba(10, 12, 25, 0.4); /* Ek bada dark vault */
    border-top: 1px solid rgba(212, 175, 55, 0.8); /* Golden Line Upar */
    border-bottom: 1px solid rgba(212, 175, 55, 0.8); /* Golden Line Niche */
    border-left: none;
    border-right: none;
    /* padding: 40px 0; Andar ki space */
    position: relative;
    overflow: hidden;
}

/* 2. INDIVIDUAL ITEMS SE DABBA HATA DIYA */
.drop-item {
    flex: 0 0 auto !important;
    width: 500px; 
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px;
    
    /* YAHAN SE DABBA GAYAB */
    background: transparent !important; 
    border: none !important; 
    box-shadow: none !important; 
    
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 8px;
}

/* 3. THE ORIGINAL HOVER VIBE (Pop up + Dark Glow) */
.drop-item:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(5, 5, 5, 0.7) !important; /* Hover karne pe dark solid vibe */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 15px rgba(212, 175, 55, 0.05) !important;
}

/* --- 3. INTERACTIVE GLOW (Hover Effects) --- */
.drop-display:hover, 
.info-grid div:hover, 
.btn-acquire:hover {
    transform: translateY(-3px); /* Subtle elevation */
    border-color: rgba(184, 134, 11, 0.5); /* Border brightens */
    /* External Gold Glow */
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.15), inset 0 0 20px rgba(184, 134, 11, 0.08);
}

/* --- 4. TEXT COLOR FINE-TUNE (Contrast with Gold) --- */
.drop-text h5, 
.tech-specs h4, 
.philosophy-statement p, 
.site-footer h2 {
    color: #fcf6ba; /* Soft Gilded text */
    letter-spacing: 2px;
}

.artifact-meta p, 
.info-item p, 
.shipping-disclaimer {
    color: #b0b0b0; /* Light Gray for contrast */
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 8%;
    box-sizing: border-box;
    z-index: 9999;

    /* 1. COMPLEMENTARY TINT: Black nahi, balki Deep Midnight Blue-Purple tint */
    /* Ye body ke mesh gradients ko 'Anchor' karega */
    background: rgba(10, 12, 25, 0.45); 
    
    /* 2. ENHANCED GLASS: Piche ka gold aur purple blur hokar 'Glow' karega */
    backdrop-filter: blur(20px) saturate(180%) brightness(1.1);
    -webkit-backdrop-filter: blur(20px) saturate(180%) brightness(1.1);

    /* 3. GOLDEN THREAD BORDER: Thin metallic line jo header ko define karegi */
    border-bottom: 1px solid rgba(184, 134, 11, 0.2); 
    
    /* 4. SOFT INNER GLOW: Taaki header floating lage */
    box-shadow: inset 0 -1px 10px rgba(120, 0, 255, 0.05), 
                0 10px 30px rgba(0, 0, 0, 0.4) #c9ada7;
}

/* 6. IMPORTANT: Body/Main Wrapper Adjust */
/* Header 'fixed' hone ki wajah se content upar chadh jayega, 
   isliye main-wrapper mein padding-top add karna zaroori hai */
.main-wrapper, .hero-module {
    padding-top: 120px; /* Header ki height ke hisaab se space dena */
}

/* 1. Container ko clean rakho */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Isko pakka delete ya hide kar dena, yehi dhabba bana raha hai */
.brand-logo::before {
    display: none; 
}

/* 2. THE REFINED AURA (Sirf text ke aas-paas soft chamak) */
.brand-logo span {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #fdf2d0; 
    
    /* MULTI-LAYER SHADOW: Ekdum premium aur soft glow */
    text-shadow: 
        0 0 8px rgba(212, 175, 55, 0.4),   /* Inner soft shine */
        0 0 20px rgba(184, 134, 11, 0.15), /* Outer subtle aura */
        0 2px 4px rgba(0, 0, 0, 0.8);      /* Base shadow depth ke liye */
}
/* =========================================
   THE BLUNDER FIX (PAGE SCROLL & CLIP BUG)
   ========================================= */

/* 1. THE KILL SWITCH: Isse pura web page left/right move hona band ho jayega */
body, html {
    overflow-x: hidden !important; 
    width: 100%;
}

/* THE ULTIMATE GLASS-PILL ACQUIRE BUTTON */
.btn-gold {
    display: inline-block !important; /* Button format */
    width: 100% !important; /* Text center karne ke liye width lock kardi */
    text-align: center !important; 
    
    /* THE REAL GLASSMORPHISM BASE */
    background: rgba(212, 175, 55, 0.04) !important; /* Extremely thin gold tint background */
    backdrop-filter: blur(12px) saturate(180%) !important; /* Frosted glass depth */
    -webkit-backdrop-filter: blur(12px) saturate(180%) !important; /* Safari support */
    
    /* EDGES AND BORDER */
    border: 1px solid rgba(212, 175, 55, 0.1) !important; /* Ultra-thin gold border edge */
    
    /* PILL SHAPE Master Fix */
    border-radius: 50px !important; /* Makes it a perfect pill shape */
    
    /* PADDING FOR SHAPE */
    padding: 10px 25px !important; /* Pehle padding update maaro compact pill ke liye */
    
    /* TYPOGRAPHY MATCHING */
    color: #fdf2d0 !important; /* Brightest cream text */
    font-family: 'Inter', sans-serif !important; 
    font-size: 0.75rem !important; /* Sleek small text */
    letter-spacing: 3px !important; /* Luxury character spacing */
    font-weight: 500 !important; /* Premium weight */
    text-decoration: none !important; 
    
    /* TRANSITION AND BEHAVIOR */
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important; /* Snappy pop transition */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important; /* Base shadow depth */
    cursor: pointer !important; 
}

/* THE HOVER GLOW UP & REVEAL */
.btn-gold:hover {
    background: rgba(212, 175, 55, 0.15) !important; /* Golden glass tint thickens */
    border-color: rgba(212, 175, 55, 0.6) !important; /* Edge chamkegi VURKISHÉ gold mein */
    transform: translateY(-4px) scale(1.05) !important; /* Button smoothly pops out of the card */
    
    /* HOVER GLOW & SHADOW POWER */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 25px rgba(212, 175, 55, 0.1) !important; /* Complex glow with depth */
}
/* =========================================
   CAROUSEL LAYOUT & TRACK (Smooth Drag)
   ========================================= */
.drops-showcase {
    /* padding: 15px 0 !important; */
    padding: 45px 0 45px 0 !important;
    width: 100vw;
    max-width: 100%;
    margin: 80px 0;
    /* margin-top: 160px !important; Upar se dhakka dekar niche layega */
    /* margin-bottom: 20px !important; Niche ka faltu gap khatam karega */
    overflow: hidden; /* Page scroll roklega */
    position: relative;
}

.carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 0 8%; /* Left-right alignment retained */
}

/* The Horizontal Scroll Track */
.carousel-container {
    display: flex;
    flex-wrap: nowrap !important; /* STRICTLY ek line mein */
    justify-content: flex-start !important; /* Left se shuru */
    align-items: center; 
        gap: 28px; /* Do cards ke beech compact space */
    margin-top: 80px !important;
    overflow-x: auto; /* SIRF track scroll hoga */
    width: 100%;
    padding: 20px 20px 25px 10px !important;
    /* padding: 20px 10px 40px 10px !important; */
    cursor: grab;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.carousel-container::-webkit-scrollbar { display: none; }
.carousel-container:active { cursor: grabbing; }

/* =========================================
   THE ELITE DROP ITEM (Contained Card Look restored from image_6.png)
   ========================================= */
.drop-item {
    flex: 0 0 auto !important;
    width: 368px !important; 
    display: flex;
    align-items: center;
    gap: 12px !important;
    padding: 16px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    
    /* THE REAL GLASS EFFECT */
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02) 38%, rgba(212, 175, 55, 0.03) 100%) !important;
    backdrop-filter: blur(16px) saturate(130%) !important; /* Piche ka blur karega */
    -webkit-backdrop-filter: blur(16px) saturate(130%) !important; /* Safari ke liye */
    border: 1px solid rgba(255, 255, 255, 0.1) !important; /* Edge define karne ke liye patli line */
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important; /* Depth/Shadow */
    
    transition: background 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
    border-radius: 12px; /* Smooth luxury corners */
}

.drop-item::before,
.drop-item::after {
    content: "";
    position: absolute;
    inset: auto;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.45s ease, transform 0.45s ease;
    z-index: 0;
}

.drop-item::before {
    top: -18%;
    left: -12%;
    width: 62%;
    height: 72%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.06) 32%, transparent 72%);
    filter: blur(6px);
    transform: translate3d(-8px, -6px, 0);
}

.drop-item::after {
    right: -18%;
    bottom: -28%;
    width: 58%;
    height: 68%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0.05) 38%, transparent 74%);
    filter: blur(10px);
    transform: translate3d(10px, 8px, 0);
}

.drop-item > * {
    position: relative;
    z-index: 1;
}

/* THE ORIGINAL HOVER GAMEPLAY (Entire Card Pops Out) */
.drop-item:hover {
    transform: none;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04) 34%, rgba(212, 175, 55, 0.08) 100%) !important;
    border-color: rgba(212, 175, 55, 0.34) !important; /* Edge chamkegi */
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.22), inset 0 -1px 0 rgba(212, 175, 55, 0.12), 0 0 22px rgba(212, 175, 55, 0.08) !important;
}

.drop-item:hover::before,
.drop-item:hover::after {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* THE IMAGE BOX (Inside the card) */
.drop-img-box {
    width: 138px !important;
    height: 144px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 2px;
}
.drop-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: opacity 0.4s ease, transform 0.8s ease;
}
.drop-item:hover .drop-img-box img {
    opacity: 1;
    transform: scale(1.05); /* Image zoom inside */
}

/* THE TEXT SECTION (Inside the card) */
.drop-info {
    flex: 1; /* Bacha hua space lelega */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.drop-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.02rem;
    color: #fdf2d0;
    letter-spacing: 1.6px;
    margin-bottom: 10px;
}
.drop-info p {
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.78rem;
    line-height: 1.5;
    margin-bottom: 18px;
}

/* =========================================
   THE LOCKED ITEM (Coming Soon)
   ========================================= */
.locked-item {
    opacity: 0.5;
}
.locked-item:hover {
    transform: none; /* Contained hover hi rahe */
}
.locked-bg {
    background: #080808; 
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.lock-icon {
    font-size: 2rem;
    filter: grayscale(100%) opacity(0.3);
}

/* Mobile Fixes */
@media (max-width: 768px) {
    .drop-item {
        flex-direction: column; /* Phone pe stack */
        width: 292px;
        min-width: 292px;
        padding: 16px;
        align-items: flex-start;
    }
    .drop-img-box {
        width: 100%;
        height: 240px;
    }
    .drop-item::before,
    .drop-item::after {
        display: none;
    }
}

/* 3. V-ICON Glow */
.v-icon {
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.3)); /* Isko bhi thoda calm kiya hai */
}

.main-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5% 100px;
}

/* CENTERING LOGIC */
.hero-center {
    display: flex;
    flex-direction: column;
    align-items: center; /* Sab kuch center mein */
    text-align: center;
    padding: 60px 0; /* Upar-niche ka faltu gap khatam */
}

.gilded-title {
    font-family: 'Playfair Display', serif;
    /* Size ko 3.5rem se 4.2rem ke beech restrict kiya hai taaki screen na phate */
    font-size: clamp(2.2rem, 8vw, 4rem); 
    line-height: 1.1;
    background: var(--gold);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px; /* Pehle se kaafi kam */
    margin-top: 100px;
    font-size: clamp(2.5rem, 8vw, 4.2rem); /* Dynamic scaling */
}

/* 2. SUBTITLE: "BEYOND THE FABRIC" ko doorbeen se bachane ke liye */
.tagline {
    font-family: 'Inter', sans-serif;
    /* Iska size thoda badhaya hai (0.95rem) taaki ye readable ho */
    font-size: clamp(0.75rem, 1.5vw, 0.95rem); 
    /* Letter spacing 15px se kam karke 8px ki hai, taaki words jude rahein */
    letter-spacing: 8px; 
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7); /* Isko thoda aur bright white kiya hai */
    margin-bottom: 40px; /* Button se pehle ka gap thoda kam */
    text-transform: uppercase;
    text-align: center;
}

/* VAULT BUTTON */
.btn-vault {
    display: inline-block;
    padding: 16px 45px;
    border: 1px solid #d4af37;
    color: #d4af37;
    text-decoration: none;
    letter-spacing: 3px;
    font-size: 0.75rem;
    transition: 0.4s;
}

.btn-vault:hover { background: #d4af37; color: #000; box-shadow: 0 0 25px rgba(212, 175, 55, 0.3); }

.limited-info {
    font-size: 0.6rem;
    margin-top: 25px;
    opacity: 0.5;
    letter-spacing: 2px;
}
/* 1. STATUS BAR CONTAINER: Button ke saath connect karna */
.artifact-status-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px; /* Blocks ke beech ka premium gap */
    
    /* Gap Fix: Button se iska rishta jodne ke liye margin kam kiya */
    margin: 25px auto 0; 
    padding: 10px 25px;
    
    /* 2. GLASS EFFECT: Thoda zyada transparent taaki background glows dikhein */
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(184, 134, 11, 0.12); /* Ultra-thin border */
    border-radius: 2px;
    
    width: fit-content; /* Utni hi width jitna content hai */
}

/* 3. DIVIDERS: Subtle vertical lines */
.status-divider {
    width: 1px;
    height: 12px;
    background: rgba(184, 134, 11, 0.2); /* Bohat halka gold tint */
}

/* 4. STATUS TEXT: Connectivity check */
.status-text {
    font-size: 0.72rem; /* Thoda aur refined size */
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.55); /* Subtle grey-white */
    font-weight: 400;
}

/* 5. THE DOT: Pulsing scarcity indicator */
.status-dot {
    width: 5px;
    height: 5px;
    background: #d4af37;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
    /* Animation humne pehle likhi thi, wo wahi rahegi */
}

.status-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem; /* Pehle se bada aur readable */
    font-weight: 400;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8); /* Brightness badha di taaki andhere mein dikhe */
    text-transform: uppercase;
}

/* Vertical Divider */
.status-divider {
    width: 1px;
    height: 15px;
    background: rgba(184, 134, 11, 0.3);
}

/* Animation for the Dot */
@keyframes pulse-glow {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

/* Responsive Fix */
@media (max-width: 768px) {
    .artifact-status-bar {
        flex-direction: column;
        gap: 10px;
        padding: 20px;
    }
    .status-divider {
        display: none; /* Mobile par dividers hata kar simple stack karenge */
    }
}
/* GLASS CARDS */
.glass-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-gold);
    backdrop-filter: blur(15px);
    margin-top: 50px;
    width: 100%;
}

.drops-row {
    display: flex;
    padding: 40px;
    gap: 40px;
}

.drop-item { display: flex; align-items: center; gap: 20px; flex: 1; text-align: left; }
.drop-item img { width: 100px; height: auto; }

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Container padding taaki text edges se na chipke */
.grid-box {
    padding: 30px; 
    text-align: center;
}

/* THE HEADINGS: Inko Gold aur 'Elite' banana hai */
.grid-box h6 {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #d4af37; /* VURKISHÉ Gold */
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* THE PARAGRAPH: Bada aur chubbne wala text hata kar 'Sleek' banana hai */
.grid-box p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem; /* Size thoda kam kiya */
    color: rgba(255, 255, 255, 0.65); /* Soft Grey-White */
    line-height: 1.6; /* Lines ke beech saans lene ki jagah */
    font-weight: 300; /* Mota font hata kar patla luxury feel */
    letter-spacing: 0.5px;
}

/* TECH SPEC */
.tech-spec-section {
    padding: 50px;
    margin-top: 40px;
}

/* THE MAIN LABEL */
.gold-label {
    font-family: 'Inter', sans-serif;
    color: #d4af37;
    font-size: 1rem;
    letter-spacing: 8px;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
    position: relative;
}

/* Label ke niche ek halki line (Blueprint feel ke liye) */
.gold-label::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: rgba(212, 175, 55, 0.5);
    margin: 15px auto 0;
}

/* FLEXBOX FIX: Dono columns ko theek se center/align karna */
.spec-flex {
    display: flex;
    justify-content: space-around; /* Columns ke beech barabar jagah */
    gap: 20px;
    max-width: 800px; /* Text ko zyada phailne se rokna */
    margin: 0 auto;
}

/* THE SPECS TEXT */
.spec-col p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 1px;
    /* # wale hisse ko thoda techy look dene ke liye */
    transition: all 0.3s ease;
}

.spec-line {
    display: flex;
    align-items: center;
    gap: 12px;
}

.spec-icon {
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    border: 1px solid rgba(212, 175, 55, 0.72);
    border-radius: 2px;
    transform: rotate(45deg);
    background: linear-gradient(135deg, rgba(252, 246, 186, 0.82), rgba(191, 149, 63, 0.55));
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.16);
}

/* Hover Effect: Padhte waqt highlight ho */
.spec-col p:hover {
    color: #fcf6ba;
    transform: translateX(5px); /* Halka sa aage khiskega */
}

/* MOBILE FIX */
@media (max-width: 850px) {
    .drops-row, .info-grid, .spec-flex { flex-direction: column; grid-template-columns: 1fr; }
    .tagline { letter-spacing: 5px; }
}

/* Container Fix */
.drops-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 50px; /* Padding for luxury spacing */
    gap: 40px;
}

/* Individual Card Fix */
.drop-item {
    display: flex;
    align-items: center; /* Image aur text vertically center honge */
    gap: 25px;
    flex: 1; /* Dono items barabar space lenge */
}

/* Image Scaling */
.drop-img-box img {
    width: 110px; /* Precise size for desktop */
    height: auto;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
}

/* Text Content Styling */
.drop-text {
    text-align: left;
}

.drop-text h5 {
    color: #fcf6ba; /* Gilded color */
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.drop-text p {
    font-size: 0.7rem;
    color: #999;
    max-width: 260px;
    line-height: 1.5;
}

/* Artifact Button Style */
.btn-artifact-call {
    margin-top: 15px;
    background: transparent;
    border: 1px solid rgba(184, 134, 11, 0.4);
    color: #d4af37;
    padding: 10px 22px;
    font-size: 0.65rem;
    letter-spacing: 2px;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-artifact-call:hover {
    background: #d4af37;
    color: #000;
}

/* Mobile Responsiveness (Auto-Stack) */
@media (max-width: 992px) {
    .drops-row {
        flex-direction: column;
        padding: 40px 20px;
    }
    .drop-item {
        flex-direction: column;
        text-align: center;
    }
    .drop-text {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 14px 14px;
    }

    .brand-logo {
        flex: 1 1 auto;
        min-width: 0;
        gap: 8px;
    }

    .v-icon,
    .brand-logo img {
        height: 22px;
        flex: 0 0 auto;
    }

    .brand-logo span {
        flex: 1 1 auto;
        min-width: 0;
        font-size: 0.92rem;
        letter-spacing: 2px;
        line-height: 1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: clip;
    }

    .nav-actions {
        flex: 0 0 auto;
        gap: 12px;
        margin-left: 12px;
    }

    .login-icon-btn {
        flex: 0 0 auto;
        min-width: 24px;
        min-height: 24px;
    }

    .login-icon-btn svg {
        width: 20px;
        height: 20px;
    }

    .menu-btn {
        flex: 0 0 auto;
        gap: 8px;
        padding: 8px 0 8px 6px;
    }

    .menu-text {
        font-size: 0.76rem;
        letter-spacing: 2px;
    }

    .luxury-hamburger {
        gap: 5px;
    }

    .luxury-hamburger .top-line {
        width: 28px;
    }

    .luxury-hamburger .bottom-line {
        width: 16px;
    }
}

@media (max-width: 420px) {
    .navbar {
        padding: 12px 10px;
    }

    .brand-logo {
        gap: 6px;
    }

    .v-icon,
    .brand-logo img {
        height: 20px;
    }

    .brand-logo span {
        font-size: 0.72rem;
        letter-spacing: 0.9px;
        white-space: nowrap;
        line-height: 1;
    }

    .nav-actions {
        gap: 8px;
        margin-left: 8px;
    }

    .menu-btn {
        gap: 6px;
        padding-left: 2px;
    }

    .menu-text {
        font-size: 0.68rem;
        letter-spacing: 1.2px;
    }

    .account-initials-circle {
        width: 32px;
        height: 32px;
        font-size: 0.68rem;
        letter-spacing: 1px;
    }

    .login-icon-btn svg {
        width: 17px;
        height: 17px;
    }

    .luxury-hamburger .top-line {
        width: 22px;
    }

    .luxury-hamburger .bottom-line {
        width: 12px;
    }
}

@media (max-width: 390px) {
    .navbar {
        padding: 10px 8px;
    }

    .brand-logo {
        gap: 5px;
    }

    .v-icon,
    .brand-logo img {
        height: 18px;
    }

    .brand-logo span {
        font-size: 0.66rem;
        letter-spacing: 0.7px;
    }

    .nav-actions {
        gap: 6px;
        margin-left: 6px;
    }

    .account-initials-circle {
        width: 30px;
        height: 30px;
        font-size: 0.62rem;
    }

    .menu-text {
        font-size: 0.62rem;
        letter-spacing: 1px;
    }
}

.vault-container {
    display: flex;
    justify-content: center;
    padding: 40px 0;
}

.gold-vault-btn {
    /* 1. Shape & Size */
    padding: 18px 60px;
    border-radius: 50px; /* Pill Shape */
    cursor: pointer;
    position: relative;
    overflow: hidden;
    
    /* 2. Background: Soft Gold Glassmorphism */
    background: linear-gradient(180deg, rgba(253, 242, 208, 0.15) 0%, rgba(212, 175, 55, 0.1) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    /* 3. The Metallic Border (The Real Magic) */
    border: 1.5px solid transparent;
    background-image: linear-gradient(rgba(5, 5, 5, 0.8), rgba(5, 5, 5, 0.8)), 
                      linear-gradient(180deg, #fcf6ba 0%, #bf953f 50%, #8a6d3b 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;

    /* 4. Luxury Typography */
    color: #d4af37;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 5px; /* Premium letter spacing */
    text-transform: uppercase;
    
    /* 5. Depth & Shadows */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 
                inset 0 0 10px rgba(212, 175, 55, 0.1);
    
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* 6. The Inner Glow (Hover Effect) */
.gold-vault-btn:hover {
    transform: scale(1.05);
    color: #fff;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2), 
                inset 0 0 20px rgba(212, 175, 55, 0.2);
    border-image-source: linear-gradient(180deg, #fff 0%, #d4af37 100%);
}

/* 7. The Animated Shine (Left to Right) */
/* 1. BUTTON PROPORTIONS: Text aur Space ka balance */
.gold-vault-btn {
    /* Padding kam ki hai taaki text 'fit' lage, 'lost' nahi */
    padding: 14px 45px; 
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    
    /* 2. TEXT SIZE: 'Enter the Shop' ko readable aur bold banana */
    font-size: 0.95rem; /* Pehle 0.7-0.8 raha hoga, ab bold dikhega */
    font-weight: 700;
    letter-spacing: 4px; /* Letter spacing thodi kam taaki words Jude rahein */
    color: #fcf6ba; /* Soft Gilded Gold */
    text-transform: uppercase;
        text-decoration: none;

    /* 3. BACKGROUND & BORDER: Wahi metallic glass look */
    background: linear-gradient(180deg, rgba(253, 242, 208, 0.12) 0%, rgba(212, 175, 55, 0.08) 100%);
    backdrop-filter: blur(12px);
    border: 1.5px solid rgba(184, 134, 11, 0.4);
    
    /* 4. DEPTH: Taaki button background se 'pop' kare */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6), 
                inset 0 0 12px rgba(184, 134, 11, 0.1);
    
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* 5. HOVER: Jab user click karne aaye toh 'Luxury' feel ho */
.gold-vault-btn:hover {
    transform: translateY(-3px) scale(1.02);
    color: #ffffff;
    border-color: rgba(253, 242, 208, 0.8);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.25), 
                inset 0 0 20px rgba(212, 175, 55, 0.2);
}

/* 1. Container ko taiyar karna */
.drops-row {
    transition: all 0.5s ease;
    position: relative;
}

/* 2. THE DIM EFFECT: Jab ek card focused ho, toh BAAKI cards chup jayein */
.drops-row.spotlight-active .drop-item:not(.focused-artifact) {
    opacity: 0.25; /* Doosra card dark ho jayega */
    filter: blur(5px); /* Aur blur ho jayega */
    transform: scale(0.95); /* Thoda piche chala jayega */
}

/* 3. BASE CARD SETTINGS: Transitions smooth honi chahiye */
.drop-item {
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1); /* Bouncy smooth popup */
    position: relative;
    z-index: 1;
    background: transparent;
    border-radius: 4px;
    padding: 20px;
}

/* 4. THE POP-OUT EFFECT (Hero of the screen) */
.drop-item.focused-artifact {
    transform: scale(1.15) translateY(-15px); /* Screen ke aage aur thoda upar aayega */
    z-index: 50; /* Sabke upar dikhega */
    
    /* Piche dark aura aur gold glow jisse lage wo hawa mein hai */
    background: rgba(10, 10, 15, 0.95); 
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.9), 
                0 0 40px rgba(184, 134, 11, 0.15);
}

/* 5. BUTTON HIGHLIGHT: Acquire button par automatically roshni aa jaye */
.drop-item.focused-artifact .btn-artifact-call {
    background: linear-gradient(90deg, #d4af37, #fdf2d0);
    color: #050505; /* Black text on gold */
    font-weight: 800;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    transform: scale(1.05); /* Button bhi ready to click feel dega */
    border: none;
}

/* --- 1. THE GLASS OVERLAY (Pura screen cover karega) --- */
/* --- 1. THE TRUE GLASSMORPHISM (Ab piche ka blur chamkega) --- */
.luxury-menu-overlay {
    position: fixed;
    inset: 0; 
    /* Opacity 0.85 se gira kar 0.35 kar di, taaki piche ki site 'Glass' se jhaake */
    background: rgba(5, 5, 10, 0.35); 
    
    /* Heavy Blur aur Saturation taaki premium frosted glass feel aaye */
    backdrop-filter: blur(35px) saturate(150%);
    -webkit-backdrop-filter: blur(35px) saturate(150%);
    
    z-index: 10000; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.luxury-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* --- 2. TYPOGRAPHY & SPACING (No more giant billboards) --- */
.overlay-nav {
    display: flex;
    flex-direction: column;
    gap: 40px; /* Pehle se zyada gap, taaki har link ki apni value ho */
    text-align: center;
    margin-top: -30px; 
}

.nav-link {
    /* Font size ko aggressively chhota kar diya hai (Max 1.8rem) */
    font-size: clamp(1.2rem, 2.5vw, 1.8rem); 
    font-family: 'Playfair Display', serif;
    font-weight: 400; /* Mota (bold) font sasta lagta hai, isliye isko patla kiya */
    
    /* THE MAGIC: Letter spacing badhane se chhota text bhi premium lagta hai */
    letter-spacing: 12px; 
    
    color: rgba(240, 230, 210, 0.45); /* Halka fade rakha hai */
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    
    /* Letter spacing ki wajah se text thoda right shift lagta hai, usko fix kiya */
    margin-left: 12px; 
}

/* --- 3. THE HOVER MAGIC (Smooth & Premium) --- */
.nav-link:hover {
    color: #fdf2d0; /* Bright gold/beige par aayega */
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.25); /* Halka sa aura */
    /* Scale (zoom) hone ki jagah, bas halke se upar uthega (float effect) */
    transform: translateY(-3px); 
}

/* Chote numbers (01, 02) */
.nav-link span {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem; /* Number ko bhi chhota kiya */
    color: #d4af37;
    position: absolute;
    left: -60px; /* Thoda aur door rakha */
    top: 50%;
    transform: translateY(-50%) translateX(-15px); 
    font-weight: 300;
    opacity: 0; 
    transition: all 0.4s ease;
    letter-spacing: 2px; /* Number ki spacing normal rakhi */
}

.nav-link:hover span {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* --- 4. FOOTER OVERLAP FIX (Apni jagah fix rahega) --- */
.menu-footer {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%); /* Perfectly center karne ke liye */
    width: 100%;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 4px;
    display: flex;
    justify-content: center;
    gap: 40px; /* Text ke beech gap */
}

.contact-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
        overflow-y: auto;
    background: rgba(4, 4, 4, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 2800;
}

.contact-modal.active {
    display: flex;
}

.contact-modal-card {
    position: relative;
    width: min(560px, calc(100vw - 32px));
    max-height: calc(100vh - 88px);
    padding: 16px 18px 16px;
    border: 1px solid rgba(226, 210, 165, 0.28);
    background:
        linear-gradient(180deg, rgba(34, 28, 15, 0.97), rgba(16, 14, 10, 0.98)),
        radial-gradient(circle at top, rgba(212, 175, 55, 0.12), transparent 52%);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.42);
    overflow-y: auto;
}

.contact-modal-card h2 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    color: #f1e4b8;
    font-size: 0.9rem;
    line-height: 1.1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding-right: 40px;
}

.contact-modal-copy {
    margin: 4px 0 6px;
    color: rgba(240, 233, 216, 0.74);
    line-height: 1.34;
    font-size: 0.76rem;
}

.contact-close {
    position: absolute;
    right: 10px;
    top: 8px;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: rgba(241, 228, 184, 0.08);
    color: rgba(248, 239, 214, 0.92);
    font-size: 1.15rem;
    line-height: 1;
    cursor: pointer;
}

.contact-form {
    display: grid;
    gap: 7px;
}

.contact-form label {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    color: rgba(240, 233, 216, 0.72);
    text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 12px;
    border: 1px solid rgba(241, 228, 184, 0.14);
    background: rgba(255, 255, 255, 0.05);
    color: #f7f0db;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(240, 233, 216, 0.42);
}

.contact-form textarea {
    min-height: 72px;
    resize: vertical;
}

.contact-submit-btn {
    margin-top: 2px;
    border: 1px solid rgba(241, 228, 184, 0.9);
    background: linear-gradient(180deg, rgba(241, 228, 184, 0.96), rgba(218, 190, 118, 0.96));
    color: #15120b;
    padding: 10px 14px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
}

.contact-submit-btn:disabled {
    opacity: 0.72;
    cursor: not-allowed;
}

.contact-status {
    min-height: 18px;
    margin: 2px 0 0;
    color: rgba(240, 233, 216, 0.74);
    font-size: 0.82rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .contact-modal {
        padding: 16px;
    }

    .contact-modal-card {
        width: min(520px, calc(100vw - 24px));
        max-height: calc(100vh - 56px);
        padding: 14px 12px 12px;
    }

    .contact-modal-card h2 {
        font-size: 0.82rem;
        padding-right: 34px;
    }

    .contact-modal-copy {
        margin: 3px 0 5px;
        font-size: 0.72rem;
        line-height: 1.28;
    }

    .contact-form {
        gap: 6px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 9px 11px;
        font-size: 0.86rem;
    }

    .contact-form textarea {
        min-height: 58px;
    }

    .contact-submit-btn {
        margin-top: 2px;
        padding: 10px 12px;
    }

    .contact-close {
        right: 8px;
        top: 6px;
        width: 24px;
        height: 24px;
        font-size: 1rem;
    }
}

/* Close Menu Button (Same as before) */
.close-menu-btn {
    position: absolute;
    top: 35px;
    right: 8%;
    width: 35px;
    height: 35px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.close-menu-btn .line {
    position: absolute;
    width: 30px;
    height: 1.5px;
    background: #f0e6d2;
    transition: transform 0.3s ease;
}
.close-menu-btn .line-1 { transform: rotate(45deg); }
.close-menu-btn .line-2 { transform: rotate(-45deg); }
.close-menu-btn:hover .line-1 { background: #fff; transform: scale(1.1) rotate(45deg); }
.close-menu-btn:hover .line-2 { background: #fff; transform: scale(1.1) rotate(-45deg); }

/* =========================================
   1. INFINITE MARQUEE (The Tape)
   ========================================= */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    background: #050505; /* Solid dark base */
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 15px 0;
    margin: 60px 0;
    white-space: nowrap;
    position: relative;
    display: flex;
}

.marquee-content {
    display: flex;
    animation: scroll-left 25s linear infinite;
}

.marquee-content span {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #d4af37;
    letter-spacing: 4px;
    font-weight: 500;
    padding-right: 50px;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Half translate for smooth loop with 4 spans */
}

/* =========================================
   2. ARTIFACT COUNTDOWN (The Glass Vault)
   ========================================= */
.countdown-section {
    display: flex;
    justify-content: center;
    padding: 0 20px;
    margin-bottom: 80px;
}

.countdown-box {
    padding: 40px 60px;
    text-align: center;
    width: 100%;
    max-width: 700px;
}

.timer-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-block span {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #fdf2d0;
    line-height: 1;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.time-block small {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 4px;
    margin-top: 10px;
}

.colon {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: rgba(212, 175, 55, 0.4);
    margin-bottom: 25px; /* Alignment with numbers */
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* =========================================
   3. THE ORIGIN COORDINATES (The Lore)
   ========================================= */
.origin-section {
    max-width: 900px;
    margin: 0 auto 100px auto;
    padding: 50px;
}

.origin-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.lore-text {
    flex: 1;
    text-align: left;
}

.lore-text .gold-label {
    text-align: left;
    margin-bottom: 20px;
}
.lore-text .gold-label::after {
    margin: 15px 0 0 0; /* Align line to left */
}

.typewriter-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.coordinates-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(10, 12, 25, 0.6);
    padding: 25px;
    border: 1px solid rgba(184, 134, 11, 0.15);
    border-radius: 4px;
}

.coord-data p {
    font-family: 'Inter', sans-serif; /* Monospace vibe */
    font-size: 0.85rem;
    color: #f0e6d2;
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-weight: 500;
}

.radar-ping {
    width: 12px;
    height: 12px;
    background-color: #d4af37;
    border-radius: 50%;
    position: relative;
}

.radar-ping::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-color: rgba(212, 175, 55, 0.5);
    border-radius: 50%;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    75%, 100% { transform: scale(2.5); opacity: 0; }
}

/* =========================================
   4. RESPONSIVE DESIGN (Mobile Fixes)
   ========================================= */
@media (max-width: 768px) {
    .timer-display {
        gap: 10px;
    }
    .countdown-box {
        padding: 30px 20px;
    }
    .origin-grid {
        flex-direction: column;
        text-align: center;
    }
    .lore-text .gold-label {
        text-align: center;
    }
    .lore-text .gold-label::after {
        margin: 15px auto 0 auto;
    }
    .coordinates-box {
        width: 100%;
        justify-content: center;
    }
}

/* =========================================
   THE VAULT FOOTER STYLES
   ========================================= */
.vault-footer {
    background-color: #030303;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    padding: 50px 8% 20px; /* Pehle 80px aur 30px tha, usko kam kiya */
    position: relative;
    overflow: hidden;
}

/* 2. Grid ke niche ka bada gap kam kiya */
.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 30px; /* Pehle 60px tha, isko aadha kar diya */
}

/* --- THE VAULT INPUT FORM --- */
.vault-access-col {
    flex: 1;
    max-width: 450px;
}

.vault-subtext {
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 20px; /* 30px se 20px kiya */
    line-height: 1.5;
}

.vault-form {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.4);
    padding-bottom: 10px;
    transition: border-color 0.3s ease;
}

.vault-form:focus-within {
    border-bottom-color: #fdf2d0; /* Focus hone par bright gold */
}

.vault-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
    color: #fdf2d0;
    font-size: 0.95rem;
    letter-spacing: 2px;
}

.vault-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.vault-submit-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.3s ease;
}

.vault-submit-btn:hover {
    transform: translateX(5px); /* Arrow aage jayega */
}

/* --- THE PROTOCOL LINKS --- */
.protocol-links-col {
    display: flex;
    gap: 80px;
}

.support-footer-card {
    position: relative;
    width: min(332px, 100%);
    padding: 22px 22px 20px;
    align-self: flex-start;
    overflow: hidden;
    border: 1px solid rgba(241, 228, 188, 0.16);
    border-radius: 12px;
    background:
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.18), transparent 42%),
        linear-gradient(180deg, rgba(21, 18, 12, 0.96), rgba(9, 8, 7, 0.98));
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.support-footer-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(252, 246, 186, 0.08), transparent 34%, transparent 70%, rgba(212, 175, 55, 0.08));
    pointer-events: none;
}

.support-footer-card::after {
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(252, 246, 186, 0), rgba(252, 246, 186, 0.68), rgba(252, 246, 186, 0));
    pointer-events: none;
}

.support-footer-label {
    position: relative;
    z-index: 1;
    margin: 0 0 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: #f1de9c;
}

.support-footer-copy {
    position: relative;
    z-index: 1;
    margin: 0 0 18px;
    color: rgba(240, 233, 216, 0.76);
    font-size: 0.88rem;
    line-height: 1.62;
    max-width: 24ch;
}

.support-footer-btn {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 50px;
    padding: 13px 18px;
    border: 1px solid rgba(241, 228, 188, 0.28);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(241, 228, 184, 0.18), rgba(212, 175, 55, 0.12));
    color: #f7ebc0;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 24px rgba(0, 0, 0, 0.24);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.support-footer-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(241, 228, 188, 0.62);
    color: #fff7d8;
    background: linear-gradient(180deg, rgba(241, 228, 184, 0.28), rgba(212, 175, 55, 0.18));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 16px 30px rgba(0, 0, 0, 0.32), 0 0 18px rgba(212, 175, 55, 0.08);
}

.link-group h4 {
    font-family: 'Inter', sans-serif;
    color: #d4af37;
    font-size: 0.8rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.link-group a {
    display: block;
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: #f0e6d2;
}

/* --- THE GIANT BRAND TEXT --- */
.giant-brand-text {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px; /* 40px se seedha 15px pe laya */
}

.giant-brand-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 12vw, 10rem); 
    color: rgba(255, 255, 255, 0.03);
    letter-spacing: 15px;
    margin: 0;
    
    /* Ye line us invisible dabbe ko daba degi */
    line-height: 0.75; 
    
    user-select: none;
}

/* --- BOTTOM COPYRIGHT --- */
/* 5. Copyright aur Giant text ko aur paas kiya */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: -10px; /* Thoda aur tight kiya */
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    letter-spacing: 2px;
}

/* --- RESPONSIVE FIXES --- */
@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
    }
    .protocol-links-col {
        width: 100%;
        gap: 20px;
        flex-direction: row;
        align-self: flex-start;
        align-items: flex-start;
        justify-content: space-between;
    }
    .link-group {
        flex: 1 1 calc(50% - 10px);
        max-width: calc(50% - 10px);
        min-width: 0;
    }
    .link-group h4 {
        font-size: 0.72rem;
        letter-spacing: 2px;
        margin-bottom: 14px;
    }
    .link-group a {
        font-size: 0.76rem;
        margin-bottom: 10px;
        line-height: 1.35;
    }
    .support-footer-card {
        width: min(304px, 92%);
        align-self: center;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        margin-top: 20px;
    }
}

/* --- THE SOCIAL HUB BUTTONS --- */
.social-links-row {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 54px;
    padding: 14px 24px;
    background: linear-gradient(180deg, rgba(42, 35, 14, 0.97), rgba(31, 27, 13, 0.98));
    border: 1px solid rgba(241, 228, 188, 0.92);
    border-radius: 4px;
    color: #f1e4b8;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 3px;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 0 0 1px rgba(104, 87, 38, 0.12);
    transition: all 0.4s ease;
}

/* Hover Gameplay */
.social-btn:hover {
    background: linear-gradient(180deg, rgba(49, 41, 16, 0.98), rgba(35, 30, 14, 0.99));
    border-color: rgba(248, 236, 198, 0.98);
    color: #fff0c8;
    transform: none;
    box-shadow: 0 0 0 1px rgba(244, 233, 196, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Social Icon Size Fix */
.social-btn svg {
    transition: transform 0.3s ease;
}

.social-btn:hover svg {
    transform: none;
}

/* Mobile Adjustments for Social Buttons */
@media (max-width: 768px) {
    .social-links-row {
        flex-direction: column;
        width: 100%;
    }
    .social-btn {
        justify-content: center; /* Mobile par center align achha lagta hai */
    }
}

/* Landing carousel normalization overrides */
.carousel-container {
    align-items: stretch;
    overflow-y: visible;
    padding-top: 28px !important;
    padding-bottom: 30px !important;
}

.drop-item {
    width: 388px !important;
    min-height: 332px;
    height: 332px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    gap: 16px !important;
    padding: 18px 18px 16px;
    transform: none !important;
    margin-top: 0 !important;
    z-index: 1;
}

.drop-item:hover,
.locked-item:hover {
    transform: none !important;
    margin-top: 0 !important;
    z-index: 1;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.22), inset 0 -1px 0 rgba(212, 175, 55, 0.12), 0 0 22px rgba(212, 175, 55, 0.08) !important;
}

.drop-img-box {
    width: 132px !important;
    height: 146px;
    margin: 0 auto;
}

.drop-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.drop-info {
    width: 100%;
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.drop-info h3 {
    width: 100%;
    margin: 0 0 10px;
    font-size: 0.98rem;
    line-height: 1.12;
}

.drop-info p {
    width: 100%;
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.8rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
}

.drop-info .btn-gold,
.drop-info .btn-locked {
    width: 100% !important;
    margin-top: auto;
}

.drop-info .btn-gold:hover,
.drop-info .btn-locked:hover {
    transform: none !important;
}

.btn-locked {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(253, 242, 208, 0.82);
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-locked:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.35);
    color: #fdf2d0;
    transform: none;
}

@media (max-width: 768px) {
    .drop-item {
        width: 320px !important;
        min-height: 316px;
        height: 316px;
        padding: 16px;
        gap: 14px !important;
    }

    .drop-img-box {
        width: 118px !important;
        height: 132px;
    }

    .drop-info h3 {
        font-size: 0.94rem;
    }

    .drop-info p {
        font-size: 0.77rem;
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }
}

@media (max-width: 768px) {
    .main-wrapper {
        padding: 0 14px 72px;
    }

    .hero-module {
        padding-top: 92px;
    }

    .drops-showcase {
        margin: 40px 0;
        padding: 28px 0 !important;
    }

    .carousel-header {
        gap: 12px;
        margin-bottom: 20px;
        padding: 0 14px;
    }

    .carousel-container {
        gap: 16px;
        margin-top: 28px !important;
        padding: 10px 14px 18px !important;
        scroll-padding-inline: 14px;
        overflow-y: visible;
    }

    .drop-item {
        width: min(86vw, 320px) !important;
        min-width: min(86vw, 320px);
        max-width: 320px;
        min-height: 0;
        height: auto;
    }

    .drop-text,
    .drop-info {
        min-width: 0;
    }

    .drop-text p,
    .drop-info p {
        max-width: none;
    }
}

@media (max-width: 420px) {
    .main-wrapper {
        padding-left: 10px;
        padding-right: 10px;
    }

    .drops-showcase {
        margin: 28px 0;
        padding: 20px 0 !important;
    }

    .carousel-header {
        padding: 0 10px;
    }

    .carousel-container {
        gap: 12px;
        margin-top: 20px !important;
        padding: 8px 10px 16px !important;
        scroll-padding-inline: 10px;
    }

    .drop-item {
        width: min(84vw, 292px) !important;
        min-width: min(84vw, 292px);
        padding: 14px;
        gap: 12px !important;
    }

    .drop-img-box {
        width: 104px !important;
        height: 116px;
    }

    .drop-info h3 {
        font-size: 0.88rem;
    }

    .drop-info p {
        font-size: 0.72rem;
    }
}