@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Rajdhani:wght@400;500;600;700&display=swap');

:root {
    --bg: #07070a;
    --bg2: #0d0d14;
    --purple: #bf5af2;
    --blue: #0a84ff;
    --gold: #f5c842;
    --green: #30d158;
    --red: #ff453a;
    --cyan: #00e5ff;
    --surf: rgba(255, 255, 255, .03);
    --surf2: rgba(255, 255, 255, .06);
    --border: rgba(255, 255, 255, .07);
    --border2: rgba(255, 255, 255, .14);
    --txt: #fff;
    --dim: rgba(255, 255, 255, .55);
    --dimmer: rgba(255, 255, 255, .3);
    --glass: blur(24px);
    --transition: all .5s cubic-bezier(.16, 1, .3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased
}

html {
    scroll-behavior: smooth
}

body {
    background: var(--bg);
    color: var(--txt);
    font-family: 'Rajdhani', sans-serif;
    overflow-x: hidden
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse 80% 50% at 80% 20%, rgba(191, 90, 242, .07) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 20% 80%, rgba(10, 132, 255, .06) 0%, transparent 60%);
}

::-webkit-scrollbar {
    width: 5px
}

::-webkit-scrollbar-track {
    background: var(--bg)
}

::-webkit-scrollbar-thumb {
    background: var(--purple);
    border-radius: 3px
}

/* ── LOADER ── */
#loader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity .7s ease, visibility .7s
}

#loader.out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none
}

.ld-logo {
    font-family: 'Press Start 2P', monospace;
    font-size: 1.1rem;
    color: var(--purple);
    text-shadow: 0 0 24px rgba(191, 90, 242, .9), 0 0 60px rgba(191, 90, 242, .4);
    margin-bottom: 28px;
    letter-spacing: 2px;
    animation: ldpulse 1.4s ease-in-out infinite
}

@keyframes ldpulse {

    0%,
    100% {
        opacity: .7;
        transform: scale(.97)
    }

    50% {
        opacity: 1;
        transform: scale(1)
    }
}

.ld-track {
    width: 220px;
    height: 4px;
    background: rgba(255, 255, 255, .08);
    border-radius: 2px;
    overflow: hidden
}

.ld-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--purple), var(--blue));
    border-radius: 2px;
    animation: ldfill 1.3s ease forwards
}

@keyframes ldfill {
    to {
        width: 100%
    }
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 22px 0;
    transition: var(--transition)
}

nav.scrolled {
    padding: 13px 0;
    background: rgba(7, 7, 10, .88);
    backdrop-filter: var(--glass);
    border-bottom: 1px solid var(--border)
}

.nav-wrap {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.logo {
    font-family: 'Press Start 2P', monospace;
    font-size: .75rem;
    text-decoration: none;
    background: linear-gradient(135deg, #fff 0%, var(--purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none
}

.nav-links a {
    color: var(--dim);
    text-decoration: none;
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color .3s;
    position: relative
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--txt)
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--purple);
    transition: width .35s ease
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%
}

.nav-cart {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 22px;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--txt);
    text-decoration: none;
    font-weight: 600;
    font-size: .9rem;
    transition: var(--transition);
    background: var(--surf);
    position: relative
}

.nav-cart:hover {
    border-color: var(--purple);
    background: rgba(191, 90, 242, .1)
}

.cart-badge {
    position: absolute;
    top: -7px;
    right: -7px;
    background: var(--purple);
    color: #fff;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    font-size: .6rem;
    display: none;
    align-items: center;
    justify-content: center
}

