:root {
    /* Base Colors */
    --bg-black: #000000;
    --bg-darker: #050505;
    --card-bg: #111111;
    --card-border: rgba(255, 255, 255, 0.08);

    /* Typography */
    --text-main: #ffffff;
    --text-secondary: #a1a1aa;
    --text-dim: #71717a;

    /* Accents */
    --accent-gold: #fbbf24;
    --accent-gold-dim: #92400e;
    --accent-gold-glow: rgba(251, 191, 36, 0.4);

    /* Glassmorphism */
    --glass-bg: rgba(15, 15, 15, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(12px);

    /* Status & Actions */
    --btn-disabled: #27272a;
    --btn-disabled-text: #52525b;
    --success: #10b981;

    /* Motion */
    --transition-speed: 0.3s;
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);

    /* Fonts */
    --font-main: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-black);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Splash Screen */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    z-index: 9999;
    display: none;
    /* Hidden by default - no splash screen */
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}

#splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.splash-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.splash-text {
    color: var(--accent-gold);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    animation: pulse-gold 2s infinite ease-in-out;
}

.splash-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.splash-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 40%;
    background: var(--accent-gold);
    box-shadow: 0 0 10px var(--accent-gold);
    animation: loading-bar 1.5s infinite ease-in-out;
}

@keyframes pulse-gold {

    0%,
    100% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(251, 191, 36, 0.2);
    }

    50% {
        opacity: 0.5;
        text-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
    }
}

@keyframes loading-bar {
    0% {
        left: -40%;
    }

    50% {
        left: 40%;
        width: 60%;
    }

    100% {
        left: 100%;
        width: 40%;
    }
}

/* Galaxy Background Container */
.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #000;
    overflow: hidden;
}

#stars,
#stars2,
#stars3 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 200%;
    height: 200%;
    width: 200%;
    height: 200%;
    background: transparent;
    will-change: transform;
}

#stars {
    width: 1px;
    height: 1px;
    box-shadow: 1744px 119px #FFF, 357px 1475px #FFF, 1802px 556px #FFF, 168px 1056px #FFF, 1121px 1974px #FFF;
    /* Simplified for brevity, will generate better ones */
    animation: twinkle 10s infinite;
}

#stars2 {
    width: 2px;
    height: 2px;
    box-shadow: 489px 156px #FFF, 1204px 1345px #FFF, 892px 678px #FFF;
    animation: twinkle 15s infinite;
}

#stars3 {
    width: 3px;
    height: 3px;
    box-shadow: 120px 880px #FFF, 1500px 200px #FFF;
    animation: twinkle 20s infinite;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

/* Shooting Stars */
#shooting-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.shooting-star {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 2px;
    background: linear-gradient(-45deg, rgba(251, 191, 36, 1), rgba(0, 0, 255, 0));
    border-radius: 999px;
    filter: drop-shadow(0 0 6px rgba(251, 191, 36, 1));
    animation: tail 3000ms ease-in-out infinite, shooting 3000ms ease-in-out infinite;
}

@keyframes tail {
    0% {
        width: 0;
    }

    30% {
        width: 100px;
    }

    100% {
        width: 0;
    }
}

@keyframes shooting {
    0% {
        transform: translateX(0) translateY(0) rotate(45deg);
    }

    100% {
        transform: translateX(-500px) translateY(500px) rotate(45deg);
    }
}

/* Navbar Enhancements */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 11000;
    /* Boosted to be above the body::after overlay (9999) */
}

/* ... (keep logo styles) ... */

/* Nav Links Container */
.nav-links {
    display: flex;
    gap: 3rem;
    /* Increased gap for better spacing */
}

/* Nav Links Premium Hover & Active */
.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    opacity: 0.6;
    position: relative;
    padding-bottom: 8px;
    /* Space for the indicator */
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-gold);
    opacity: 1;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 100px;
    box-shadow: 0 0 15px var(--accent-gold), 0 0 5px var(--accent-gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

/* ... (keep user actions) ... */

/* Collection Header Premium */
.collection-header.compact .main-title {
    font-size: 4rem;
    /* Larger */
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff 0%, #fbbf24 50%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite;
    filter: drop-shadow(0 0 25px rgba(251, 191, 36, 0.3));
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* User Actions & Lang Switcher */
.user-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 2px 4px;
}

.lang-btn:hover {
    color: var(--text-main);
}

.lang-btn.active {
    color: var(--accent-gold);
}

.lang-divider {
    color: rgba(255, 255, 255, 0.1);
    font-size: 0.7rem;
}

.user-handle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    text-transform: lowercase;
}

