/* ===== OPTION B: ANCIENT RED EMPIRE ===== */
/* Ancient Red dominant theme with aggressive roman-warrior aesthetic */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap');

/* ===== COLOR VARIABLES ===== */
:root {
    /* Primary Colors */
    --ancient-red: #7A1A1A;
    --ancient-red-dark: #8B0000;
    --imperial-black: #000000;
    --imperial-black-light: #0A0A0D;

    /* Secondary Colors */
    --burnt-bronze: #7C4A21;
    --white: #ffff;
    --roman-gold: #ffff;
    --dust-brown: #ffff;
    /* --roman-gold: #C7A45A; */

    /* Atmosphere Colors */
    --marble-white: #E6E1D5;
    /* --dust-brown: #C2A078; */
    --stone-gray: #6A6A6A;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Cinzel", serif;
    background-attachment: fixed;
    background-image: url(./images/bg-fix.png);
    background-size: cover;
    background-position: center;
    color: var(--marble-white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Black overlay on top of background image */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

/* LeviBrush for headings */
@font-face {
    font-family: 'LeviBrush';
    src: url('./Fonts/LEVIBRUSH.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Kaligraf for body text */
@font-face {
    font-family: 'Kaligraf';
    src: url('./Fonts/Kaligraf_Latin.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.heading-font {
    font-family: 'LeviBrush';
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
}

/* ===== NAVIGATION BAR - REBUILT ===== */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(10, 10, 13, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 2px solid rgba(122, 26, 26, 0.5);
    padding: 15px 0;
    overflow-x: clip;      /* ✅ Prevents horizontal scroll */
    overflow-y: visible;   /* ✅ Allows menu to show */
}

/* Show desktop navbar by default, hide mobile */
.navbar-desktop {
    display: block;
}

.navbar-mobile {
    display: none;
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Logo Section */
.nav-left {
    flex-shrink: 0;
}

.logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--ancient-red), var(--ancient-red-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.6);
    border: 2px solid var(--white);
}

/* Center Navigation Links */
.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--marble-white);
    text-decoration: none;
    padding: 10px 24px;
    border: 2px solid var(--ancient-red);
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    background: rgba(122, 26, 26, 0.1);
}

.nav-links a:hover {
    background: rgba(122, 26, 26, 0.3);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(122, 26, 26, 0.5);
}

/* Right Side: Buttons & Extras */
.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* ========== WHITEPAPER (OUTLINE) ========== */
.btn-whitepaper {
    position: relative;
    display: inline-block;
    padding: 10px 28px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    color: var(--white);
    border: 2px solid var(--white);
    clip-path: polygon(12% 0, 100% 0, 88% 100%, 0% 100%);
    background: transparent;
    overflow: hidden;
    transition: 0.25s ease;
}

.btn-whitepaper::before {
    content: "";
    position: absolute;
    inset: 3px;
    z-index: -1;
    clip-path: polygon(12% 0, 100% 0, 88% 100%, 0% 100%);
    background: rgba(122, 26, 26, 0.3);
    transform: scale(1);
    transition: 0.25s ease;
}

.btn-whitepaper:hover {
    transform: translateY(-2px);
    box-shadow: 0px 6px 18px rgba(139, 0, 0, 0.5);
    border-color: var(--ancient-red);
    color: var(--ancient-red);
}

/* ========== BUY NOW (FILLED CUT CORNERS) ========== */
.btn-buy-now {
    position: relative;
    display: inline-block;
    padding: 12px 32px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    color: var(--marble-white);
    clip-path: polygon(12% 0, 100% 0, 88% 100%, 0% 100%);
    background: var(--ancient-red);
    border: 2px solid var(--white);
    transition: 0.25s ease;
    overflow: hidden;
}

.btn-buy-now:hover {
    transform: translateY(-2px);
    box-shadow: 0px 6px 20px rgba(139, 0, 0, 0.8);
    background: var(--ancient-red-dark);
}

/* Nav Extras Container */
.nav-extras {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-nav-extras {
    display: flex;
    max-width: 100%;
    width: auto;
    justify-content: center;
    gap: 12px;
}

/* Language Button */
.lang-btn {
    background: rgba(122, 26, 26, 0.3);
    border: 2px solid var(--ancient-red);
    color: var(--marble-white);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: rgba(122, 26, 26, 0.5);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.telegram-icon {
    background: var(--ancient-red);
    color: var(--marble-white);
    border: 2px solid var(--white);
}

.telegram-icon:hover {
    background: var(--ancient-red-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.7);
}

.twitter-icon {
    background: var(--imperial-black);
    color: var(--marble-white);
    border: 2px solid var(--ancient-red);
}

.twitter-icon:hover {
    background: var(--ancient-red);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(122, 26, 26, 0.6);
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 99999;
    position: relative;
}

/* Mobile menu logo - HIDE ON DESKTOP */
.mobile-menu-logo {
    display: none;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger Animation when menu is open */
.hamburger-menu.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* ===== RESPONSIVE NAVBAR ===== */
@media (max-width: 1024px) {
    /* Hide desktop navbar, show mobile navbar */
    .navbar-desktop {
        display: none;
    }
    
    .navbar-mobile {
        display: block;
    }

    .navbar {
        z-index: 100000;
    }

    .nav-container {
        padding: 0 15px;
        gap: 15px;
    }

    .hamburger-menu {
        display: flex;
        order: 3;
    }

    .nav-center {
        position: fixed !important;
        display: flex !important;
        /* flex-direction: column; */
        top: 0 !important;
        right: -100% !important;
        left: auto !important;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        background: linear-gradient(180deg, rgba(10, 10, 13, 0.98) 0%, rgba(122, 26, 26, 0.95) 100%);
        backdrop-filter: blur(20px);
        padding: 20px;
        transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 99998;
        border-left: 3px solid #ffff;
        border-right: none;
        box-shadow: -8px 0 40px rgba(0, 0, 0, 0.9);
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        align-items: center;
        justify-content: center;
    }

    .mobile-nav-container {
        display: flex;
        flex-direction: column;
        height: 60vh;
        gap: 50px;
    }

    .nav-center.active {
        right: 0 !important;
        left: auto !important;
    }

    .mobile-menu-logo {
        display: flex;
        width: 60px;
        height: 60px;
        margin: 15px auto 20px;
        background: linear-gradient(135deg, #7A1A1A, #8B0000);
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        align-items: center;
        justify-content: center;
        border: 2px solid #ffff;
        box-shadow: 0 0 30px rgba(199, 164, 90, 0.6);
        padding: 8px;
        opacity: 0;
        transform: scale(0.5) rotate(-45deg);
        transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        flex-shrink: 0;
    }

    .nav-center.active .mobile-menu-logo {
        opacity: 1;
        transform: scale(1) rotate(0deg);
        transition-delay: 0.1s;
    }

    .mobile-menu-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .nav-center::after {
        content: '';
        position: absolute;
        left: 12px;
        top: 100px;
        bottom: 60px;
        width: 3px;
        background: linear-gradient(180deg, #ffff, transparent, #ffff);
    }

    .nav-links {
        flex-direction: column;
        width: 150%;
        gap: 12px;
        list-style: none;
        margin: 0;
        padding: 0 0 0 12px;
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .nav-links li {
        width: 130%;
        opacity: 0;
        transform: translateX(50px);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .nav-center.active .nav-links li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-center.active .nav-links li:nth-child(1) {
        transition-delay: 0.15s;
    }

    .nav-center.active .nav-links li:nth-child(2) {
        transition-delay: 0.25s;
    }

    .nav-center.active .nav-links li:nth-child(3) {
        transition-delay: 0.35s;
    }

    .nav-center.active .nav-links li:nth-child(4) {
        transition-delay: 0.45s;
    }

    .nav-center.active .nav-links li:nth-child(5) {
        transition-delay: 0.55s;
    }

    .nav-links a {
        display: block;
        width: 800px;
        text-align: center;
        padding: 14px 25px;
        font-size: 15px;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: var(--marble-white);
        text-decoration: none;
        background: rgba(122, 26, 26, 0.3);
        border: 2px solid var(--white);
        border-radius: 0;
        clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .nav-links a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 800px;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.5s ease;
    }

    .nav-links a:hover::before {
        left: 100%;
    }

    .nav-links a:hover {
        background: rgba(122, 26, 26, 0.6);
        border-color: var(--white);
        transform: translateX(5px);
    }

    /* Hide nav-right items on tablet/mobile */
    .nav-right {
        display: none;
    }

    /* Show hamburger */
    .nav-left {
        order: 1;
    }

    .hamburger-menu {
        order: 2;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
        gap: 10px;
    }

    .logo {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 10px;
    }

    .logo {
        width: 60px;
        height: 60px;
    }
}

/* ===== HERO SECTION ===== */
.hero-section {
    background-image: url(./images/home.gif);
    display: flex;
    background-size: cover;
    background-repeat: no-repeat;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 70px 0;
    max-width: 100%;
    width: auto;
}

.hero-section::before {
    content: '';
    background: radial-gradient(circle, rgba(0, 0, 0, 0.651) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero Left Content */
.hero-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.hero-badge {
    display: inline-block;
    width: fit-content;
    margin-top: 50px;
}

.hero-badge span {
    background: rgba(122, 26, 26, 0.3);
    border: 2px solid var(--ancient-red);
    color: var(--ancient-red);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.3);
}

.hero-heading {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
    color: var(--marble-white);
}

.gradient-text {
    background: linear-gradient(135deg, var(--ancient-red), var(--ancient-red-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--white);
    max-width: 100%;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin: 10px 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--ancient-red);
}

.stat-label {
    font-size: 14px;
    color: var(--stone-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.audit {
    display: flex;
    max-width: 100%;
    width: auto;
    justify-content: space-between;
}

.audit a {
    display: flex;
    width: 100%;
    justify-content: space-around;
    text-decoration: none;
    align-items: center;
    color: white;
    font-weight: bolder;
}

.hero-cta {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin-top: 10px;
}

.hero-cta a {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--ancient-red), var(--ancient-red-dark));
    color: var(--marble-white);
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(139, 0, 0, 0.4);
    border: 2px solid var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.7);
}

.btn-secondary {
    background: transparent;
    color: var(--marble-white);
    border: 2px solid var(--ancient-red);
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(122, 26, 26, 0.2);
    border-color: var(--white);
    transform: translateY(-3px);
}

:root {
    --holo-bg: rgba(12, 8, 10, 0.45);
    --holo-accent: #ff2d2d;
    --holo-accent-2: #ffc86b;
    --muted: #cfc7c2;
    --glass-border: rgba(200, 160, 90, 0.18);
    --neon: rgba(255, 45, 45, 0.18);
    --max-w: 360px;
    --radius: 22px;
}

/* Container */
.holo-presale {
    width: auto;
    align-items: flex-start;
    max-width: 100%;
    margin: 12px auto;
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 14px;
    background: linear-gradient(180deg, rgba(22, 10, 10, 0.55), rgba(10, 6, 6, 0.35));
    border-radius: calc(var(--radius) + 6px);
    border: 2px solid #ffff;
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.6),
        inset 0 0 28px rgba(255, 45, 45, 0.03);
    backdrop-filter: blur(10px) saturate(120%);
    position: relative;
    transform: scale(1);
    overflow: visible;
    font-family: "Cinzel", serif;
}

/* Hologram ring + logo */
.holo-ring {
    width: 160px;
    height: 160px;
    min-width: 86px;
    min-height: 86px;
    border-radius: 50%;
    margin: 10px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 35% 25%, rgba(255, 200, 120, 0.06), rgba(255, 45, 45, 0.02) 40%, transparent 60%);
    border: 1px solid var(--glass-border);
    box-shadow:
        0 12px 30px rgba(139, 0, 0, 0.18),
        0 2px 8px rgba(0, 0, 0, 0.6),
        inset 0 -6px 24px rgba(255, 45, 45, 0.03);
    position: relative;
    transform: translateY(-6px);
}

/* holographic outer ring glow */
.holo-ring::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: conic-gradient(from 120deg, rgba(255, 45, 45, 0.15), rgba(255, 200, 120, 0.12), rgba(255, 45, 45, 0.15));
    filter: blur(10px) saturate(140%);
    opacity: 0.9;
    z-index: 0;
}

/* logo image area */
.holo-logo {
    width: 95%;
    height: 95%;
    object-fit: contain;
    border-radius: 50%;
    z-index: 2;
    box-shadow:
        0 6px 18px rgba(255, 45, 45, 0.2),
        inset 0 1px 6px rgba(255, 255, 255, 0.04);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.05));
    padding: 6px;
}

/* Body */
.holo-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 3;
}

/* top row */
.holo-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.label {
    font-size: 20px;
}

.holo-top {
    font-size: 12px;
    font-weight: 800;
    color: var(--holo-accent);
    letter-spacing: 1px;
}

.live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--holo-accent), #ff8b8b);
    box-shadow: 0 0 12px rgba(255, 45, 45, 0.9), 0 0 24px rgba(255, 200, 120, 0.12);
}

/* price row */
.price-row {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    align-items: center;
}

.price-left,
.price-right {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.price-label {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.price-value {
    font-size: 20px;
    font-weight: 900;
    color: var(--holo-accent);
    text-shadow: 0 3px 16px rgba(255, 45, 45, 0.18);
}

/* next price */
.next-label {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
}

.next-value {
    font-weight: 900;
    color: var(--white);
    font-size: 15px;
}

/* progress */
.progress-wrap {
    width: 100%;
}

.progress-bg {
    width: 100%;
    height: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.06));
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid rgba(199, 164, 90, 0.14);
    box-shadow: inset 0 -4px 12px rgba(0, 0, 0, 0.25);
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, rgba(255, 45, 45, 0.95), rgba(140, 0, 0, 0.95));
    box-shadow: 0 6px 18px rgba(255, 45, 45, 0.24);
    transition: width 0.45s cubic-bezier(.2, .9, .2, 1);
}

