/* ============================
        CSS VARIABLES
      ============================*/
:root {
    --bg: #070712;
    --bg-card: #0e0e1f;
    --gold: #f5c518;
    --gold2: #e8a000;
    --purple: #7b2fbe;
    --cyan: #00d4ff;
    --white: #ffffff;
    --gray: #7a8499;
    --border-g: rgba(245, 197, 24, 0.18);
    --border-c: rgba(0, 212, 255, 0.18);
    --green: #00c864;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    background: var(--bg);
    color: var(--white);
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}
::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background: var(--bg);
}
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

/* ============================
        UTILITY
      ============================*/
.gold-txt {
    background: linear-gradient(135deg, var(--gold), #ff9500, var(--gold));
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gshift 4s ease infinite;
}
.cyan-txt {
    color: var(--cyan);
}
@keyframes gshift {
    0% {
        background-position: 0%;
    }
    50% {
        background-position: 100%;
    }
    100% {
        background-position: 0%;
    }
}

.section-eye {
    display: inline-block;
    font-family: "Space Mono", monospace;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}
.section-title {
    font-family: "Orbitron", monospace;
    font-size: clamp(1.7rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 14px;
}
.section-desc {
    color: var(--gray);
    font-size: 0.92rem;
    line-height: 1.85;
    max-width: 600px;
}
.divider {
    width: 55px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: 2px;
    margin: 10px 0 36px;
}
.divider.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.btn-glow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: #000;
    font-weight: 700;
    font-family: "Orbitron", monospace;
    font-size: 0.72rem;
    letter-spacing: 1px;
    padding: 13px 28px;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 0 28px rgba(245, 197, 24, 0.35);
    cursor: pointer;
}
.btn-glow:hover {
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 0 55px rgba(245, 197, 24, 0.65);
}
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--cyan);
    font-weight: 600;
    font-family: "Orbitron", monospace;
    font-size: 0.72rem;
    letter-spacing: 1px;
    padding: 13px 28px;
    border-radius: 50px;
    border: 1px solid var(--cyan);
    text-decoration: none;
    transition: 0.3s;
    cursor: pointer;
}
.btn-ghost:hover {
    background: rgba(0, 212, 255, 0.1);
    color: var(--cyan);
    box-shadow: 0 0 28px rgba(0, 212, 255, 0.35);
    transform: translateY(-3px);
}

/* ============================
        NAVBAR
      ============================*/
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    padding: 14px 0;
    transition: 0.35s;
    background: rgba(7, 7, 18, 0.1);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}
.navbar.scrolled {
    background: rgba(7, 7, 18, 0.75);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-bottom: 1px solid var(--border-g);
    box-shadow: 0 0 40px rgba(245, 197, 24, 0.08);
}
.nb-brand {
    font-family: "Orbitron", monospace;
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 3px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
.moon-icon-nb {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 0 16px rgba(245, 197, 24, 0.4);
}
.nav-link {
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 0.86rem;
    font-weight: 500;
    padding: 8px 14px !important;
    transition: 0.3s;
    position: relative;
}
.nav-link::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: 0.3s;
    transform: translateX(-50%);
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
}
.nav-link:hover {
    color: var(--gold) !important;
}
.dropdown-menu {
    background: rgba(14, 14, 31, 0.97);
    border: 1px solid var(--border-g);
    backdrop-filter: blur(20px);
    border-radius: 14px;
    padding: 10px;
    min-width: 200px;
}
.dropdown-item {
    color: rgba(255, 255, 255, 0.78);
    border-radius: 9px;
    padding: 9px 16px;
    font-size: 0.83rem;
    transition: 0.3s;
}
.dropdown-item:hover {
    background: rgba(245, 197, 24, 0.12);
    color: var(--gold);
}
.btn-connect {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: #000 !important;
    font-weight: 700;
    font-family: "Orbitron", monospace;
    font-size: 0.72rem;
    letter-spacing: 1px;
    padding: 10px 22px;
    border-radius: 50px;
    border: none;
    transition: 0.3s;
    box-shadow: 0 0 22px rgba(245, 197, 24, 0.3);
    cursor: pointer;
}
.btn-connect:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 45px rgba(245, 197, 24, 0.6);
}
.navbar-toggler {
    border: 1px solid rgba(245, 197, 24, 0.4);
    padding: 6px 10px;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(245,197,24,0.85)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


.navbar .navbar-collapse {
    width: 100%;
}
@media (max-width: 991.98px) {
    .navbar {
        padding: 12px 0;
    }
    .navbar .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .navbar .navbar-collapse {
        background: rgba(7, 7, 18, 0.96);
        border: 1px solid var(--border-g);
        border-radius: 18px;
        margin-top: 12px;
        padding: 16px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
    }
    .navbar .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        width: 100%;
    }
    .navbar .nav-item {
        width: 100%;
    }
    .navbar .nav-link {
        display: block;
        padding: 10px 0 !important;
    }
    .navbar .dropdown-menu {
        position: static;
        width: 100%;
        margin-top: 6px;
    }
    .navbar .btn-connect {
        width: 100%;
        margin-top: 6px;
    }
}