/* Removed redundant navbar styles */

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    text-transform: lowercase;
}

.logo a {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.4));
}

.logo .diba {
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.logo .bitcoin-signet {
    color: #fbbf24;
    font-size: 0.9rem;
    font-weight: 500;
}



.user-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-handle {
    color: var(--accent-gold);
    font-weight: 600;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--accent-gold);
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile Menu Toggle - Hidden on desktop */
.menu-toggle {
    display: none;
    /* Default hidden */
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 0.4rem;
    z-index: 10001;
    /* Highest priority */
}

/* Standardize body behavior when menu is open */
body.menu-open {
    overflow: hidden !important;
}

/* Full-Screen Blur Overlay when Menu is Open */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    /* Slightly darker for better contrast */
    backdrop-filter: blur(20px);
    /* Increased blur for premium feel */
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-out-expo);
    pointer-events: none;
}

body.menu-open::after {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

/* Mobile Responsive Nav */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        /* Show on mobile */
    }

    .nav-links {
        position: fixed;
        top: 0;
        /* Changed to 0 for full height or top-aligned feel */
        right: -100%;
        width: 280px;
        /* Slightly wider for premium feel */
        height: 100vh;
        background: var(--glass-bg) !important;
        backdrop-filter: var(--glass-blur);
        border-left: 1px solid var(--glass-border);
        border-radius: 0;
        /* Edge to edge sidebar feel */
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        /* More top padding for the toggle area */
        transition: all 0.5s var(--ease-out-expo);
        z-index: 10000;
        gap: 1.5rem;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0 !important;
    }

    .nav-links a {
        font-size: 0.95rem;
        padding: 0.8rem 1rem;
        border-radius: 8px;
        width: 100%;
        text-align: left;
        opacity: 0.8;
        background: transparent;
        transition: all 0.2s ease;
        border-bottom: none;
    }

    .nav-links a:hover,
    .nav-links a.active {
        background: rgba(251, 191, 36, 0.1);
        padding-left: 1.25rem;
        opacity: 1;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links.active a:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active a:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-links.active a:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-links.active a:nth-child(4) {
        transition-delay: 0.4s;
    }

    /* Burger Animation when active */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    body.menu-open {
        overflow: hidden;
        /* Prevent scrolling when menu open */
    }
}

/* Page Modes & Viewport Optimization */
body.single-page-mode,
body.dual-page-mode {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    /* Allow scrolling but maintain feel */
}

.guardian-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (max-height: 850px) {

    body.single-page-mode,
    body.dual-page-mode {
        overflow-y: auto;
        /* Fallback for small screens */
    }
}

.container.optimized {
    flex: 1;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 1rem 1.5rem 3rem 1.5rem;
}





/* Layout Variations */
.layout.single-focus,
.layout.dual-focus {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

/* Collection Header Compact */
.collection-header.compact {
    text-align: left;
    margin-bottom: 2rem;
    border: none;
    padding: 0;
}

.collection-header.compact .main-title {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1;
    background: linear-gradient(to right, var(--accent-gold), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.2));
}

.guardian-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* Guardian Card Varieties */
.guardian-card.solo .image-card {
    height: 520px;
}

.vertical-stack {
    display: flex;
    flex-direction: column !important;
    gap: 1.5rem;
}

.guardian-card.mini-stack .image-card {
    height: 250px;
    /* Smaller height for vertical stacking to fit viewport */
}

.guardian-card.mini-stack .fairy-name.small {
    font-size: 2.2rem;
}

.guardian-overlay.compact {
    padding: 1.5rem;
}

/* Rebranded Description Compact */
.rebranded-description.compact {
    margin-top: 1.5rem;
    padding: 2.5rem;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-left: 4px solid var(--accent-gold);
    border-radius: 4px 16px 16px 4px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-secondary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.rebranded-description.compact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(251, 191, 36, 0.03) 100%);
    pointer-events: none;
}

.description-subtitle {
    color: var(--accent-gold);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: block;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}


/* Responsive Layout Updates */
@media (max-width: 1100px) {

    .layout.single-focus,
    .layout.dual-focus {
        grid-template-columns: 1fr 380px;
        gap: 2rem;
    }
}