/* progress meta */
.progress-meta {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--muted);
    margin-top: 6px;
}

/* Methods */
.pay-methods {
    display: flex;
    gap: 8px;
    align-items: center;
}

.pay-btn {
    flex: 1;
    min-width: 0;
    padding: 8px 6px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.02);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.06));
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: transform .14s ease, box-shadow .14s ease, background .14s ease;
}

.pay-btn.active {
    background: linear-gradient(180deg, rgba(255, 45, 45, 0.14), rgba(140, 0, 0, 0.12));
    box-shadow: 0 6px 18px rgba(255, 45, 45, 0.14);
    border: 1px solid rgba(255, 200, 120, 0.16);
    transform: translateY(-2px);
}

/* inputs */
.input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.ipt {
    display: block;
    position: relative;
    font-size: 12px;
}

.ipt-label {
    display: block;
    color: var(--muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.6px;
}

.ipt input {
    width: 100%;
    padding: 10px 12px;
    padding-right: 50px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.06));
    border-radius: 10px;
    border: 1px solid rgba(122, 26, 26, 0.14);
    color: #fff;
    font-weight: 800;
    font-size: 15px;
}

.ipt-cur {
    position: absolute;
    right: 10px;
    top: 36px;
    font-weight: 900;
    color: var(--white);
}