.cart-icon {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

/* ── HERO ── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden
}

#voxel-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background-image: linear-gradient(rgba(191, 90, 242, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(191, 90, 242, .025) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 60% 80% at 30% 50%, black, transparent)
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 48px;
    width: 100%
}

.hero-eyebrow {
    font-family: 'Press Start 2P', monospace;
    font-size: .48rem;
    color: var(--purple);
    letter-spacing: 5px;
    margin-bottom: 22px;
    opacity: 0;
}

.hero-h1 {
    font-size: clamp(3.8rem, 8.5vw, 7rem);
    font-weight: 700;
    line-height: .92;
    letter-spacing: -2px;
    max-width: 680px;
    opacity: 0;
}

.hero-h1 em {
    display: block;
    font-style: normal;
    background: linear-gradient(130deg, var(--purple), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.hero-sub {
    max-width: 480px;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--dim);
    line-height: 1.75;
    margin: 26px 0 42px;
    opacity: 0;
}

.hero-btns {
    display: flex;
    gap: 14px;
    opacity: 0;
}

.btn-pri {
    background: linear-gradient(135deg, var(--purple), var(--blue));
    color: #fff;
    padding: 15px 38px;
    border-radius: 7px;
    border: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 24px rgba(191, 90, 242, .35)
}

.btn-pri:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(191, 90, 242, .55)
}

.btn-ghost {
    color: var(--txt);
    padding: 14px 38px;
    border-radius: 7px;
    border: 1px solid var(--border2);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    background: var(--surf)
}

.btn-ghost:hover {
    border-color: var(--purple);
    background: rgba(191, 90, 242, .08)
}

/* Server status pill */
.hero-status {
    position: absolute;
    bottom: 44px;
    left: 0;
    right: 0;
    z-index: 3;
    opacity: 0;
    display: flex;
    justify-content: center;
    padding: 0 24px;
    box-sizing: border-box;
}

.status-pill {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    padding: 14px 26px;
    background: rgba(7, 7, 10, .85);
    border: 1px solid var(--border);
    border-radius: 12px;
    backdrop-filter: var(--glass);
    width: auto;
    max-width: 100%;
}

.s-item {
    display: flex;
    flex-direction: column;
}

.s-lbl {
    font-size: .6rem;
    color: var(--dimmer);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 4px
}

.s-val {
    font-family: 'Press Start 2P', monospace;
    font-size: .65rem;
    color: var(--txt)
}

.s-val.online {
    color: var(--green)
}

.s-val.offline {
    color: var(--red)
}

.s-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 10px var(--green);
    animation: sdot 2s ease infinite;
    position: relative;
    top: 0px;
    left: -20px;
}

.s-dot.offline {
    background: var(--red);
    box-shadow: 0 0 10px var(--red);
    animation: none
}

@keyframes sdot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1
    }

    50% {
        transform: scale(1.6);
        opacity: .7
    }
}

.s-div {
    width: 1px;
    height: 36px;
    background: var(--border)
}

.copy-btn {
    background: rgba(191, 90, 242, .14);
    border: 1px solid rgba(191, 90, 242, .3);
    color: var(--purple);
    padding: 8px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Rajdhani', sans-serif;
    font-size: .85rem;
    font-weight: 600;
    transition: var(--transition)
}

.copy-btn:hover {
    background: rgba(191, 90, 242, .28)
}

.copy-btn.copied {
    background: rgba(48, 209, 88, .14);
    border-color: rgba(48, 209, 88, .4);
    color: var(--green)
}

/* ── RANK LADDER ── */
.rank-section {
    padding: 130px 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(191, 90, 242, .05) 0%, transparent 70%)
}

.section-head {
    text-align: center;
    margin-bottom: 80px
}

.s-tag {
    font-family: 'Press Start 2P', monospace;
    font-size: .48rem;
    color: var(--purple);
    letter-spacing: 4px;
    display: block;
    margin-bottom: 16px
}

.s-title {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 14px
}

.s-sub {
    color: var(--dim);
    font-size: 1.1rem;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7
}

.ladder-wrap {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px
}

.spine {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(to top, rgba(158, 158, 158, .15) 0%, rgba(245, 200, 66, .5) 100%);
    overflow: hidden
}

.spine-flow {
    position: absolute;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, transparent, rgba(245, 200, 66, .7), transparent);
    animation: spineflow 2.2s linear infinite
}

@keyframes spineflow {
    0% {
        top: 110%
    }

    100% {
        top: -60%
    }
}

.rank-row {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    align-items: center;
    gap: 0;
    padding: 14px 0;
    position: relative
}

.rank-info {
    padding: 16px 24px 16px 0;
    text-align: right
}

.rank-info-r {
    padding: 16px 0 16px 24px;
    text-align: left
}

.rk-name {
    font-family: 'Press Start 2P', monospace;
    font-size: .56rem;
    margin-bottom: 6px;
    display: block
}

.rk-perks {
    color: var(--dim);
    font-size: .9rem;
    line-height: 1.5
}

.rk-price {
    font-size: 1.6rem;
    font-weight: 700;
    display: block;
    margin-bottom: 6px
}

.rk-buy {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 5px;
    border: 1px solid;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition);
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase
}

.rank-node-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column
}

.rk-node {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    transition: transform .3s, box-shadow .3s;
    cursor: pointer;
    flex-shrink: 0
}

.rank-row:hover .rk-node {
    transform: scale(1.5)
}