@media (max-width: 1024px) {
    body {
        overflow-y: auto !important;
        /* Allow scroll on tablets/mobiles */
        height: auto;
    }

    .container.optimized {
        padding-top: 2rem;
        align-items: flex-start;
    }

    .layout.single-focus,
    .layout.dual-focus {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .sticky-sidebar {
        position: static;
        width: 100%;
    }

    .collection-header.compact .main-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 70px;
        padding: 0 1.5rem;
    }

    /* .nav-links rule removed to fix mobile menu visibility */

    /* Basic mobile nav fix - stack or hide */
    .user-actions {
        gap: 1rem;
    }

    .collection-header.compact .main-title {
        font-size: 2.5rem;
    }

    .guardian-card.solo .image-card {
        height: 400px;
    }

    .guardian-card.mini-stack .image-card {
        height: 220px;
    }

    .top-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .discord-btn {
        width: 100%;
        order: 3;
    }

    .stat-badge {
        flex: 1;
    }

    /* Consolidated from previous FAQ block */
    .faq-title {
        font-size: 2rem;
    }

    .faq-question {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .collection-header.compact .main-title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .fairy-name {
        font-size: 2rem;
    }

    .guardian-card.mini-stack .fairy-name.small {
        font-size: 1.5rem;
    }

    .mint-tiers {
        width: 100%;
    }

    .tier-card {
        padding: 1.5rem;
    }

    .price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

.image-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: var(--bg-darker);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    transition: all 0.5s var(--ease-out-expo);
    border: 1px solid var(--glass-border);
}

.guardian-card:hover .image-card {
    transform: translateY(-8px) scale(1.01);
    border-color: var(--accent-gold);
    box-shadow: 0 30px 60px var(--accent-gold-glow);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.guardian-card:hover .hero-image {
    transform: scale(1.05);
}

.guardian-overlay {
    position: absolute;
    inset: 0;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 100%);
    transition: all 0.3s ease;
}

.fairy-name {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
}

.fairy-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    opacity: 0.9;
    font-style: italic;
    margin-top: 0.4rem;
}

.rebranded-description {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(251, 191, 36, 0.1);
    border-left: 5px solid var(--accent-gold);
    border-radius: 4px 24px 24px 4px;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #d1d5db;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.rebranded-description::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(251, 191, 36, 0.03) 100%);
    pointer-events: none;
}

/* Right Column */
.top-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

.stat-badge {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    padding: 0.85rem 1.5rem;
    border-radius: 16px;
    display: flex;
    gap: 0.75rem;
    align-items: center;
    font-size: 0.95rem;
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-speed) var(--ease-out-expo);
}

.stat-badge:hover {
    border-color: rgba(251, 191, 36, 0.3);
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.1);
}

.stat-badge .label {
    color: #9ca3af;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.stat-badge .value {
    color: var(--accent-gold);
    font-weight: 900;
    font-size: 1.1rem;
    text-shadow: 0 0 12px rgba(251, 191, 36, 0.25);
}



.uda-tag {
    background: linear-gradient(135deg, #2a2a2e 0%, #1a1a1a 100%);
    color: var(--accent-gold);
    border: 1px solid rgba(251, 191, 36, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.1);
    backdrop-filter: blur(8px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    user-select: none;
}

.uda-tag:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 0 25px rgba(251, 191, 36, 0.2);
    transform: translateY(-1px);
}

/* FAQ Section */
.faq-section {
    padding: 4rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.faq-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    color: var(--gold-primary);
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 4px 12px rgba(255, 184, 0, 0.3);
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    counter-reset: faq-counter;
}

.faq-demarcation {
    padding: 2rem 0 1rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    opacity: 0.8;
}

.faq-demarcation::before,
.faq-demarcation::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.3), transparent);
}

.faq-demarcation span {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    white-space: nowrap;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all var(--transition-speed) var(--ease-out-expo);
    counter-increment: faq-counter;
}

.faq-item:hover {
    border-color: rgba(255, 184, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.faq-item.active {
    border-color: var(--gold-primary);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--white);
    user-select: none;
}

.faq-question span {
    transition: color 0.3s ease;
}

.faq-question span::before {
    content: counter(faq-counter) ". ";
    color: var(--accent-gold);
    margin-right: 0.5rem;
    font-weight: 700;
}

.faq-item:hover .faq-question span {
    color: var(--gold-primary);
}

.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--gold-primary);
    transition: all 0.3s ease;
}