/* CTA */
.connect-btn {
    margin-top: 6px;
    width: 100%;
    padding: 10px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 45, 45, 0.9), rgba(160, 0, 0, 0.9));
    border: 2px solid rgba(255, 200, 120, 0.18);
    color: #fff;
    font-weight: 900;
    letter-spacing: 0.6px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 45, 45, 0.14);
    font-family: "Cinzel", serif;

}

/* ========================================
   PRESALE WIDGET ADDITIONS
   Add this to your styles.css file
   ======================================== */

/* ===== COUNTDOWN TIMER ===== */
.countdown-section {
    background: linear-gradient(135deg, rgba(122, 26, 26, 0.15), rgba(139, 0, 0, 0.1));
    border: 1px solid rgba(122, 26, 26, 0.3);
    border-radius: 8px;
    padding: 16px;
    margin: 20px 0;
    text-align: center;
}

.countdown-label {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold, #C7A45A);
    margin-bottom: 8px;
}

.countdown-timer {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--marble-white, #E6E1D5);
    text-shadow: 0 0 10px rgba(199, 164, 90, 0.3);
    letter-spacing: 2px;
}

/* ===== USER CONTRIBUTION SECTION ===== */
.user-contribution {
    background: linear-gradient(135deg, rgba(122, 26, 26, 0.2), rgba(139, 0, 0, 0.15));
    border: 1px solid rgba(122, 26, 26, 0.4);
    border-radius: 10px;
    padding: 16px;
    margin: 20px 0;
}

.contribution-header {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold, #C7A45A);
    margin-bottom: 12px;
    text-align: center;
}

.contribution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.contribution-item {
    background: rgba(10, 10, 13, 0.6);
    border: 1px solid rgba(122, 26, 26, 0.3);
    border-radius: 6px;
    padding: 10px;
    text-align: center;
}

.contribution-item-full {
    grid-column: 1 / -1;
}

.contribution-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(230, 225, 213, 0.7);
    margin-bottom: 4px;
}

.contribution-value {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--marble-white, #E6E1D5);
}

.contribution-value-big {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--gold, #C7A45A);
    text-shadow: 0 0 10px rgba(199, 164, 90, 0.3);
}

/* ===== PRICE ROW UPDATES ===== */
.price-row .next-label {
    font-size: 11px;
}

/* ===== MOBILE RESPONSIVENESS ===== */
@media (max-width: 768px) {
    .countdown-timer {
        font-size: 20px;
    }
    
    .contribution-grid {
        gap: 8px;
    }
    
    .contribution-value-big {
        font-size: 16px;
    }
}

/* ===== PHASE 0 SPECIFIC STYLES ===== */
.holo-presale[data-phase="0"] .countdown-section {
    border-color: rgba(199, 164, 90, 0.5);
    box-shadow: 0 0 20px rgba(199, 164, 90, 0.2);
}