/* Per-rank color theming */
.r-death .rk-name,
.r-death .rk-price {
    color: var(--red)
}

.r-death .rk-node {
    background: var(--red);
    box-shadow: 0 0 18px rgba(245, 200, 66, .9), 0 0 40px rgba(245, 66, 66, 0.4)
}

.r-death .rk-buy {
    border-color: var(--red);
    color: var(--red);
    background: rgba(245, 66, 66, 0.07)
}

.r-death .rk-buy:hover {
    background: rgba(84, 8, 8, 0.2)
}

.r-legend .rk-name,
.r-legend .rk-price {
    color: var(--blue)
}

.r-legend .rk-node {
    background: var(--blue);
    box-shadow: 0 0 15px rgba(90, 110, 242, 0.9), 0 0 32px rgba(47, 59, 160, 0.4)
}

.r-legend .rk-buy {
    border-color: var(--blue);
    color: var(--blue);
    background: rgba(53, 59, 178, 0.07)
}

.r-legend .rk-buy:hover {
    background: rgba(95, 90, 242, 0.2)
}

.r-elite .rk-name,
.r-elite .rk-price {
    color: var(--gold)
}

.r-elite .rk-node {
    background: var(--gold);
    box-shadow: 0 0 13px rgba(255, 230, 10, 0.9), 0 0 28px rgb(255, 218, 10)
}

.r-elite .rk-buy {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(255, 235, 10, 0.07)
}

.r-elite .rk-buy:hover {
    background: rgba(255, 230, 10, 0.2)
}

.r-mvpp .rk-name,
.r-mvpp .rk-price {
    color: var(--purple)
}

.r-mvpp .rk-node {
    background: var(--purple);
    box-shadow: 0 0 12px rgba(187, 0, 255, 0.8), 0 0 24px rgba(167, 13, 198, 0.532)
}

.r-mvpp .rk-buy {
    border-color: var(--purple);
    color: var(--purple);
    background: rgba(0, 229, 255, .05)
}

.r-mvpp .rk-buy:hover {
    background: rgba(129, 10, 172, 0.15)
}

.r-mvp .rk-name,
.r-mvp .rk-price {
    color: #29b6f6
}

.r-mvp .rk-node {
    background: #29b6f6;
    box-shadow: 0 0 10px rgba(41, 182, 246, .7)
}

.r-mvp .rk-buy {
    border-color: #29b6f6;
    color: #29b6f6;
    background: rgba(41, 182, 246, .05)
}

.r-mvp .rk-buy:hover {
    background: rgba(41, 182, 246, .15)
}

.r-vipp .rk-name,
.r-vipp .rk-price {
    color: #66bb6a
}

.r-vipp .rk-node {
    background: #66bb6a;
    box-shadow: 0 0 9px rgba(102, 187, 106, .7)
}

.r-vipp .rk-buy {
    border-color: #66bb6a;
    color: #66bb6a;
    background: rgba(102, 187, 106, .05)
}

.r-vipp .rk-buy:hover {
    background: rgba(102, 187, 106, .15)
}

.r-vip .rk-name,
.r-vip .rk-price {
    color: #21ce0ee1
}

.r-vip .rk-node {
    background: #21bc06;
    box-shadow: 0 0 7px rgba(158, 158, 158, .6)
}

.r-vip .rk-buy {
    border-color: #36c412;
    color: #0cc770;
    background: rgba(22, 139, 9, 0.05)
}

.r-vip .rk-buy:hover {
    background: rgba(158, 158, 158, .15)
}

/* ── FEATURES ── */
.features-section {
    padding: 120px 0
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 48px
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 60px
}

.feat-card {
    padding: 34px 28px;
    background: var(--surf);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: var(--transition);
    position: relative;
    overflow: hidden
}

.feat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(191, 90, 242, .05), transparent 60%);
    pointer-events: none
}

/* ── STORE COMPONENTS ── */
.filter-btn {
    background: var(--surf);
    border: 1px solid var(--border);
    color: var(--dim);
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    text-align: left;
    display: flex;
    align-items: center;
    gap: 12px;
}

.filter-btn:hover {
    border-color: var(--purple);
    color: var(--txt);
    background: var(--surf2);
}

.filter-btn.active-filter {
    background: var(--purple);
    color: #fff;
    border-color: var(--purple);
    box-shadow: 0 4px 15px rgba(191, 90, 242, 0.3);
}