/* ============================
        HERO
      ============================*/
#hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
}
#three-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}
.hero-wrap {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 197, 24, 0.08);
    border: 1px solid rgba(245, 197, 24, 0.28);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 0.72rem;
    color: var(--gold);
    font-family: "Space Mono", monospace;
    letter-spacing: 2px;
    margin-bottom: 22px;
    margin-top: 12px;
}
.pulse {
    width: 7px;
    height: 7px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(0.75);
    }
}

.hero-h1 {
    font-family: "Orbitron", monospace;
    font-size: clamp(2rem, 5.5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -1px;
    margin-bottom: 22px;
}
.hero-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    line-height: 1.85;
    margin-bottom: 34px;
}
.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* stats */
.hero-stats {
    display: flex;
    gap: 38px;
    flex-wrap: wrap;
}
.s-num {
    font-family: "Orbitron", monospace;
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--gold);
}
.s-lbl {
    font-size: 0.7rem;
    color: var(--gray);
    letter-spacing: 1px;
    margin-top: 2px;
}

/* node cards right */
.node-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.ncard {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(245, 197, 24, 0.14);
    border-radius: 18px;
    padding: 18px 22px;
    transition: 0.4s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
}
.ncard::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(245, 197, 24, 0.05), transparent);
    opacity: 0;
    transition: 0.4s;
}
.ncard:hover::before {
    opacity: 1;
}
.ncard:hover {
    border-color: var(--gold);
    transform: translateX(-7px);
    box-shadow: 0 0 38px rgba(245, 197, 24, 0.18);
}
.ncard.pop {
    border-color: var(--gold);
    background: rgba(245, 197, 24, 0.06);
}
.pop-badge {
    position: absolute;
    top: -1px;
    right: 14px;
    background: var(--gold);
    color: #000;
    font-size: 0.6rem;
    font-weight: 700;
    font-family: "Orbitron", monospace;
    padding: 3px 11px;
    border-radius: 0 0 8px 8px;
    letter-spacing: 1px;
}
.nc-lbl {
    font-size: 0.7rem;
    color: var(--gray);
    font-family: "Space Mono", monospace;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.nc-price {
    font-family: "Orbitron", monospace;
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}
.nc-price sup {
    font-size: 0.9rem;
}
.nc-price small {
    font-size: 0.78rem;
    color: var(--gray);
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}
.nc-tag {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

/* ============================
        ABOUT
      ============================*/
#about {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: transparent;
}
.glow-box {
    background: rgba(14, 14, 31, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-c);
    border-radius: 24px;
    padding: 38px;
    position: relative;
    overflow: hidden;
}
.glow-box::before {
    content: "";
    position: absolute;
    top: -60%;
    left: -60%;
    width: 220%;
    height: 220%;
    background: radial-gradient(
        circle,
        rgba(0, 212, 255, 0.04),
        transparent 65%
    );
    animation: rotatebg 12s linear infinite;
}
@keyframes rotatebg {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}
.icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 22px;
    position: relative;
    z-index: 1;
}
.ig-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 18px 10px;
    text-align: center;
    transition: 0.3s;
    cursor: pointer;
}
.ig-item:hover {
    border-color: var(--cyan);
    background: rgba(0, 212, 255, 0.05);
    transform: translateY(-4px);
}
.ig-item i {
    font-size: 1.3rem;
    color: var(--cyan);
    display: block;
    margin-bottom: 7px;
}
.ig-item span {
    font-size: 0.67rem;
    color: var(--gray);
    font-family: "Space Mono", monospace;
}
.supply-box {
    margin-top: 26px;
    padding: 16px;
    background: rgba(245, 197, 24, 0.05);
    border: 1px solid rgba(245, 197, 24, 0.18);
    border-radius: 14px;
    position: relative;
    z-index: 1;
}