.holo-presale[data-phase="0"] .countdown-timer {
    color: var(--gold, #C7A45A);
    font-size: 26px;
}

/* ===== BUTTON STATES ===== */
.connect-btn.connected {
    background: linear-gradient(135deg, #8B0000, #7A1A1A);
    border-color: rgba(199, 164, 90, 0.5);
}

.connect-btn.connected:hover {
    background: linear-gradient(135deg, #7A1A1A, #8B0000);
    box-shadow: 0 0 20px rgba(199, 164, 90, 0.3);
}

/* ===== DISABLED PAY BUTTONS ===== */
.pay-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pay-btn:disabled:hover {
    background: rgba(122, 26, 26, 0.15);
    transform: none;
}

/* ========================================
   BALANCE DISPLAY & MAX BUTTON CSS
   Add this to your existing CSS file
   ======================================== */

/* Balance Display */
.balance-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(199, 164, 90, 0.05);
    border: 1px solid rgba(199, 164, 90, 0.2);
    border-radius: 8px;
    margin-bottom: 16px;
    font-family: 'Cinzel', serif;
}

.balance-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.balance-amount {
    font-size: 15px;
    color: var(--gold, #C7A45A);
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

/* Input Wrapper for MAX button */
.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.input-wrapper input {
    width: 100%;
    padding-right: 100px; /* Make room for ETH + MAX button */
}

/* Position currency and MAX button inside input */
.input-wrapper .ipt-cur {
    position: absolute;
    right: 70px; /* Space for MAX button */
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* MAX Button */
.max-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, rgba(199, 164, 90, 0.2), rgba(199, 164, 90, 0.1));
    border: 1px solid rgba(199, 164, 90, 0.4);
    color: var(--gold, #C7A45A);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.max-btn:hover {
    background: linear-gradient(135deg, rgba(199, 164, 90, 0.3), rgba(199, 164, 90, 0.2));
    border-color: rgba(199, 164, 90, 0.6);
    transform: translateY(-50%) translateY(-1px);
    box-shadow: 0 4px 8px rgba(199, 164, 90, 0.2);
}

.max-btn:active {
    transform: translateY(-50%) translateY(0);
    box-shadow: 0 2px 4px rgba(199, 164, 90, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .balance-display {
        padding: 10px 14px;
    }
    
    .balance-label {
        font-size: 11px;
    }
    
    .balance-amount {
        font-size: 13px;
    }
    
    .max-btn {
        padding: 5px 12px;
        font-size: 10px;
    }
    
    .input-wrapper input {
        padding-right: 95px;
    }
    
    .input-wrapper .ipt-cur {
        right: 65px;
    }
}

/* Remove number input spinner arrows (up/down buttons) */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

/* Ensure input is always numeric-only */
.input-grid input[type="number"] {
    ime-mode: disabled;
}

/* note */
.note {
    font-size: 11px;
    color: var(--muted);
    opacity: 0.9;
    text-align: center;
    margin-top: 6px;
}

/* responsive: mobile stacks */
@media (max-width:420px) {
    .holo-presale {
        padding: 12px;
        gap: 10px;
        max-width: 340px;
    }

    .holo-ring {
        width: 72px;
        height: 72px;
        min-width: 72px;
        min-height: 72px;
        transform: translateY(-4px);
    }

    .input-grid {
        grid-template-columns: 1fr;
    }

    .price-value {
        font-size: 18px;
    }

    .next-value {
        font-size: 13px;
    }
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 2px solid var(--ancient-red);
    gap: 20px;
    padding: 20px 20px;
    border-radius: 40px;
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.3);
    background: radial-gradient(circle, rgba(122, 26, 26, 0.712) 0%, rgb(0, 0, 0) 60%);
    align-items: center;
}

.about-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-image {
    max-width: 90%;
    padding: 20px 70px;
    border-radius: 20px;
    object-fit: cover;
}

.about-image video {
    width: 100%;
    border-radius: 20px;
}

.about-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section-badge {
    margin-bottom: 10px;
    margin-top: 50px;
    display: inline-block;
    width: fit-content;
}

.section-badge span {
    background: rgba(122, 26, 26, 0.3);
    border: 2px solid var(--ancient-red);
    color: var(--ancient-red);
    padding: 8px 10px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.3);
}

.section-heading {
    font-size: 36px;
    margin-top: 30px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    color: var(--marble-white);
}

.section-description {
    font-size: 18px;
    color: var(--white);
    margin-top: 0px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-block h3 {
    font-size: 20px;
    color: var(--ancient-red);
    margin-bottom: 10px;
}

.about-block p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--white);
}

.about-cta {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

/* ===== TOKENOMICS SHIELD STYLES ===== */

/* Shield Container */
.shield-container {
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.shield-container img {
    width: 100%;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.742));

}
.tokenomics-shield {
    width: 100%;
    height: auto;
    display: block;
}

/* Shield Outline Animation */
.shield-outline {
    animation: shieldPulse 4s ease-in-out infinite;
}

@keyframes shieldPulse {

    0%,
    100% {
        filter: drop-shadow(0 0 10px rgba(199, 164, 90, 0.5));
    }

    50% {
        filter: drop-shadow(0 0 25px rgba(199, 164, 90, 0.8));
    }
}

/* Shield Sections */
.shield-section {
    transition: all 0.3s ease;
    cursor: pointer;
}

.section-path {
    transition: all 0.3s ease;
    stroke: rgba(199, 164, 90, 0.3);
    stroke-width: 1;
}

.shield-section:hover .section-path {
    opacity: 1 !important;
    stroke: #ffff;
    stroke-width: 2;
    filter: drop-shadow(0 0 15px rgba(199, 164, 90, 0.8));
}

/* Section Labels */
.section-label {
    fill: #E6E1D5;
    font-family: 'Cinzel', serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    pointer-events: none;
}

.shield-section:hover .section-label {
    fill: #FFFFFF;
}

/* Center EVN Text */
.center-text {
    font-family: 'LeviBrush', serif;
    text-shadow: 0 0 20px rgba(199, 164, 90, 0.8);
    animation: centerGlow 3s ease-in-out infinite;
}

@keyframes centerGlow {

    0%,
    100% {
        fill: #E6E1D5;
        filter: drop-shadow(0 0 5px rgba(199, 164, 90, 0.5));
    }

    50% {
        fill: #ffff;
        filter: drop-shadow(0 0 15px rgba(199, 164, 90, 1));
    }
}

/* Individual Section Animations */
.section-presale {
    animation: sectionFadeIn 0.6s ease-out 0.1s both;
}

.section-staking {
    animation: sectionFadeIn 0.6s ease-out 0.2s both;
}

.section-burn {
    animation: sectionFadeIn 0.6s ease-out 0.3s both;
}

.section-airdrops {
    animation: sectionFadeIn 0.6s ease-out 0.4s both;
}

.section-team {
    animation: sectionFadeIn 0.6s ease-out 0.5s both;
}

.section-liquidity {
    animation: sectionFadeIn 0.6s ease-out 0.6s both;
}

@keyframes sectionFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 0.9;
        transform: scale(1);
    }
}