.store-search {
    background: var(--surf2);
    border: 1px solid var(--border);
    color: var(--txt);
    padding: 14px 24px;
    border-radius: 12px;
    width: 100%;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.store-search:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(191, 90, 242, 0.1);
}

.feat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--purple), transparent);
    opacity: 0;
    transition: opacity .4s;
}

.feat-card:hover {
    border-color: rgba(191, 90, 242, .3);
    transform: translateY(-5px)
}

.feat-card:hover::before,
.feat-card:hover::after {
    opacity: 1
}

.feat-ico {
    width: 44px;
    height: 44px;
    background: rgba(191, 90, 242, .12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px
}

.feat-ico svg {
    width: 22px;
    height: 22px;
    stroke: var(--purple);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.feat-card:nth-child(even) .feat-ico {
    background: rgba(10, 132, 255, .12)
}

.feat-card:nth-child(even) .feat-ico svg {
    stroke: var(--blue)
}

.feat-title {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase
}

.feat-desc {
    font-size: .95rem;
    color: var(--dim);
    line-height: 1.65
}

/* ── STATS ── */
.stats-section {
    padding: 100px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border)
}

.stat-item {
    background: var(--bg);
    padding: 70px 40px;
    text-align: center
}

.stat-num {
    font-size: clamp(3rem, 5.5vw, 5rem);
    font-weight: 700;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #fff, var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block
}

.stat-lbl {
    font-size: .75rem;
    color: var(--dimmer);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 10px;
    display: block
}

/* ── NETWORK ── */
.network-section {
    padding: 120px 0
}

.net-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.net-image {
    height: 360px;
    background: url('../img/Banner_sai.png') center/contain no-repeat;
    border-radius: 20px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden
}

.net-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7, 7, 10, .7) 0%, transparent 60%)
}

/* ── CTA ── */
.cta-section {
    padding: 120px 0;
    text-align: center;
    position: relative
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(10, 132, 255, .07) 0%, transparent 70%)
}

.cta-h {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 18px
}

.cta-sub {
    color: var(--dim);
    font-size: 1.1rem;
    margin-bottom: 40px
}

/* ── FOOTER ── */
footer {
    padding: 48px 0;
    border-top: 1px solid var(--border)
}

.foot-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.foot-links {
    display: flex;
    gap: 28px
}

.foot-links a {
    color: var(--dimmer);
    text-decoration: none;
    font-size: .9rem;
    transition: color .3s
}

.foot-links a:hover {
    color: var(--txt)
}

.foot-copy {
    color: var(--dimmer);
    font-size: .85rem
}

/* Reveal scroll */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s, transform .8s
}

.reveal.in {
    opacity: 1;
    transform: translateY(0)
}

.reveal-d1 {
    transition-delay: .1s
}

.reveal-d2 {
    transition-delay: .2s
}

.reveal-d3 {
    transition-delay: .3s
}