/* features */
.feat-box {
    padding: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    transition: 0.3s;
    height: 100%;
}
.feat-box:hover {
    border-color: var(--gold);
    background: rgba(245, 197, 24, 0.04);
    transform: translateY(-4px);
}
.feat-box i {
    font-size: 1.15rem;
    display: block;
    margin-bottom: 8px;
}

/* ============================
        ECOSYSTEM
      ============================*/
#ecosystem {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: transparent;
}
.eco-card {
    background: rgba(14, 14, 31, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 22px;
    overflow: hidden;
    transition: 0.4s;
    height: 100%;
}
.eco-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 55px rgba(245, 197, 24, 0.13);
}
.eco-img {
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.8rem;
    transition: 0.4s;
    position: relative;
}
.eco-card:hover .eco-img {
    transform: scale(1.04);
}
.eco-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 50%,
        rgba(14, 14, 31, 1) 100%
    );
}
.eco-body {
    padding: 22px;
}
.eco-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 14px;
    box-shadow: 0 0 18px rgba(245, 197, 24, 0.28);
}
.eco-card h5 {
    font-family: "Orbitron", monospace;
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 7px;
}
.eco-card p {
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.72;
    margin: 0;
}
.eco-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 14px;
    text-decoration: none;
    transition: gap 0.3s;
}
.eco-card:hover .eco-link {
    gap: 11px;
}

/* ============================
        ROADMAP
      ============================*/
#roadmap {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: transparent;
}
.rm-wrap {
    position: relative;
    padding-left: 28px;
}
.rm-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
        to bottom,
        var(--gold),
        rgba(245, 197, 24, 0.08)
    );
}
.rm-item {
    position: relative;
    padding: 0 0 46px 38px;
}
.rm-item:last-child {
    padding-bottom: 0;
}
.rm-dot {
    position: absolute;
    left: -7px;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: var(--bg);
    z-index: 1;
    transition: 0.3s;
}
.rm-item:hover .rm-dot {
    background: var(--gold);
    box-shadow: 0 0 18px rgba(245, 197, 24, 0.6);
}
.rm-phase {
    font-family: "Space Mono", monospace;
    font-size: 0.68rem;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 7px;
}
.rm-card {
    background: rgba(14, 14, 31, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 24px;
    transition: 0.4s;
}
.rm-item:hover .rm-card {
    border-color: rgba(245, 197, 24, 0.28);
    box-shadow: 0 0 28px rgba(245, 197, 24, 0.07);
}
.rm-card h5 {
    font-family: "Orbitron", monospace;
    font-size: 0.88rem;
    margin-bottom: 10px;
}
.rm-card p {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.72;
    margin: 0;
}
.rbadge {
    display: inline-block;
    font-size: 0.62rem;
    padding: 3px 11px;
    border-radius: 20px;
    margin-bottom: 9px;
    font-family: "Space Mono", monospace;
    letter-spacing: 1px;
}
.bd {
    background: rgba(0, 200, 100, 0.12);
    color: #00c864;
    border: 1px solid rgba(0, 200, 100, 0.28);
}
.ba {
    background: rgba(245, 197, 24, 0.12);
    color: var(--gold);
    border: 1px solid rgba(245, 197, 24, 0.28);
}
.bu {
    background: rgba(123, 47, 190, 0.12);
    color: #b060ff;
    border: 1px solid rgba(123, 47, 190, 0.28);
}
.bf {
    background: rgba(0, 212, 255, 0.1);
    color: var(--cyan);
    border: 1px solid rgba(0, 212, 255, 0.25);
}

/* progress card */
.prog-card {
    background: rgba(245, 197, 24, 0.05);
    border: 1px solid rgba(245, 197, 24, 0.18);
    border-radius: 16px;
    padding: 22px;
}
.prog-bar-track {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    height: 7px;
    overflow: hidden;
    margin-top: 12px;
}
.prog-bar-fill {
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), #ff9500);
    border-radius: 4px;
    animation: growbar 1.5s ease forwards;
}
@keyframes growbar {
    from {
        width: 0;
    }
    to {
        width: 50%;
    }
}

/* ============================
        TOKENOMICS
      ============================*/
#tokenomics {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: transparent;
}