/* Responsive Shield Styles */
@media (max-width: 1024px) {
    .shield-container {
        max-width: 400px;
    }

    .section-label tspan:first-child {
        font-size: 16px;
    }

    .section-label tspan:last-child {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .shield-container {
        max-width: 350px;
        margin: 30px auto;
    }

    .section-label tspan:first-child {
        font-size: 14px;
    }

    .section-label tspan:last-child {
        font-size: 18px;
    }

    .center-text {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .shield-container {
        max-width: 300px;
    }

    .section-label tspan:first-child {
        font-size: 12px;
    }

    .section-label tspan:last-child {
        font-size: 16px;
    }

    .center-text {
        font-size: 24px;
    }
}

/* Update existing tokenomics section to remove Chart.js dependencies */
.tokenomics-left {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Cinzel", serif;
    padding: 20px;
}

/* Remove old chart container styles if they exist */
#chartContainer {
    display: none;
}

#myChart {
    display: none;
}

/* Tooltip for shield sections (optional enhancement) */
.shield-tooltip {
    position: absolute;
    background: rgba(10, 10, 13, 0.95);
    border: 2px solid #ffff;
    border-radius: 10px;
    padding: 15px;
    color: #E6E1D5;
    font-family: 'Cinzel', serif;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1000;
    min-width: 200px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.8);
}

.shield-tooltip.active {
    opacity: 1;
}

.shield-tooltip h4 {
    color: #ffff;
    margin: 0 0 8px 0;
    font-size: 16px;
}

.shield-tooltip p {
    margin: 0;
    font-size: 14px;
    color: #ffff;
}

/* Interactive Effects */
.shield-section {
    transform-origin: center;
}

.shield-section:hover {
    animation: sectionHover 0.6s ease-in-out;
}

@keyframes sectionHover {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Glow effect on hover for each section */
.shield-section:hover .section-path.section-presale {
    filter: drop-shadow(0 0 20px #8B0000);
}

.shield-section:hover .section-path.section-staking {
    filter: drop-shadow(0 0 20px #7A1A1A);
}

.shield-section:hover .section-path.section-burn {
    filter: drop-shadow(0 0 20px #ffff);
}

.shield-section:hover .section-path.section-airdrops {
    filter: drop-shadow(0 0 20px #ffff);
}

.shield-section:hover .section-path.section-team {
    filter: drop-shadow(0 0 20px #7C4A21);
}

.shield-section:hover .section-path.section-liquidity {
    filter: drop-shadow(0 0 20px #6A6A6A);
}

/* Loading animation for shield */
@keyframes shieldReveal {
    from {
        opacity: 0;
        transform: scale(0.5) rotateY(180deg);
    }

    to {
        opacity: 1;
        transform: scale(1) rotateY(0deg);
    }
}

.tokenomics-shield {
    animation: shieldReveal 1s ease-out;
}

/* ===== TOKENOMICS SECTION ===== */
.tokenomics-section {
    padding: 0px 0;
    background:
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('./images/tokenomicx.png') no-repeat center center/cover;
    position: relative;
    background-size: 100% 99%;
    overflow: hidden;
    margin-bottom: 50px;
}

.tokenomics-title {
    font-size: 48px;
    margin-top: 50px;
    font-weight: 900;
    text-align: center;
    background: linear-gradient(135deg, var(--white), var(--ancient-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tokenomics-wrapper {
    max-width: 100%;
    margin: 0;
    border-radius: 25px;
    padding: 40px 20px 100px 20px;
    position: relative;
}

.tokenomics-wrapper::before {
    content: '';
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 25px;
    z-index: -1;
    opacity: 0.5;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px;
    align-items: center;
}

/* Left Side - Chart */
.tokenomics-left {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Cinzel", serif;
}

#chartContainer {
    width: 350px;
    height: 350px;
    margin: 0 0px;
    font-family: "Cinzel", serif;
}

.chart-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Cinzel", serif;
}

#tokenomicsChart {
    max-width: 100%;
    max-height: 100%;
    font-family: "Cinzel", serif;
}

/* Right Side - Distribution Bars */
.tokenomics-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.total-supply-header {
    text-align: center;
    padding: 20px;
    background: rgba(122, 26, 26, 0.2);
    border: 2px solid var(--ancient-red);
    border-radius: 15px;
    margin-bottom: 10px;
}

.total-supply-header h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--marble-white);
    margin: 0;
}

.distribution-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.distribution-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.distribution-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.distribution-label {
    display: flex;
    align-items: center;
    gap: 12px;
}

.color-dot {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    box-shadow: 0 0 10px currentColor;
}

.label-text {
    font-size: 17px;
    font-weight: 600;
    color: var(--marble-white);
}

.distribution-percentage {
    font-size: 20px;
    font-weight: 900;
    color: var(--marble-white);
    min-width: 50px;
    text-align: right;
}

.distribution-bar-bg {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(122, 26, 26, 0.3);
}

.distribution-bar {
    height: 100%;
    border-radius: 10px;
    transition: width 1.5s ease-in-out;
    box-shadow: 0 0 15px currentColor;
    animation: fillBar 1.5s ease-in-out;
}

@keyframes fillBar {
    from {
        width: 0 !important;
    }
}

/* ===== ROADMAP SECTION ===== */
.compact-roadmap {
    padding: 80px 20px;
    text-align: center;
}

.section-subheading {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 50px;
}

.roadmap-snake {
    position: relative;
    width: 90%;
    margin: 0 auto;
}

.roadmap-snake img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 20px #8B0000) drop-shadow(0 5px 15px rgba(0, 0, 0, 0.6));
}

.roadmap-video-section {
    width: 80%;
    max-width: 1200px;
    margin: 50px auto 0;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    padding: 5px;
    background: linear-gradient(135deg, var(--ancient-red), var(--white));
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.5), 0 0 60px rgba(199, 164, 90, 0.3);
    transition: transform 0.3s ease;
}

.roadmap-video-section:hover {
    transform: scale(1.02);
}

.video-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.roadmap-video-section video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.roadmap-video-section:hover video {
    transform: scale(1.05);
}

#music-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--ancient-red);
    color: var(--marble-white);
    border: 2px solid var(--white);
    font-size: 24px;
    cursor: pointer;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.6), 0 0 40px rgba(199, 164, 90, 0.3);
    transition: all 0.3s ease;
}

#music-toggle:hover {
    background: var(--white);
    color: var(--imperial-black);
    transform: scale(1.1);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
}