.faq-icon::before {
    width: 2px;
    height: 12px;
    left: 9px;
    top: 4px;
}

.faq-icon::after {
    width: 12px;
    height: 2px;
    left: 4px;
    top: 9px;
}

.faq-item.active .faq-icon {
    transform: rotate(135deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer-inner {
    padding: 0 1.5rem 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 1rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}







/* RGB21 Promo Card - Premium Design */
.rgb21-promo-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(10, 10, 25, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    margin-top: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.rgb21-promo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(251, 191, 36, 0.05);
    border-color: rgba(251, 191, 36, 0.3);
}

.rgb21-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.rgb21-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-transform: uppercase;
}

.rgb21-icon {
    color: var(--accent-gold);
    font-size: 1.1rem;
    filter: drop-shadow(0 0 5px rgba(251, 191, 36, 0.4));
}

.rgb21-body p {
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0.85rem;
    font-weight: 400;
}

.rgb21-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--accent-gold);
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 0.4rem 0;
}

.rgb21-link:hover {
    gap: 0.75rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}


/* Mint Tiers */
.mint-tiers {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Premium Glassmorphism Cards */
.tier-card {
    background: rgba(17, 17, 17, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.tier-card:hover {
    transform: translateY(-2px);
    background: rgba(17, 17, 17, 0.6);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
}

.tier-card.active {
    border-color: rgba(251, 191, 36, 0.5);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.08) 0%, rgba(20, 20, 20, 0.6) 100%);
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.15), inset 0 0 15px rgba(251, 191, 36, 0.05);
}

.tier-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(251, 191, 36, 0.2);
}


.tier-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.tier-title-group {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.tier-title {
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lock-icon {
    font-size: 0.8rem;
    opacity: 0.6;
}

.tier-status {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.35rem;
}

/* Premium Badge Refinement */
.status-active {
    display: inline-block;
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    background: #fbbf24;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    letter-spacing: 1px;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.6);
    border: none;
}

/* Price Row Refinement - High-End Aesthetic */
.mint-date {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Price Row Refinement - High-End Aesthetic */
.price-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
}

.countdown-timer {
    font-family: 'Outfit', sans-serif;
    /* or Monospace for stability */
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent-gold);
    background: rgba(251, 191, 36, 0.1);
    padding: 0.35rem 0.8rem;
    border-radius: 8px;
    border: 1px solid rgba(251, 191, 36, 0.2);
    min-width: 140px;
    text-align: center;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.1);
}

.countdown-timer.live {
    background: #10b981;
    color: #fff;
    border-color: #10b981;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

.btc-price {
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.usd-price {
    color: rgba(251, 191, 36, 0.9);
    font-size: 0.95rem;
    font-weight: 700;
    font-family: inherit;
    background: rgba(251, 191, 36, 0.12);
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    border: 1px solid rgba(251, 191, 36, 0.2);
    backdrop-filter: blur(4px);
}



/* Button Refinement */
.mint-btn {
    width: 100%;
    padding: 1.25rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.4rem;
    cursor: pointer;
    border: none;
    margin-top: 0;
}

.mint-btn.whitelist-btn {
    background: #ffffff;
    color: #000000;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.mint-btn.whitelist-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.mint-btn.highlighted {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dim) 100%);
    color: var(--bg-black);
    box-shadow: 0 4px 15px var(--accent-gold-glow);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-speed) var(--ease-out-expo);
}

.mint-btn.highlighted::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transition: 0.5s;
}

.mint-btn.highlighted:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--accent-gold-glow);
    filter: brightness(1.1);
}

.mint-btn.highlighted:hover::before {
    left: 100%;
}