/* top stat strip */
.tk-stat-card {
    background: rgba(14, 14, 31, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 20px 16px;
    text-align: center;
    transition: 0.35s;
    height: 100%;
}
.tk-stat-card:hover {
    border-color: rgba(245, 197, 24, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(245, 197, 24, 0.1);
}
.tk-stat-card i {
    font-size: 1.15rem;
    color: var(--gold);
    margin-bottom: 9px;
    display: block;
}
.tk-stat-card .tsv {
    font-family: "Orbitron", monospace;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
}
.tk-stat-card .tsl {
    font-size: 0.66rem;
    color: var(--gray);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: "Space Mono", monospace;
    margin-top: 4px;
}

/* donut chart with orbit rings */
.chart-wrap {
    position: relative;
    max-width: 340px;
    margin: 30px auto;
    aspect-ratio: 1/1;
}
.chart-wrap::before,
.chart-wrap::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.chart-wrap::before {
    inset: -26px;
    border: 1px dashed rgba(245, 197, 24, 0.18);
    animation: spin 36s linear infinite;
}
.chart-wrap::after {
    inset: -50px;
    border: 1px dashed rgba(0, 212, 255, 0.12);
    animation: spin 50s linear infinite reverse;
}
@keyframes spin {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}
.chart-glow {
    position: absolute;
    inset: 8%;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(245, 197, 24, 0.16),
        transparent 70%
    );
    filter: blur(22px);
    pointer-events: none;
}
#tkChart {
    position: relative;
    z-index: 1;
}
.chart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(7, 7, 18, 0.92);
    width: 38%;
    height: 38%;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(245, 197, 24, 0.18);
    box-shadow: 0 0 32px rgba(245, 197, 24, 0.12);
    z-index: 2;
}
.chart-center .ct {
    font-family: "Orbitron", monospace;
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}
.chart-center .cl {
    font-size: 0.58rem;
    color: var(--gray);
    letter-spacing: 2px;
    margin-top: 5px;
    font-family: "Space Mono", monospace;
}

/* allocation cards */
.tk-card {
    background: rgba(14, 14, 31, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 18px 20px;
    transition: 0.35s;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.tk-card:hover {
    border-color: var(--tk-c, var(--gold));
    transform: translateY(-4px);
    box-shadow: 0 14px 34px -10px var(--tk-c, rgba(245, 197, 24, 0.4));
}
.tk-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 10px;
}
.tk-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #000;
    background: var(--tk-c, var(--gold));
    flex-shrink: 0;
    box-shadow: 0 0 16px -4px var(--tk-c, var(--gold));
}
.tk-pct {
    font-family: "Orbitron", monospace;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--tk-c, var(--gold));
    line-height: 1;
}
.tk-pct span {
    font-size: 0.65rem;
    opacity: 0.7;
}
.tk-name {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 500;
    margin-bottom: 12px;
}
.tk-bar-track {
    height: 6px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
}
.tk-bar-fill {
    height: 100%;
    border-radius: 4px;
    background: var(--tk-c, var(--gold));
    width: 0;
    transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.tk-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 9px;
}
.tk-val {
    font-family: "Space Mono", monospace;
    font-size: 0.68rem;
    color: var(--gray);
}

/* ============================
        PARTNERS MARQUEE
      ============================*/
#partners {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.marquee-outer {
    overflow: hidden;
    mask-image: linear-gradient(
        90deg,
        transparent,
        #000 14%,
        #000 86%,
        transparent
    );
}
.marquee-track {
    display: flex;
    gap: 36px;
    width: max-content;
    animation: marquee 24s linear infinite;
}
.marquee-track:hover {
    animation-play-state: paused;
}
@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
.p-chip {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 14px 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    opacity: 0.55;
    transition: 0.3s;
    filter: grayscale(100%);
}
.p-chip:hover {
    opacity: 1;
    filter: none;
    border-color: var(--gold);
}
.p-chip span {
    font-family: "Orbitron", monospace;
    color: var(--gray);
    font-size: 0.72rem;
    letter-spacing: 2px;
    white-space: nowrap;
}

/* ============================
        TEAM
      ============================*/
#team {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: transparent;
}
.t-card {
    background: rgba(14, 14, 31, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 22px;
    padding: 32px 22px 26px;
    text-align: center;
    transition: 0.4s;
    height: 100%;
}
.t-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 18px 55px rgba(245, 197, 24, 0.12);
}
.t-avatar {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 2rem;
    box-shadow: 0 0 22px rgba(245, 197, 24, 0.28);
}
.t-card h5 {
    font-family: "Orbitron", monospace;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.t-role {
    font-size: 0.7rem;
    color: var(--gold);
    font-family: "Space Mono", monospace;
    display: block;
    margin-bottom: 12px;
    letter-spacing: 1px;
}
.t-desc {
    font-size: 0.77rem;
    color: var(--gray);
    line-height: 1.65;
}
.t-soc {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
}
.t-soc a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 0.72rem;
    text-decoration: none;
    transition: 0.3s;
}
.t-soc a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(245, 197, 24, 0.1);
}