/* Phase positioning */
.phase {
    position: absolute;
    top: 50%;
    left: var(--pos);
    transform: translate(-50%, -50%);
}

.phase-dot {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--ancient-red), var(--ancient-red-dark));
    border: 2px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--marble-white);
    cursor: pointer;
    box-shadow: 0 0 20px var(--ancient-red), 0 0 35px var(--white);
    transition: transform 0.3s, box-shadow 0.3s;
}

.phase-dot:hover {
    transform: scale(1.5);
    box-shadow: 0 0 40px var(--ancient-red), 0 0 70px var(--white);
}

.phase:hover .phase-card {
    opacity: 1;
    pointer-events: auto;
    top: -140px;
}

.phase-card {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--imperial-black-light);
    border: 2px solid var(--ancient-red-dark);
    border-radius: 15px;
    padding: 15px 20px;
    min-width: 200px;
    max-width: 300px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    z-index: 2;
}

.phase-dot:hover+.phase-card {
    opacity: 1;
    pointer-events: auto;
    top: -140px;
}

.phase-card span {
    display: block;
    font-weight: 700;
    color: var(--ancient-red);
    margin-bottom: 5px;
}

.phase-card p {
    font-size: 14px;
    color: var(--white);
}

/* ===== HOW TO BUY SECTION ===== */
.how-to-buy-section {
    padding: 80px 0;
    background:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('images/slast.png') no-repeat center center/cover;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--ancient-red), transparent);
    z-index: 0;
}

.step-card {
    background: rgba(10, 10, 13, 0.7);
    border: 2px solid rgba(122, 26, 26, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--ancient-red);
    box-shadow: 0 15px 40px rgba(139, 0, 0, 0.5);
}

.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--ancient-red), var(--ancient-red-dark));
    border: 3px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    color: var(--marble-white);
    box-shadow: 0 5px 20px rgba(139, 0, 0, 0.6);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 10px auto 10px;
    background: rgba(122, 26, 26, 0.2);
    border: 2px solid var(--ancient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    background: var(--ancient-red);
    transform: scale(1.1);
}

.step-icon img {
    width: 70px;
    height: 70px;
    color: var(--ancient-red);
    transition: all 0.3s ease;
}

.step-card:hover .step-icon svg {
    color: var(--marble-white);
}

.step-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--ancient-red);
    transition: all 0.3s ease;
}

.step-card:hover h3 {
    color: var(--white);
}

.step-card p {
    font-size: 15px;
    color: var(--white);
    line-height: 1.7;
}

.buy-cta {
    text-align: center;
    margin-top: 60px;
}

.btn-primary-large {
    background: linear-gradient(135deg, var(--ancient-red), var(--ancient-red-dark));
    color: var(--marble-white);
    padding: 18px 50px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.5);
    border: 2px solid var(--white);
    display: inline-block;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.8);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 100px 0;
    position: relative;
    background:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('./images/last.png') no-repeat center center/cover;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
    align-items: start;
}

/* ===== LEFT: FAQ ACCORDION ===== */
.faq-left {
    display: flex;
    flex-direction: column;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(10, 10, 13, 0.9);
    border: 2px solid rgba(122, 26, 26, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--ancient-red);
    box-shadow: 0 5px 20px rgba(139, 0, 0, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: transparent;
    border: none;
    color: var(--marble-white);
    font-size: 22px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Cinzel", serif;
}

.faq-question:hover {
    color: var(--ancient-red);
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--ancient-red);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 25px;
    font-size: 16px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px 25px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--white);
    margin: 0;
    font-size: 18px !important;
}

/* ===== RIGHT: COMMUNITY CARD ===== */
.faq-right {
    position: sticky;
    top: 100px;
}

.community-card {
    background: rgba(10, 10, 13, 0.6);
    border: 2px solid rgba(122, 26, 26, 0.3);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(139, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.community-card:hover {
    border-color: var(--ancient-red);
    box-shadow: 0 15px 50px rgba(139, 0, 0, 0.4);
}

/* Community Header */
.community-header {
    text-align: center;
    margin-bottom: 0px;
}

.community-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--ancient-red), var(--ancient-red-dark));
    border: 3px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 20px rgba(139, 0, 0, 0.5);
}

.community-icon svg {
    width: 35px;
    height: 35px;
    color: var(--marble-white);
}

.community-header h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--marble-white);
    margin-bottom: 0px;
}

.community-header p {
    font-size: 15px;
    color: var(--white);
    line-height: 2;
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(122, 26, 26, 0);
    border: 2px solid rgba(122, 26, 26, 0.2);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--ancient-red);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.social-link:hover {
    background: rgba(122, 26, 26, 0.2);
    border-color: var(--ancient-red);
    transform: translateX(5px);
}

.social-link:hover::before {
    transform: scaleY(1);
}