.reveal-d4 {
    transition-delay: .4s
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(32px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* ── PURCHASE LOADER ── */
.loader-inline {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin-inline 0.8s linear infinite;
    margin-right: 10px;
    vertical-align: middle;
}

@keyframes spin-inline {
    to {
        transform: rotate(360deg);
    }
}

/* ── OWNER ABOUT SECTION STYLES ── */
.about-owner-section {
    padding: 80px 0;
    /* Uses your existing background color variable */
    background: var(--bg);
}

.about-owner-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-owner-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-owner-intro {
    color: var(--dim);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-top: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-owner-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.owner-block {
    background: var(--surf2);
    border: 1px solid var(--border2);
    padding: 40px;
    border-radius: 12px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.owner-block:hover {
    border-color: var(--purple);
    transform: translateY(-5px);
}

.owner-block h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.owner-icon {
    font-size: 1.8rem;
}

.owner-block p {
    color: var(--dim);
    line-height: 1.7;
    font-size: 1.05rem;
}

.owner-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.owner-list li {
    color: var(--dim);
    line-height: 1.6;
    font-size: 1.05rem;
    padding-left: 18px;
    border-left: 3px solid var(--purple);
}

.owner-list li strong {
    color: #fff;
}

.owner-join-block {
    /* Slight purple glow matching your theme */
    background: radial-gradient(circle at center, rgba(191, 90, 242, 0.12) 0%, var(--surf2) 100%);
    border: 1px solid rgba(191, 90, 242, 0.4);
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 20px;
}

.owner-join-block h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #fff;
}

.owner-join-block p {
    color: var(--dim);
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.owner-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.owner-link-item {
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 14px 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: border-color 0.3s ease;
}

.owner-link-item:hover {
    border-color: var(--purple);
}

.owner-link-item .label {
    color: var(--dim);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.owner-link-item .val {
    color: var(--purple);
    font-weight: 700;
    font-size: 1.05rem;
}

.owner-link-item .link {
    text-decoration: none;
    transition: color 0.2s ease;
}

.owner-link-item .link:hover {
    color: #fff;
}

/* Make it responsive for mobile */
@media (max-width: 768px) {
    .owner-block {
        padding: 25px;
    }

    .owner-join-block {
        padding: 30px 20px;
    }

    .owner-links {
        flex-direction: column;
    }
}

/* ══════════════════════════════════════════
   MICRO-ANIMATIONS & CARD ENHANCEMENTS
══════════════════════════════════════════ */
.feat-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feat-card:hover {
    transform: scale(1.03) translateY(-4px);
    box-shadow: 0 12px 40px rgba(191, 90, 242, 0.18), 0 0 0 1px rgba(191, 90, 242, 0.15);
}

.btn-pri {
    position: relative;
    overflow: hidden;
}

.btn-pri::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.btn-pri:hover::after {
    opacity: 1;
}

.btn-pri:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 40px rgba(191, 90, 242, 0.6);
}

.rk-buy {
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.rk-buy:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 20px rgba(191, 90, 242, 0.3);
}

/* ══════════════════════════════════════════
   STORE RANK CARD BADGES (POPULAR / BEST VALUE)
══════════════════════════════════════════ */
.store-card-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
}

.store-card-wrap .feat-card {
    flex: 1;
}

.rank-badge {
    position: absolute;
    top: -1px;
    right: 16px;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.38rem;
    letter-spacing: 1.5px;
    padding: 5px 10px;
    border-radius: 0 0 8px 8px;
    z-index: 5;
    text-transform: uppercase;
}

.rank-badge.popular {
    background: linear-gradient(135deg, #ff6b35, #ff453a);
    color: #fff;
    box-shadow: 0 4px 16px rgba(255, 69, 58, 0.5);
    animation: badgepulse 2s ease-in-out infinite;
}

.rank-badge.best-value {
    background: linear-gradient(135deg, var(--gold), #ff9500);
    color: #000;
    box-shadow: 0 4px 16px rgba(245, 200, 66, 0.5);
}

.rank-badge.new-rank {
    background: linear-gradient(135deg, var(--green), #00c851);
    color: #fff;
    box-shadow: 0 4px 16px rgba(48, 209, 88, 0.5);
}

@keyframes badgepulse {

    0%,
    100% {
        box-shadow: 0 4px 16px rgba(255, 69, 58, 0.5);
    }

    50% {
        box-shadow: 0 4px 28px rgba(255, 69, 58, 0.9);
    }
}

.rank-features-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 12px 0 16px;
}

.rank-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--dim);
}

.rank-feature-item::before {
    content: '✔';
    color: var(--green);
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════
   TRUST BADGES (Checkout)
══════════════════════════════════════════ */
.trust-badges {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 14px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--dim);
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border-radius: 6px;
    background: rgba(48, 209, 88, 0.06);
    border: 1px solid rgba(48, 209, 88, 0.15);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(48, 209, 88, 0.12);
    border-color: rgba(48, 209, 88, 0.35);
    color: var(--green);
}

.trust-badge span {
    color: var(--green);
    font-size: 0.85rem;
}

/* ══════════════════════════════════════════
   HOW IT WORKS STEPS (Checkout)
══════════════════════════════════════════ */
.how-it-works {
    background: rgba(10, 132, 255, 0.04);
    border: 1px solid rgba(10, 132, 255, 0.15);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 28px;
}

.how-it-works-title {
    font-size: 0.62rem;
    font-family: 'Press Start 2P', monospace;
    color: var(--blue);
    letter-spacing: 2px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.hiw-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hiw-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.hiw-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
    color: #fff;
    box-shadow: 0 2px 8px rgba(10, 132, 255, 0.4);
}

.hiw-text {
    font-size: 0.85rem;
    color: var(--dim);
    padding-top: 4px;
    line-height: 1.5;
}

.hiw-text strong {
    color: var(--txt);
}

/* ══════════════════════════════════════════
   SOCIAL PROOF / TESTIMONIALS
══════════════════════════════════════════ */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg2);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(191, 90, 242, 0.04) 0%, transparent 70%);
}

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