/* Mobile Responsiveness & Deep Optimization */
@media (max-width: 768px) {
    .layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .container {
        padding: 0 1rem;
    }

    /* Reduce vertical whitespace */
    .hero-section {
        margin-top: 1rem;
    }

    .rebranded-description {
        margin-top: 1rem;
        padding: 1rem;
    }

    /* Compact Mint Section */
    .mint-section {
        margin-top: 0.5rem;
        padding: 0;
    }

    .stat-badge {
        padding: 0.5rem 0.75rem;
    }

    .stat-badge .label {
        font-size: 0.6rem;
    }

    .stat-badge .value {
        font-size: 1.1rem;
    }

    .uda-tag {
        font-size: 0.6rem;
        padding: 0.25rem 0.6rem;
    }

    .tier-card {
        padding: 1.25rem;
        border-radius: 16px;
    }

    .tier-title {
        font-size: 1rem;
    }

    .mint-date {
        font-size: 0.7rem;
    }

    .countdown-timer {
        font-size: 0.85rem;
        padding: 0.25rem 0.6rem;
        min-width: 120px;
    }

    .btc-price {
        font-size: 1.4rem;
    }

    .usd-price {
        font-size: 0.85rem;
        padding: 0.15rem 0.5rem;
    }

    .mint-btn {
        padding: 1rem;
        font-size: 1.2rem;
        border-radius: 16px;
    }



    /* Banner Compression */
    .feature-banner {
        padding: 3rem 1.25rem;
        margin-top: 3rem;
        margin-bottom: 3rem;
        gap: 1.5rem;
    }

    .feature-banner h2 {
        font-size: 2.25rem;
        letter-spacing: -1.5px;
    }

    .feature-banner-text {
        font-size: 1.1rem;
    }

    /* Floating UI Adjustments */
    .design-switcher {
        bottom: 1.5rem;
        right: 1rem;
        padding: 4px;
    }

    .design-switcher a {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .floating-mint-cta {
        display: none !important;
    }

    /* Typography */
    .text-big {
        font-size: 2.75rem;
    }

    .text-og {
        font-size: 2.25rem;
    }
}

/* Full Area Mode Refinements */
.full-area-mode .hero-image {
    object-fit: contain !important;
    background: #050505;
    padding: 2rem;
}

.full-area-mode .image-card {
    background: radial-gradient(circle at center, #111 0%, #000 100%);
    border: 1px solid rgba(251, 191, 36, 0.2);
}

/* Design Switcher - Pinned Bottom Right */
.design-switcher {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    padding: 6px;
    border-radius: 100px;
    border: 1px solid rgba(251, 191, 36, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(251, 191, 36, 0.05);
    z-index: 10001;
    /* Above floating CTA */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.design-switcher:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.4);
}

.design-switcher a {
    position: relative;
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--accent-gold);
    background: rgba(251, 191, 36, 0.03);
    border: 1px solid rgba(251, 191, 36, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Vertical Separator between links */
.design-switcher a+a {
    margin-left: 6px;
}

.design-switcher a+a::before {
    content: "";
    position: absolute;
    left: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background: rgba(251, 191, 36, 0.15);
}

.design-switcher a:hover {
    background: var(--accent-gold);
    color: #000;
    border-color: var(--accent-gold);
    box-shadow: 0 0 25px rgba(251, 191, 36, 0.4);
    transform: translateY(-3px) scale(1.05);
}

.design-switcher a:active {
    transform: translateY(-1px) scale(0.98);
}

/* Floating Mint CTA */
.floating-mint-cta {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    background: var(--accent-gold);
    color: #000;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.floating-mint-cta.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.floating-mint-cta:hover {
    transform: translateX(-50%) translateY(-5px) scale(1.05);
    background: #fcd34d;
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.5);
}

.floating-mint-cta::after {
    content: "→";
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.floating-mint-cta:hover::after {
    transform: translateX(5px);
}


/* Entrance Animations - Progressive Enhancement */
.reveal {
    transition: all 1s var(--ease-out-expo);
    will-change: transform, opacity;
}

/* Only hide initially if JS is confirmed working */
.js-enabled .reveal {
    opacity: 0;
    transform: translateY(40px);
}

.reveal.active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}


/* Enhanced Image Card Hover */
.image-card {
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.6s ease;
}

.image-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(251, 191, 36, 0.1);
}


.feature-banner {
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--card-bg) 50%, var(--bg-darker) 100%);
    color: var(--text-main);
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 8rem 10%;
    margin-top: 4rem;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6rem;
    box-shadow: inset 0 0 150px var(--accent-gold-glow);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
}

/* Cinematic Fade for Banner */
.feature-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.9) 0%,
            transparent 30%,
            transparent 70%,
            rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
    pointer-events: none;
}