.social-icon-wrapper {
    width: 45px;
    height: 45px;
    background: var(--ancient-red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.social-link:hover .social-icon-wrapper {
    background: linear-gradient(135deg, var(--ancient-red), var(--ancient-red-dark));
    transform: scale(1.1);
}

.social-icon-wrapper svg {
    width: 24px;
    height: 24px;
    color: var(--marble-white);
}

.social-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.social-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--marble-white);
}

.social-desc {
    font-size: 13px;
    color: var(--white);
}

.arrow-icon {
    width: 20px;
    height: 20px;
    color: var(--ancient-red);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.social-link:hover .arrow-icon {
    opacity: 1;
    transform: translateX(0);
}

/* Community Stats */
.community-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px 0;
    border-top: 1px solid rgba(122, 26, 26, 0.3);
    border-bottom: 1px solid rgba(122, 26, 26, 0.3);
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.stat-number {
    font-size: 28px;
    font-weight: 900;
    color: var(--ancient-red);
    text-shadow: 0 0 20px rgba(139, 0, 0, 0.5);
}

.stat-label {
    font-size: 13px;
    color: var(--stone-gray);
    text-align: center;
}

/* Community CTA */
.community-cta {
    text-align: center;
}

.community-cta p {
    font-size: 14px;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-join {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, var(--ancient-red), var(--ancient-red-dark));
    color: var(--marble-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 25px;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.4);
}

.btn-join:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.6);
}

.footer {
    position: relative;
    width: 100%;
    background: url('images/footer-bg.png') no-repeat center center;
    background-size: cover;
    padding: 10px 0px;
    margin-top: 50px;
    margin-bottom: -100px;
    color: #fff;
    text-align: center;
}

.footer-overlay {
    padding: 40px 20px;
}

.footer-logo img {
    width: 80px;
    border: solid 2px #ffff;
    border-radius: 50%;
    height: auto;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #fff;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #f00;
}

.footer-disclaimer p {
    font-size: 14px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== HAMBURGER MENU (MOBILE ONLY) ===== */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 99999;
    position: relative;
}