/* ============================
        FAQ
      ============================*/
#faq {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: transparent;
}
.faq-item {
    background: rgba(14, 14, 31, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 15px;
    margin-bottom: 11px;
    overflow: hidden;
    transition: border-color 0.3s;
}
.faq-item.open {
    border-color: rgba(245, 197, 24, 0.28);
}
.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    transition: color 0.3s;
}
.faq-q:hover,
.faq-item.open .faq-q {
    color: var(--gold);
}
.faq-ic {
    width: 27px;
    height: 27px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    color: var(--gold);
    transition: 0.3s;
}
.faq-item.open .faq-ic {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
    transform: rotate(45deg);
}
.faq-a {
    display: none;
    padding: 0 22px 18px;
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.82;
}
.faq-item.open .faq-a {
    display: block;
}

/* ============================
        FOOTER
      ============================*/
footer {
    background: rgba(4, 4, 14, 0.88);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(245, 197, 24, 0.1);
    padding: 65px 0 30px;
}
.ft-logo {
    font-family: "Orbitron", monospace;
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 3px;
}
.ft-desc {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.82;
    margin: 15px 0 22px;
}
.ft-soc {
    display: flex;
    gap: 11px;
}
.ft-soc a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    text-decoration: none;
    transition: 0.3s;
}
.ft-soc a:hover {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 14px rgba(245, 197, 24, 0.3);
}
.ft-h {
    font-family: "Orbitron", monospace;
    font-size: 0.78rem;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 18px;
}
.ft-links {
    list-style: none;
    padding: 0;
}
.ft-links li {
    margin-bottom: 9px;
}
.ft-links a {
    font-size: 0.82rem;
    color: var(--gray);
    text-decoration: none;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.ft-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}
.ft-bottom {
    margin-top: 48px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}
.ft-bottom p,
.ft-bottom a {
    font-size: 0.78rem;
    color: var(--gray);
    text-decoration: none;
    margin: 0;
    transition: color 0.3s;
}
.ft-bottom a:hover {
    color: var(--gold);
}
.ft-bl {
    display: flex;
    gap: 18px;
}

/* email input */
.email-row {
    display: flex;
    gap: 8px;
    margin-top: 2px;
}
.email-row input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 10px 18px;
    color: #fff;
    font-size: 0.8rem;
    outline: none;
    transition: border-color 0.3s;
}
.email-row input:focus {
    border-color: var(--gold);
}

/* BG orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.14;
    pointer-events: none;
    z-index: 0;
}


/* Default (xs) */
.orb1 {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, var(--purple), transparent);
    top: -70px;
    left: -80px;
}

.orb2 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, var(--gold), transparent);
    bottom: -60px;
    right: -60px;
}

/* sm ≥576px */
@media (min-width: 576px) {
    .orb1 {
        width: 280px;
        height: 280px;
    }

    .orb2 {
        width: 220px;
        height: 220px;
        right: 0px !important;
    }
}

/* md ≥768px */
@media (min-width: 768px) {
    .orb1 {
        width: 350px;
        height: 350px;
    }

    .orb2 {
        width: 280px;
        height: 300px;
    }
}

/* lg ≥992px */
@media (min-width: 992px) {
    .orb1 {
        width: 420px;
        height: 420px;
    }

    .orb2 {
        width: 320px;
        height: 350px;
    }
}

/* xl ≥1200px */
@media (min-width: 1200px) {
    .orb1 {
        width: 500px;
        height: 500px;
    }

    .orb2 {
        width: 350px;
        height: 400px;
    }
}

/* xxl ≥1400px (optional) */
@media (min-width: 1400px) {
    .orb1 {
        width: 550px;
        height: 550px;
    }

    .orb2 {
        width: 400px;
        height: 450px;
    }
}



.z1 {
    position: relative;
    z-index: 1;
}

.mt-120 {
    margin-top: 120px;
}

/* RESPONSIVE */