.feature-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(251, 191, 36, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.feature-banner-content {
    flex: 1;
    z-index: 2;
    text-align: left;
}

.feature-banner h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 5.5rem;
    /* Reverted to original cinematic size */
    font-weight: 900;
    line-height: 0.9;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -4px;
    white-space: nowrap;
    color: var(--accent-gold);
    text-shadow: 0 0 50px rgba(251, 191, 36, 0.6), 0 10px 30px rgba(0, 0, 0, 0.8);
    z-index: 2;
}

.feature-banner-text {
    flex: 3;
    font-size: 1.35rem;
    line-height: 1.7;
    font-weight: 400;
    z-index: 2;
    color: var(--text-secondary);
    letter-spacing: 0.01em;
    opacity: 1;
    text-align: right;
}

.feature-banner-text strong {
    font-weight: 800;
    color: var(--accent-gold);
    border-bottom: 2px solid rgba(251, 191, 36, 0.3);
}

/* Visual separation between banner paragraphs */
.feature-banner-text p:first-child {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(251, 191, 36, 0.15);
}

.feature-banner-text p:last-child {
    opacity: 0.85;
    font-size: 1.15rem;
}

/* CTA line styling */
.feature-banner-cta {
    margin-top: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent-gold);
    opacity: 1 !important;
}

/* Mobile responsive for banner */
@media (max-width: 1024px) {
    .feature-banner {
        gap: 3rem;
        padding: 6rem 5%;
    }

    .feature-banner h2 {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .feature-banner {
        flex-direction: column;
        text-align: center;
        padding: 4rem 1.5rem;
        gap: 2.5rem;
    }

    .feature-banner-content,
    .feature-banner h2,
    .feature-banner-text {
        text-align: center;
    }

    .feature-banner h2 {
        font-size: 3rem;
        letter-spacing: -2px;
    }

    .feature-banner-text {
        font-size: 1.1rem;
    }
}

.design-switcher a::after {
    display: none !important;
    /* No underline for switcher */
}

.design-switcher a.active {
    background: #fbbf24;
    /* var(--accent-gold) */
    color: #000 !important;
}

.design-switcher a:not(.active):hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.1);
}

/* Success Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: var(--glass-blur);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-out-expo);
}

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

.modal-content {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 3.5rem 2.5rem;
    max-width: 480px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: all 0.6s var(--ease-out-expo);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.8), 0 0 50px var(--accent-gold-glow);
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.success-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: success-float 2s ease-in-out infinite;
}

@keyframes success-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.modal-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.8rem;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

.modal-text {
    font-size: 1rem;
    color: #999;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.minted-image-container {
    margin: 1.5rem 2rem;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(251, 191, 36, 0.3);
    background: #000;
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.1);
}

.minted-image {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.05);
}

.share-actions {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1rem;
}

.btn-share-x {
    background: #fff;
    color: #000;
    padding: 1.1rem 2rem;
    border-radius: 100px;
    font-weight: 900;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-share-x:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

.btn-close-modal {
    background: transparent;
    color: #555;
    border: none;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-close-modal:hover {
    color: #999;
    letter-spacing: 3px;
}

/* Confetti Effect */
.confetti {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    pointer-events: none;
    z-index: 10;
    animation: confetti-fall 2.5s ease-out forwards;
}

@keyframes confetti-fall {
    0% {
        transform: translate(0, 0) rotate(0);
        opacity: 1;
    }

    100% {
        transform: translate(var(--x, 52px), 400px) rotate(360deg);
        opacity: 0;
    }
}


/* WHY GOAT Section */
.why-goat-section {
    padding: 6rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.why-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-main);
    text-align: left;
    margin-bottom: 4rem;
    letter-spacing: -1px;
    text-transform: uppercase;
    background: linear-gradient(to right, var(--text-main), var(--accent-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.why-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    transition: transform var(--transition-speed) var(--ease-out-expo), background var(--transition-speed) ease;
}

.why-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
}

.why-number {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1;
}

.why-card-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.why-card-text {
    font-size: 1rem;
    color: #d1d5db;
    line-height: 1.6;
}

@media (max-width: 968px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .why-card {
        text-align: center;
    }
}