/* Mobile menu logo - HIDE ON DESKTOP */
.mobile-menu-logo {
    display: none;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger Animation when menu is open */
.hamburger-menu.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {

    body {
        overflow-x: hidden;
    }

    .navbar {
        z-index: 100000;

    }

    .hamburger-menu {
        display: flex;
        order: 3;
    }

    .nav-center {
        position: fixed !important;
        display: flex !important;
        flex-direction: column;
        top: 0 !important;
        right: -100% !important;
        left: auto !important;
        width: 85%;
        max-width: 380px;
        /* height: 100vh; */
        background: linear-gradient(180deg, rgba(10, 10, 13, 0.98) 0%, rgba(122, 26, 26, 0.95) 100%);
        backdrop-filter: blur(20px);
        padding: 20px;
        transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
        overflow: hidden;
        z-index: 99998;
        border-left: 3px solid #ffff;
        border-right: none;
        box-shadow: -8px 0 40px rgba(0, 0, 0, 0.9);
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        overflow: hidden;
    }

    .nav-center.active {
        right: 0 !important;
        left: auto !important;
    }

    .mobile-menu-logo {
        display: flex;
        width: 60px;
        height: 60px;
        margin: 15px auto 20px;
        background: linear-gradient(135deg, #7A1A1A, #8B0000);
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        align-items: center;
        justify-content: center;
        border: 2px solid #ffff;
        box-shadow: 0 0 30px rgba(199, 164, 90, 0.6);
        padding: 8px;
        opacity: 0;
        transform: scale(0.5) rotate(-45deg);
        transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        flex-shrink: 0;
    }

    .nav-center.active .mobile-menu-logo {
        opacity: 1;
        transform: scale(1) rotate(0deg);
        transition-delay: 0.1s;
    }

    .mobile-menu-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .nav-center::after {
        content: '';
        position: absolute;
        left: 12px;
        top: 100px;
        bottom: 60px;
        width: 3px;
        background: linear-gradient(180deg, #ffff, transparent, #ffff);
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        list-style: none;
        margin: 0;
        padding: 0 0 0 12px;
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .nav-links li {
        width: 100%;
        opacity: 0;
        transform: translateX(50px);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .nav-center.active .nav-links li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-center.active .nav-links li:nth-child(1) {
        transition-delay: 0.15s;
    }

    .nav-center.active .nav-links li:nth-child(2) {
        transition-delay: 0.25s;
    }

    .nav-center.active .nav-links li:nth-child(3) {
        transition-delay: 0.35s;
    }

    .nav-center.active .nav-links li:nth-child(4) {
        transition-delay: 0.45s;
    }

    .nav-center.active .nav-links li:nth-child(5) {
        transition-delay: 0.55s;
    }

    .nav-links a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 14px 25px;
        font-size: 15px;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: var(--marble-white);
        text-decoration: none;
        background: rgba(122, 26, 26, 0.3);
        border: 2px solid var(--white);
        border-radius: 0;
        clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .nav-links a::before {
        content: '';
        position: absolute;
        left: -100%;
        top: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(199, 164, 90, 0.4), transparent);
        transition: left 0.6s ease;
        z-index: 1;
    }

    .nav-links a:hover::before {
        left: 100%;
    }

    @keyframes mobile-glow-pulse {

        0%,
        100% {
            box-shadow: 0 0 30px rgba(199, 164, 90, 0.8), inset 0 0 20px rgba(199, 164, 90, 0.2);
        }

        50% {
            box-shadow: 0 0 40px rgba(199, 164, 90, 1), inset 0 0 25px rgba(199, 164, 90, 0.3);
        }
    }

    .nav-links a:hover {
        background: rgba(139, 0, 0, 0.7);
        border-color: var(--white);
        transform: scale(1.05) translateX(3px);
        letter-spacing: 2px;
        animation: mobile-glow-pulse 1.5s ease-in-out infinite;
    }

    .menu-footer {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        text-align: center;
        color: var(--white);
        font-size: 10px;
        letter-spacing: 2px;
        text-transform: uppercase;
        padding: 8px 15px;
        border-top: 2px solid var(--white);
        border-bottom: 2px solid var(--white);
        white-space: nowrap;
        margin-top: 15px;
        flex-shrink: 0;
    }

    body::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.85);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease;
        overflow-x: hidden;
        z-index: 99997;
    }

    body.menu-open::after {
        opacity: 1;
        pointer-events: all;
    }

    .nav-right {
        gap: 10px;
    }

    .btn-whitepaper,
    .btn-buy-now {
        display: none;
    }

    .social-icons {
        gap: 8px;
    }

    .social-icon {
        width: 38px;
        height: 38px;
    }

    .social-icon svg {
        width: 18px;
        height: 18px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .logo {
        width: 60px;
        height: 60px;
    }

    .holo-presale {
        display: block;
    }

    .hero-grid,
    .about-grid,
    .tokenomics-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-cta {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .hero-cta a {
        max-width: 300px;

    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .steps-container::before {
        display: none;
    }

    .about-cta {
        flex-direction: column;
        text-align: center;
    }
}
 
@media (max-width: 768px) {
    .roadmap-snake {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 20px 0;
        width: 100%;
        margin: 0 auto;
    }

    .roadmap-snake img {
        display: none;
    }

    .phase {
        position: relative;
        width: 100%;
        left: auto;
        top: auto;
        transform: none;
        display: flex;
        align-items: flex-start;
        gap: 15px;
        padding: 0 10px;
    }

    .phase-dot {
        width: 45px;
        height: 45px;
        font-size: 16px;
        position: relative;
        flex-shrink: 0;
        cursor: pointer;
    }

    .phase-card {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        opacity: 1;
        pointer-events: auto;
        min-width: auto;
        width: 100%;
        max-width: 100%;
        padding: 15px;
        background: rgba(10, 10, 13, 0.95);
        border: 2px solid var(--ancient-red);
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .phase-card span {
        font-size: 14px;
        font-weight: 700;
        display: block;
        margin-bottom: 8px;
    }

    .phase-card p {
        font-size: 13px;
        line-height: 1.5;
        color: var(--marble-white);
    }

    #music-toggle {
        bottom: 80px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 20px;
        z-index: 999999;
        position: fixed;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .phase {
        gap: 12px;
    }

    .phase-dot {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .phase-card {
        padding: 12px;
    }

    .phase-card span {
        font-size: 13px;
    }

    .phase-card p {
        font-size: 12px;
    }

    .phase-dot {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }

    #music-toggle {
        width: 45px;
        height: 45px;
        font-size: 18px;
        bottom: 70px;
        right: 10px;
    }
}


/* NEWS SECTION */
.news-section {
    padding: 50px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%230A0A0D"/></svg>');
    position: relative;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    margin-bottom: 10px;
}

.news-card {
    background: rgba(10, 10, 13, 0.8);
    border: 2px solid rgba(122, 26, 26, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.news-card:hover {
    transform: translateY(-10px);
    border-color: var(--ancient-red);
    box-shadow: 0 15px 40px rgba(139, 0, 0, 0.5);
}

.news-image {
    width: 100%;
    height: 100px;
    background: linear-gradient(135deg, rgba(122, 26, 26, 0.3), rgba(139, 0, 0, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.news-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 10px,
            rgba(122, 26, 26, 0.1) 10px,
            rgba(122, 26, 26, 0.1) 20px);
}

.coming-soon-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--ancient-red);
    color: var(--marble-white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    border: 2px solid var(--white);
    z-index: 2;
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.6);
}

.news-icon {
    font-size: 60px;
    color: rgba(199, 164, 90, 0.3);
    z-index: 1;
}

.news-content {
    padding: 10px;
}

.news-date {
    font-size: 12px;
    color: var(--roman-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.news-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--marble-white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.news-excerpt {
    font-size: 14px;
    color: var(--dust-brown);
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-link {
    color: var(--ancient-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.news-link:hover {
    color: var(--white);
    gap: 12px;
}

/* NFT SECTION */
.nft-section {
    padding: 50px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%237A1A1A" opacity="0.1"/></svg>');
    position: relative;
}

.nft-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 20px;
}

.nft-card {
    background: rgba(10, 10, 13, 0.9);
    border: 2px solid rgba(122, 26, 26, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.nft-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--roman-gold);
    box-shadow: 0 15px 40px rgba(199, 164, 90, 0.4);
}

.nft-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, rgba(122, 26, 26, 0.4), rgba(199, 164, 90, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.nft-image::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(199, 164, 90, 0.05) 2px,
            rgba(199, 164, 90, 0.05) 4px);
    animation: scan 8s linear infinite;
}

@keyframes scan {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0%);
    }
}

.nft-icon {
    font-size: 80px;
    color: rgba(199, 164, 90, 0.2);
    z-index: 1;
}

.nft-info {
    padding: 20px;
}

.nft-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--marble-white);
    margin-bottom: 8px;
}

.nft-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nft-rarity {
    font-size: 12px;
    color: var(--roman-gold);
    font-weight: 600;
}

.nft-status {
    font-size: 11px;
    color: var(--dust-brown);
    background: rgba(122, 26, 26, 0.2);
    padding: 4px 10px;
    border-radius: 12px;
}

/* COMING SOON OVERLAY */
.coming-soon-container {
    text-align: center;
    padding: 80px 20px;
    background: rgba(10, 10, 13, 0.6);
    border: 2px solid var(--ancient-red);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.coming-soon-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(199, 164, 90, 0.1),
            transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

.coming-soon-icon {
    font-size: 80px;
    color: var(--ancient-red);
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(139, 0, 0, 0.6);
}

.coming-soon-title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--white), var(--roman-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon-text {
    font-size: 18px;
    color: var(--dust-brown);
    max-width: 600px;
    margin: 0 auto 30px;
}

.notify-btn {
    background: linear-gradient(135deg, var(--ancient-red), var(--ancient-red-dark));
    color: var(--marble-white);
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(139, 0, 0, 0.4);
    border: 2px solid var(--white);
}

.notify-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.7);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nft-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .section-heading {
        font-size: 36px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .nft-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .section-heading {
        font-size: 28px;
    }

    .nft-grid {
        grid-template-columns: 1fr;
    }
}