img,
video {
    max-width: 100%;
    height: auto;
}
@media (max-width: 991px) {
    .hero-wrap {
        text-align: center;
    }
    .hero-sub,
    .hero-btns,
    .hero-stats {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }
    .hero-sub {
        max-width: 100%;
    }
    .hero-h1 {
        font-size: 2.2rem;
    }
    .node-stack {
        margin-top: 40px;
    }
}
@media (max-width: 767px) {
    section {
        padding: 70px 0;
    }
    .ncard {
        padding: 14px 16px;
    }
    .nc-price {
        font-size: 1.5rem;
    }
    .icon-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 425px) {
    .mt-120 {
        margin-top: 64px;
    }
}

.pulse-green {
    background: var(--green);
}

/* ══ HERO — ACTIVE ROUND SECTION ══ */
#round-hero {
    min-height: 100vh;
    padding-top: 110px;
    padding-bottom: 60px;
    position: relative;
    display: flex;
    align-items: center;
}

/* ── MEDIA PLAYER ── */
.media-player-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-g);
    box-shadow:
        0 0 70px rgba(245, 197, 24, 0.15),
        0 30px 80px rgba(0, 0, 0, 0.5);
    aspect-ratio: 16/9;
}
.media-player-wrap::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    background: linear-gradient(
        135deg,
        var(--gold),
        transparent 40%,
        var(--cyan),
        transparent 80%,
        var(--purple)
    );
    z-index: -1;
    opacity: 0.4;
}
.round-visual {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
}
.rv-bg {
    position: absolute;
    inset: 0;
    transition: background 0.7s ease;
}
.rv-stars {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.rv-star {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    animation: twinkle 2s ease-in-out infinite;
}
@keyframes twinkle {
    0%,
    100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}
.rv-content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.rv-emoji {
    font-size: clamp(4rem, 8vw, 7rem);
    line-height: 1;
    animation: floatEmoji 4s ease-in-out infinite;
    filter: drop-shadow(0 0 50px rgba(245, 197, 24, 0.7));
}
@keyframes floatEmoji {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-22px) scale(1.06);
    }
}
.rv-round-label {
    font-family: "Space Mono", monospace;
    font-size: 0.62rem;
    letter-spacing: 5px;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    margin-top: 16px;
}
.rv-round-name {
    font-family: "Orbitron", monospace;
    font-size: clamp(1.1rem, 2.5vw, 1.8rem);
    font-weight: 900;
    margin-top: 5px;
}
.rv-rings {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.rv-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    animation: ringPulse 3s ease-in-out infinite;
}
.rv-ring:nth-child(1) {
    width: 180px;
    height: 180px;
    animation-delay: 0s;
}
.rv-ring:nth-child(2) {
    width: 280px;
    height: 280px;
    animation-delay: 0.9s;
}
.rv-ring:nth-child(3) {
    width: 380px;
    height: 380px;
    animation-delay: 1.8s;
}
@keyframes ringPulse {
    0%,
    100% {
        transform: scale(0.95);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.55;
    }
}
.media-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(7, 7, 18, 0.85);
    border: 1px solid var(--border-g);
    border-radius: 50px;
    padding: 5px 14px;
    font-family: "Space Mono", monospace;
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: var(--gold);
    backdrop-filter: blur(10px);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 6px;
}
.media-badge-right {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(0, 200, 100, 0.13);
    border: 1px solid rgba(0, 200, 100, 0.3);
    border-radius: 50px;
    padding: 5px 14px;
    font-family: "Space Mono", monospace;
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: var(--green);
    backdrop-filter: blur(10px);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 5px;
}
.media-round-num {
    position: absolute;
    bottom: 14px;
    right: 14px;
    font-family: "Orbitron", monospace;
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(7, 7, 18, 0.7);
    border-radius: 8px;
    padding: 5px 12px;
    backdrop-filter: blur(8px);
    z-index: 5;
    letter-spacing: 2px;
}
#roundVideo,
#roundImg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 3;
    display: none;
    border-radius: 24px;
}

/* ── ROUND COMPLETE OVERLAY ── */
.rco {
    position: absolute;
    inset: 0;
    background: rgba(7, 7, 18, 0.94);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 20;
    border-radius: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s;
}
.rco.show {
    opacity: 1;
    pointer-events: all;
}
.rco-icon {
    font-size: 4rem;
    animation: bounceDot 0.6s ease-in-out infinite alternate;
}
@keyframes bounceDot {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-14px);
    }
}
.rco-title {
    font-family: "Orbitron", monospace;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold);
    margin-top: 16px;
    letter-spacing: 2px;
}
.rco-sub {
    color: var(--gray);
    font-size: 0.82rem;
    margin-top: 7px;
}
.rco-cnt {
    font-family: "Orbitron", monospace;
    font-size: 3rem;
    font-weight: 900;
    color: var(--cyan);
    margin-top: 8px;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
}
.rco-next {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
    font-family: "Space Mono", monospace;
    letter-spacing: 1px;
}