.testimonial-card {
    background: var(--surf);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 6rem;
    color: var(--purple);
    opacity: 0.06;
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(191, 90, 242, 0.3);
    box-shadow: 0 10px 30px rgba(191, 90, 242, 0.12);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 14px;
}

.testimonial-stars span {
    color: var(--gold);
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--dim);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

.testimonial-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.testimonial-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--txt);
}

.testimonial-rank {
    font-size: 0.72rem;
    color: var(--purple);
    font-family: 'Press Start 2P', monospace;
    letter-spacing: 1px;
}

/* ══════════════════════════════════════════
   LIVE PLAYER COUNT (Homepage Hero)
══════════════════════════════════════════ */
.live-player-widget {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(48, 209, 88, 0.08);
    border: 1px solid rgba(48, 209, 88, 0.2);
    border-radius: 40px;
    margin-bottom: 24px;
    animation: fadeIn 0.6s ease forwards;
}

.live-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 8px var(--green);
    animation: livepulse 1.2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes livepulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.6);
        opacity: 0.6;
    }
}

.live-player-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.live-player-count {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.55rem;
    color: var(--txt);
    background: rgba(255, 255, 255, 0.06);
    padding: 3px 8px;
    border-radius: 4px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ══════════════════════════════════════════
   ORDER STATUS PAGE
══════════════════════════════════════════ */
.order-status-section {
    padding: 140px 0 80px;
    min-height: 100vh;
}

.order-status-card {
    max-width: 640px;
    margin: 0 auto;
}

.status-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 30px 0;
    position: relative;
}

.status-timeline::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: var(--border);
    z-index: 0;
}

.status-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    position: relative;
    z-index: 1;
}

.status-step-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    border: 2px solid var(--border);
    background: var(--bg);
    transition: all 0.4s ease;
}

.status-step.active .status-step-dot {
    border-color: var(--purple);
    background: rgba(191, 90, 242, 0.15);
    box-shadow: 0 0 20px rgba(191, 90, 242, 0.4);
    animation: statusglow 2s ease-in-out infinite;
}

.status-step.done .status-step-dot {
    border-color: var(--green);
    background: rgba(48, 209, 88, 0.15);
    box-shadow: 0 0 12px rgba(48, 209, 88, 0.3);
}

@keyframes statusglow {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(191, 90, 242, 0.3);
    }

    50% {
        box-shadow: 0 0 25px rgba(191, 90, 242, 0.7);
    }
}

.status-step-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.status-step-info p {
    font-size: 0.82rem;
    color: var(--dim);
}

.status-step.pending .status-step-info h4 {
    color: var(--dimmer);
}

.order-id-input {
    background: var(--surf2);
    border: 1px solid var(--border);
    color: var(--txt);
    padding: 16px 24px;
    border-radius: 12px;
    width: 100%;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    outline: none;
    text-transform: uppercase;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.order-id-input:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(191, 90, 242, 0.12);
}

/* ══════════════════════════════════════════
   DISCORD BOOST BANNER
══════════════════════════════════════════ */
.discord-banner {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.12), rgba(191, 90, 242, 0.06));
    border: 1px solid rgba(88, 101, 242, 0.25);
    border-radius: 16px;
    padding: 30px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.discord-banner:hover {
    transform: translateY(-3px);
    border-color: rgba(88, 101, 242, 0.5);
}

.discord-banner-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.discord-icon-wrap {
    width: 52px;
    height: 52px;
    background: rgba(88, 101, 242, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.discord-banner-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.discord-banner-text p {
    font-size: 0.85rem;
    color: var(--dim);
}

.discord-online {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    color: var(--green);
    font-weight: 700;
    margin-top: 4px;
}

.discord-online-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    animation: livepulse 1.5s ease-in-out infinite;
}

/* ══════════════════════════════════════════
   ENHANCED TOTAL PRICE DISPLAY
══════════════════════════════════════════ */
.total-display {
    margin: 24px 0;
    padding: 20px 24px;
    background: rgba(191, 90, 242, 0.06);
    border: 1px solid rgba(191, 90, 242, 0.2);
    border-radius: 12px;
}

.total-display-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-display-label {
    font-size: 0.85rem;
    color: var(--dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.total-display-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--purple);
    letter-spacing: -1px;
    text-shadow: 0 0 20px rgba(191, 90, 242, 0.35);
}

/* ══════════════════════════════════════════
   RESPONSIVE UPDATES
══════════════════════════════════════════ */
@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .discord-banner {
        flex-direction: column;
        text-align: center;
    }

    .discord-banner-left {
        flex-direction: column;
        text-align: center;
    }
}