/* How to Mint Section */
.how-to-section {
    padding: 6rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.how-to-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-main);
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -1px;
    text-transform: capitalize;
    background: linear-gradient(to bottom, #fff, #fbbf24);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.how-to-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(251, 191, 36, 0.1);
    border-radius: 24px;
    padding: 3rem 2rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    height: 100%;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: rgba(251, 191, 36, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 20px rgba(251, 191, 36, 0.1);
}

.step-card:hover::before {
    opacity: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--accent-gold);
    color: var(--bg-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
}

.step-title {
    color: var(--text-main);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-text {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.6;
}

.step-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-text li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.step-text li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 800;
}

.step-text a {
    color: var(--accent-gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(251, 191, 36, 0.3);
    transition: all 0.3s ease;
}

.step-text a:hover {
    border-color: var(--accent-gold);
    text-shadow: 0 0 8px rgba(251, 191, 36, 0.4);
}

@media (max-width: 968px) {
    .how-to-grid {
        grid-template-columns: 1fr;
    }

    .how-to-title {
        font-size: 2.2rem;
    }
}

/* Global Premium FAQ Styling */
.faq-rich-content {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding: 0.5rem 0;
}

.faq-rich-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cbd5e1;
}

.faq-rich-content .highlight {
    color: var(--accent-gold);
    font-weight: 700;
}

.faq-rich-content ul {
    margin: 0.5rem 0 0 0.5rem;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.faq-rich-content li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.92rem;
    color: #94a3b8;
    line-height: 1.5;
}

.faq-rich-content li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 800;
}

.faq-rich-content .step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.faq-rich-content .step-num {
    background: var(--accent-gold);
    color: var(--bg-black);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.4);
}

.faq-rich-content a {
    color: var(--accent-gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(251, 191, 36, 0.3);
    transition: all 0.3s ease;
}

.faq-rich-content a:hover {
    border-color: var(--accent-gold);
    text-shadow: 0 0 8px rgba(251, 191, 36, 0.4);
}

.faq-rich-content .footer-note {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--accent-gold);
    opacity: 0.8;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1rem;
}

/* Technical Overview Specific Styles (Centralized) */
.technical-container {
    max-width: 900px;
    margin: 4rem auto;
    padding: 3rem;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.tech-header {
    text-align: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 2rem;
}

.tech-header h1,
.tech-title {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(to right, var(--accent-gold), var(--text-main));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.tech-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.tech-content {
    color: var(--text-secondary);
}

.tech-content h2 {
    font-size: 2.25rem;
    color: var(--accent-gold);
    margin-top: 4rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-gold);
    padding-left: 1.5rem;
}

.tech-content h3 {
    font-size: 1.75rem;
    color: var(--text-main);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.tech-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.tech-content ul,
.tech-content ol {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.tech-content li {
    margin-bottom: 0.75rem;
}

.tech-content li strong {
    color: var(--text-main);
}

.tech-table-wrapper {
    overflow-x: auto;
    margin: 3rem 0;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.4);
}

.tech-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
}

.tech-table th,
.tech-table td {
    text-align: left;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.tech-table th {
    background: rgba(251, 191, 36, 0.1);
    color: var(--accent-gold);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.tech-table tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.tech-table td:first-child {
    font-weight: 700;
    color: var(--text-main);
}

@media (max-width: 768px) {
    .technical-container {
        margin: 1.5rem 1rem;
        padding: 1.5rem;
        border-radius: 16px;
    }

    .tech-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .tech-header h1,
    .tech-title {
        font-size: 2.25rem;
        letter-spacing: -0.5px;
        line-height: 1.1;
    }

    .tech-subtitle {
        font-size: 1rem;
    }

    .tech-content h2 {
        font-size: 1.75rem;
        margin-top: 2.5rem;
        margin-bottom: 1.25rem;
        padding-left: 1rem;
    }

    .tech-content h3 {
        font-size: 1.4rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .tech-content p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .tech-table th,
    .tech-table td {
        padding: 1rem 0.75rem;
        font-size: 0.85rem;
    }

    .tech-table th {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {

    .tech-header h1,
    .tech-title {
        font-size: 1.85rem;
    }

    .tech-content h2 {
        font-size: 1.5rem;
    }

    .tech-content h3 {
        font-size: 1.25rem;
    }

    .tech-table th,
    .tech-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }
}

code {
    background: rgba(251, 191, 36, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    font-family: 'JetBrains Mono', monospace;
    color: var(--accent-gold);
    font-size: 0.9em;
    border: 1px solid rgba(251, 191, 36, 0.2);
}