/* ══ ROUND INFO CARD ══ */
.round-info-card {
    background: rgba(14, 14, 31, 0.72);
    backdrop-filter: blur(22px);
    border: 1px solid var(--border-g);
    border-radius: 24px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    height: 100%;
}
.round-info-card::before {
    content: "";
    position: absolute;
    top: -60%;
    right: -60%;
    width: 220%;
    height: 220%;
    background: radial-gradient(
        circle,
        rgba(245, 197, 24, 0.04),
        transparent 65%
    );
    animation: rotatebg 12s linear infinite;
}
@keyframes rotatebg {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}
.round-num-label {
    font-family: "Space Mono", monospace;
    font-size: 0.6rem;
    letter-spacing: 4px;
    color: var(--gray);
    text-transform: uppercase;
    margin-bottom: 4px;
}
.round-name-big {
    font-family: "Orbitron", monospace;
    font-size: clamp(1.3rem, 2.8vw, 2rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 9px;
}
.round-desc-txt {
    color: var(--gray);
    font-size: 0.8rem;
    line-height: 1.75;
    margin-bottom: 20px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}
.sg-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 13px 14px;
    text-align: center;
    transition: 0.3s;
}
.sg-box:hover {
    border-color: rgba(245, 197, 24, 0.3);
    background: rgba(245, 197, 24, 0.04);
}
.sg-val {
    font-family: "Orbitron", monospace;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}
.sg-val.cyan {
    color: var(--cyan);
}
.sg-lbl {
    font-size: 0.6rem;
    color: var(--gray);
    font-family: "Space Mono", monospace;
    letter-spacing: 1px;
    margin-top: 4px;
    text-transform: uppercase;
}
.prog-section {
    margin-bottom: 18px;
}
.prog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 7px;
}
.prog-label {
    font-family: "Space Mono", monospace;
    font-size: 0.62rem;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
}
.prog-pct {
    font-family: "Orbitron", monospace;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--white);
}
.prog-track {
    background: rgba(255, 255, 255, 0.07);
    border-radius: 6px;
    height: 10px;
    overflow: hidden;
}
.prog-fill {
    height: 100%;
    border-radius: 6px;
    background: linear-gradient(90deg, var(--gold), #ff9500);
    transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}
.prog-fill::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.28),
        transparent
    );
    animation: shimmer 2s infinite;
}
@keyframes shimmer {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(100%);
    }
}
.prog-sub {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
}
.prog-sub span {
    font-size: 0.65rem;
    color: var(--gray);
    font-family: "Space Mono", monospace;
}
.prog-rem {
    color: var(--cyan) !important;
}
.buy-box {
    background: rgba(245, 197, 24, 0.05);
    border: 1px solid rgba(245, 197, 24, 0.14);
    border-radius: 16px;
    padding: 18px;
}
.qty-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 13px;
    flex-wrap: wrap;
}
.qty-lbl {
    font-size: 0.72rem;
    color: var(--gray);
    font-family: "Space Mono", monospace;
    letter-spacing: 1px;
}
.qty-ctrl {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 50px;
    padding: 4px 10px;
}
.qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(245, 197, 24, 0.3);
    background: transparent;
    color: var(--gold);
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.qty-btn:hover {
    background: rgba(245, 197, 24, 0.15);
    border-color: var(--gold);
}
.qty-num {
    font-family: "Orbitron", monospace;
    font-size: 1rem;
    font-weight: 700;
    min-width: 28px;
    text-align: center;
}
.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}
.total-lbl {
    font-size: 0.73rem;
    color: var(--gray);
}
.total-val {
    font-family: "Orbitron", monospace;
    font-size: 1.45rem;
    font-weight: 900;
    color: var(--gold);
}
.btn-buy {
    width: 100%;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: #000;
    font-weight: 900;
    font-family: "Orbitron", monospace;
    font-size: 0.8rem;
    letter-spacing: 2px;
    padding: 15px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 30px rgba(245, 197, 24, 0.35);
    text-transform: uppercase;
}
.btn-buy:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 60px rgba(245, 197, 24, 0.65);
}
.btn-buy:active {
    transform: translateY(0);
}
.btn-buy:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}
.secure-note {
    text-align: center;
    margin-top: 9px;
    font-size: 0.63rem;
    color: var(--gray);
    font-family: "Space Mono", monospace;
    letter-spacing: 0.5px;
}

/* ══ ROUND TIMELINE ══ */
#round-timeline {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.rounds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 14px;
    margin-top: 36px;
}
.round-tile {
    background: rgba(14, 14, 31, 0.55);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 20px 15px;
    cursor: pointer;
    transition: 0.35s;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.round-tile:hover {
    border-color: rgba(245, 197, 24, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(245, 197, 24, 0.1);
}
.round-tile.active {
    border-color: var(--gold);
    background: rgba(245, 197, 24, 0.07);
    box-shadow: 0 0 35px rgba(245, 197, 24, 0.2);
}
.round-tile.active::before,
.round-tile.completed::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
}
.round-tile.active::before {
    background: linear-gradient(90deg, var(--gold), var(--gold2));
}
.round-tile.completed {
    border-color: rgba(0, 200, 100, 0.35);
    background: rgba(0, 200, 100, 0.05);
}
.round-tile.completed::before {
    background: var(--green);
}
.round-tile.upcoming {
    opacity: 0.5;
    cursor: default;
}
.round-tile.upcoming:hover {
    transform: none;
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.06);
}
.rt-emoji {
    font-size: 2.3rem;
    margin-bottom: 8px;
    display: block;
}
.rt-num {
    font-family: "Space Mono", monospace;
    font-size: 0.58rem;
    letter-spacing: 2px;
    color: var(--gray);
    text-transform: uppercase;
    margin-bottom: 3px;
}
.rt-name {
    font-family: "Orbitron", monospace;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.3;
}
.rt-price {
    font-family: "Orbitron", monospace;
    font-size: 1rem;
    font-weight: 800;
    color: var(--gold);
}
.rt-supply {
    font-size: 0.6rem;
    color: var(--gray);
    margin-top: 3px;
}
.rt-mini-bar {
    background: rgba(255, 255, 255, 0.07);
    border-radius: 3px;
    height: 4px;
    overflow: hidden;
    margin: 10px 0 8px;
}
.rt-mini-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--gold), #ff9500);
    transition: width 1s ease;
}
.rt-mini-fill.green-bar {
    background: var(--green);
}
.rt-status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.57rem;
    font-family: "Space Mono", monospace;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}
.rt-status.st-live {
    background: rgba(245, 197, 24, 0.14);
    border: 1px solid rgba(245, 197, 24, 0.3);
    color: var(--gold);
}
.rt-status.st-done {
    background: rgba(0, 200, 100, 0.12);
    border: 1px solid rgba(0, 200, 100, 0.28);
    color: var(--green);
}
.rt-status.st-soon {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    color: var(--gray);
}

/* ══ BENEFITS ══ */
#node-benefits {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.benefit-card {
    background: rgba(14, 14, 31, 0.55);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 22px;
    padding: 30px 22px;
    text-align: center;
    transition: 0.4s;
    height: 100%;
}
.benefit-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(245, 197, 24, 0.12);
}
.benefit-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 18px;
    box-shadow: 0 0 22px rgba(245, 197, 24, 0.3);
}
.benefit-card h5 {
    font-family: "Orbitron", monospace;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 9px;
}
.benefit-card p {
    font-size: 0.78rem;
    color: var(--gray);
    line-height: 1.72;
    margin: 0;
}

/* ══ TOAST ══ */
.toast-notif {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: rgba(14, 14, 31, 0.97);
    border: 1px solid var(--gold);
    border-radius: 16px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    transform: translateY(110px);
    opacity: 0;
    transition: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(245, 197, 24, 0.12);
    max-width: 300px;
    min-width: 240px;
}
.toast-notif.show {
    transform: translateY(0);
    opacity: 1;
}
.toast-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}
.toast-msg {
    font-size: 0.8rem;
    color: var(--white);
}
.toast-msg strong {
    color: var(--gold);
    display: block;
    margin-bottom: 2px;
    font-family: "Orbitron", monospace;
    font-size: 0.68rem;
    letter-spacing: 1px;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    .rounds-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    #round-hero {
        padding-top: 100px;
    }
}
@media (max-width: 767px) {
    .rounds-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 500px) {
    .rounds-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .toast-notif {
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: none;
    }
}
