/* =============================================
   FUN & EARN — PREMIUM DARK GOLD THEME
   ============================================= */
:root {
    --gold: #FFD700;
    --gold-lt: #FFE84D;
    --gold-dk: #C8A400;
    --orange: #FFA500;
    --amber: #FF8C00;
    --bg0: #060503;
    --bg1: #0b0906;
    --bg2: #10100a;
    /* slightly dark */
    --bg3: #16130d;
    --bg4: #1e1910;
    --card: rgba(255, 215, 0, 0.04);
    --cborder: rgba(255, 215, 0, 0.15);
    --cborder-h: rgba(255, 215, 0, 0.5);
    --tw: #f0ead8;
    --tm: #c0aa6e;
    --ts: #8a7545;
    --sgold: 0 0 40px rgba(255, 215, 0, 0.3);
    --r: 'Rajdhani', sans-serif;
    --b: 'Inter', sans-serif;
}

/* ---- RESET ---- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--b);
    background: var(--bg0);
    color: var(--tw);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.mt16 {
    margin-top: 1.2rem;
}

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

::-webkit-scrollbar-track {
    background: var(--bg1);
}

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

/* ---- TEXT HELPERS ---- */
.gradient-text {
    background: linear-gradient(135deg, var(--gold), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.g {
    color: var(--gold);
}

.center {
    text-align: center;
}

.tag-pill {
    display: inline-block;
    font-family: var(--r);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    border: 1px solid rgba(255, 165, 0, .35);
    background: rgba(255, 165, 0, .08);
    padding: .3rem 1rem;
    border-radius: 20px;
    margin-bottom: .9rem;
}

.sec-title {
    font-family: var(--r);
    font-weight: 700;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--tw);
    line-height: 1.15;
    margin-bottom: .3rem;
}

.sec-sub {
    color: var(--tm);
    font-size: 1rem;
    max-width: 620px;
    margin: .6rem auto 0;
}

.gold-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--orange));
    border-radius: 2px;
    margin: 1rem 0 1.4rem;
    box-shadow: 0 0 12px rgba(255, 215, 0, .5);
}

.sec-head {
    margin-bottom: 3rem;
}

.sec-head.center .gold-line {
    margin: 1rem auto 0;
}

/* shared section bg */
.sec-games-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.sec-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .35;
}

.sec-bg-dark {
    position: absolute;
    inset: 0;
    background: rgba(6, 5, 3, .82);
}

/* ---- BUTTONS ---- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: #080500;
    padding: .85rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: .95rem;
    border: none;
    cursor: pointer;
    transition: all .3s;
    box-shadow: 0 4px 24px rgba(255, 215, 0, .4);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .25), transparent);
    transform: translateX(-100%);
    transition: transform .5s;
}

.btn-primary:hover::after {
    transform: translateX(100%);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(255, 215, 0, .6);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: transparent;
    color: var(--gold);
    padding: .85rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    border: 2px solid rgba(255, 215, 0, .5);
    cursor: pointer;
    transition: all .3s;
}

.btn-ghost:hover {
    background: rgba(255, 215, 0, .1);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.btn-login {
    background: transparent;
    border: 1.5px solid rgba(255, 215, 0, .5);
    color: var(--gold);
    padding: .44rem 1.3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .88rem;
    cursor: pointer;
    transition: all .3s;
}

.btn-login:hover {
    background: var(--gold);
    color: #080500;
    border-color: var(--gold);
}

.btn-signup {
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: #080500;
    padding: .44rem 1.3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: .88rem;
    cursor: pointer;
    transition: all .3s;
    border: none;
    box-shadow: 0 3px 14px rgba(255, 215, 0, .35);
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(255, 215, 0, .55);
}

.btn-pkg {
    display: block;
    width: 100%;
    text-align: center;
    background: transparent;
    border: 1.5px solid rgba(255, 215, 0, .4);
    color: var(--gold);
    padding: .75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .9rem;
    cursor: pointer;
    transition: all .3s;
    margin-top: 1.5rem;
}

.btn-pkg:hover {
    background: var(--gold);
    color: #080500;
    border-color: var(--gold);
}

/* ===================== NAVBAR ===================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: .55rem 0;
    background: rgba(6, 5, 3, .9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 215, 0, .1);
    transition: all .3s;
}

.navbar.scrolled {
    background: rgba(6, 5, 3, .98);
    border-color: rgba(255, 215, 0, .22);
}

.nav-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .8rem;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: .05rem;
}

.nav-menu a {
    display: block;
    padding: .45rem .85rem;
    font-weight: 500;
    font-size: .9rem;
    color: var(--tm);
    border-radius: 8px;
    transition: all .25s;
    position: relative;
    letter-spacing: .3px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
    background: rgba(255, 215, 0, .07);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 1px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
    transition: width .3s;
}

.nav-menu a:hover::after {
    width: 55%;
}

.nav-mob-btns {
    display: none;
    gap: .7rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: .7rem;
    flex-shrink: 0;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--gold);
    border-radius: 2px;
    transition: all .3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

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

/* ===================== HERO ===================== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    padding-top: 70px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 5, 3, .92) 0%, rgba(15, 12, 4, .78) 55%, rgba(6, 5, 3, .88) 100%);
}

.particles-wrap {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
    flex: 1;
    padding: 3.5rem 24px 2rem;
}

/* LEFT */
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--r);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(255, 215, 0, .3);
    background: rgba(255, 215, 0, .07);
    padding: .35rem 1.1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    animation: fadeUp .8s ease both;
}

.hero-h1 {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.1rem;
    animation: fadeUp .8s .1s ease both;
}

.h1-big {
    font-family: var(--r);
    font-size: clamp(3rem, 6.5vw, 6rem);
    font-weight: 900;
    letter-spacing: 3px;
    line-height: 1;
    background: linear-gradient(135deg, #fff 0%, var(--gold) 35%, var(--orange) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 22px rgba(255, 215, 0, .35));
}

.h1-sub {
    font-family: var(--r);
    font-size: clamp(1rem, 2vw, 1.55rem);
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: .35rem;
}

.hero-p {
    color: var(--tm);
    font-size: 1.02rem;
    max-width: 480px;
    margin-bottom: 1.7rem;
    animation: fadeUp .8s .2s ease both;
}

.hero-badges {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: 1.8rem;
    flex-wrap: wrap;
    animation: fadeUp .8s .3s ease both;
}

.hbadge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .2rem;
    font-family: var(--r);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--tm);
    text-transform: uppercase;
}

.hbadge i {
    font-size: 1.5rem;
    color: var(--gold);
}

.hbadge-sep {
    color: rgba(255, 215, 0, .25);
    font-size: 1.3rem;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    animation: fadeUp .8s .4s ease both;
}

.hero-stats-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    animation: fadeUp .8s .5s ease both;
}

.hstat {
    display: flex;
    flex-direction: column;
}

.hstat-n {
    font-family: var(--r);
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.hstat-l {
    font-size: .75rem;
    color: var(--ts);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hstat-sep {
    width: 1px;
    height: 38px;
    background: rgba(255, 215, 0, .2);
}

/* RIGHT */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeRight .9s .3s ease both;
}

.hero-char-wrap {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-char-glow {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 80px;
    background: radial-gradient(ellipse, rgba(255, 215, 0, .5) 0%, transparent 70%);
    filter: blur(22px);
}

.hero-char {
    max-height: 520px;
    object-fit: contain;
    filter: drop-shadow(0 0 35px rgba(255, 215, 0, .25));
    position: relative;
    z-index: 1;
}

.hero-token {
    position: absolute;
    bottom: 20px;
    right: -10px;
    z-index: 2;
    width: 80px;
    height: 80px;
    animation: floatY 3s ease-in-out infinite;
    filter: drop-shadow(0 0 16px rgba(255, 215, 0, .7));
}

.hero-token img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes floatY {

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

    50% {
        transform: translateY(-12px)
    }
}

/* TICKER */
.ticker-bar {
    position: relative;
    z-index: 2;
    background: rgba(255, 215, 0, .09);
    border-top: 1px solid rgba(255, 215, 0, .18);
    padding: .65rem 0;
    overflow: hidden;
}

.ticker-track {
    display: flex;
    white-space: nowrap;
    animation: ticker 40s linear infinite;
    color: var(--tm);
    font-size: .85rem;
}

.ticker-track span {
    padding: 0 3.5rem;
}

.ticker-track b {
    color: var(--gold);
}

@keyframes ticker {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ===================== STATS STRIP ===================== */
.stats-strip {
    background: linear-gradient(90deg, rgba(255, 215, 0, .1), rgba(255, 165, 0, .07), rgba(255, 215, 0, .1));
    border-top: 1px solid rgba(255, 215, 0, .18);
    border-bottom: 1px solid rgba(255, 215, 0, .18);
    padding: 1.6rem 0;
}

.stats-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.sstrip-item {
    display: flex;
    align-items: center;
    gap: .9rem;
    padding: .4rem 2rem;
}

.sstrip-item>i {
    font-size: 1.8rem;
    color: var(--gold);
}

.sstrip-item b {
    display: block;
    font-family: var(--r);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.sstrip-item span {
    font-size: .72rem;
    color: var(--ts);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sstrip-div {
    width: 1px;
    height: 44px;
    background: rgba(255, 215, 0, .18);
}

/* ===================== ABOUT ===================== */
.sec-about {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background: var(--bg1);
}

/* --- Background layers --- */
.about-bg-layer {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.about-bg-img {}

.about-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(6, 5, 3, .97) 0%, rgba(12, 10, 5, .88) 50%, rgba(6, 5, 3, .95) 100%);
}

/* Animated glow orbs */
.about-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    opacity: .45;
    animation: orbFloat 8s ease-in-out infinite;
}

.about-orb1 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(255, 215, 0, .25) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.about-orb2 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 140, 0, .2) 0%, transparent 70%);
    bottom: -80px;
    right: -80px;
    animation-delay: 3s;
}

.about-orb3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 215, 0, .15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 5s;
}

@keyframes orbFloat {

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

    33% {
        transform: translate(20px, -15px) scale(1.05);
    }

    66% {
        transform: translate(-10px, 20px) scale(.95);
    }
}

/* Section header center */
.about-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

/* --- Grid --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* --- LEFT: highlight cards --- */
.about-highlight-card {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    background: rgba(255, 215, 0, .04);
    border: 1px solid rgba(255, 215, 0, .12);
    border-radius: 16px;
    padding: 1.3rem 1.4rem;
    margin-bottom: 1.2rem;
    transition: all .35s;
    backdrop-filter: blur(4px);
}

.about-highlight-card:hover {
    border-color: rgba(255, 215, 0, .45);
    background: rgba(255, 215, 0, .08);
    transform: translateX(6px);
    box-shadow: 0 8px 32px rgba(255, 215, 0, .1);
}

.ahc-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #080500;
    box-shadow: 0 5px 18px rgba(255, 215, 0, .35);
}

.about-highlight-card h4 {
    font-family: var(--r);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--tw);
    margin-bottom: .35rem;
}

.about-highlight-card p {
    color: var(--tm);
    font-size: .9rem;
    line-height: 1.75;
    margin: 0;
}

/* Stat pills */
.about-stat-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.8rem;
    margin-bottom: .5rem;
}

.about-stat-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 215, 0, .06);
    border: 1px solid rgba(255, 215, 0, .2);
    border-radius: 14px;
    padding: .7rem 1.3rem;
    transition: all .3s;
    flex: 1;
    min-width: 70px;
}

.about-stat-pill:hover {
    border-color: var(--gold);
    background: rgba(255, 215, 0, .12);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 215, 0, .15);
}

.asp-n {
    font-family: var(--r);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 0 14px rgba(255, 215, 0, .4);
}

.asp-l {
    font-size: .7rem;
    color: var(--ts);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: .2rem;
}

/* --- RIGHT: image box --- */
.about-right {
    display: flex;
    justify-content: center;
}

.about-img-box {
    position: relative;
    width: 100%;
    max-width: 460px;
}

/* Decorative glowing frame */
.about-frame-glow {
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 215, 0, .35), rgba(255, 140, 0, .2), rgba(255, 215, 0, .05));
    filter: blur(18px);
    z-index: 0;
    animation: frameGlow 4s ease-in-out infinite alternate;
}

@keyframes frameGlow {
    from {
        opacity: .6;
    }

    to {
        opacity: 1;
    }
}

.about-frame-border {
    position: absolute;
    inset: 0;
    border-radius: 22px;
    border: 1px solid rgba(255, 215, 0, .3);
    z-index: 1;
    pointer-events: none;
}

.about-main-img {
    width: 100%;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    filter: brightness(.92) contrast(1.05);
    box-shadow:
        0 0 60px rgba(255, 215, 0, .18),
        0 30px 80px rgba(0, 0, 0, .6);
}

/* Floating character */
.about-char-float {
    position: absolute;
    bottom: -28px;
    right: -24px;
    width: 140px;
    z-index: 4;
    filter: drop-shadow(0 8px 28px rgba(255, 215, 0, .4));
    animation: floatY 4s ease-in-out infinite;
}

.about-char-float img {
    width: 100%;
}

/* Floating badge cards */
.about-float-card {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: .55rem;
    background: rgba(10, 8, 4, .85);
    border: 1px solid rgba(255, 215, 0, .35);
    border-radius: 50px;
    padding: .5rem 1.1rem;
    font-size: .82rem;
    font-weight: 700;
    color: var(--gold);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .4), 0 0 16px rgba(255, 215, 0, .15);
    white-space: nowrap;
    animation: floatY 5s ease-in-out infinite;
}

.about-float-card i {
    font-size: 1rem;
    color: var(--gold);
}

.afc-tl {
    top: 20px;
    left: -16px;
    animation-delay: 0s;
}

.afc-br {
    bottom: 50px;
    right: -16px;
    animation-delay: 2.5s;
}

/* Corner text label */
.about-badge-tl {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 6;
    font-family: var(--r);
    font-size: 1rem;
    font-weight: 900;
    color: rgba(255, 215, 0, .2);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.15;
    pointer-events: none;
    text-align: right;
}

.about-badge-tl span {
    display: block;
    font-size: .62rem;
    letter-spacing: 3px;
    color: rgba(255, 165, 0, .15);
}

/* ===================== SECTION SIDE CHARACTER IMAGES (alternating) ===================== */
/* Floating side character: left side */
.sec-side-char {
    position: absolute;
    bottom: 0;
    z-index: 3;
    pointer-events: none;
    display: flex;
    align-items: flex-end;
    width: clamp(120px, 13vw, 220px);
}

.sec-side-char.side-left {
    left: 0;
}

.sec-side-char.side-right {
    right: 0;
}

.sec-side-char img {
    height: clamp(160px, 20vw, 300px);
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, .28)) brightness(.78) saturate(.7);
    opacity: .65;
    transition: opacity .4s, filter .4s;
}

.sec-side-char.side-right img {
    transform: scaleX(-1);
    margin-left: auto;
}

/* sections that have side chars get slight horizontal padding so content doesn't overlap */
.sec-crypto-banner .cb-inner,
.sec-blockchain-banner .cb-inner,
.sec-hcw .hcw-inner,
.sec-fetoken .cb-inner,
.sec-keyfeatures .cb-inner,
.sec-utility .cb-inner,
.sec-skilled-banner .cb-inner,
.sec-skilled-banner .sg-inner {
    padding-left: clamp(24px, 10vw, 140px);
    padding-right: clamp(24px, 10vw, 140px);
}

/* About section already has right-side char image — just ensure some breathing room */
.sec-about>.container {
    padding-left: clamp(24px, 8vw, 80px);
    padding-right: clamp(24px, 8vw, 80px);
}

/* ===================== CRYPTO BANNER ===================== */
.sec-crypto-banner {
    position: relative;
    overflow: hidden;
    padding: 0;
    /* no extra padding — full-bleed feel */
    background: var(--bg0);
}

/* BG layers */
.cb-bg-layer {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.cb-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .18;
    filter: blur(3px) saturate(1.6);
    transform: scale(1.06);
}

.cb-bg-dark {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
            rgba(4, 3, 1, .97) 0%,
            rgba(8, 6, 2, .92) 40%,
            rgba(14, 11, 3, .9) 70%,
            rgba(4, 3, 1, .97) 100%);
}

/* Big corner glow streaks */
.cb-glow-tl {
    position: absolute;
    top: -60px;
    left: -60px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255, 215, 0, .18) 0%, transparent 65%);
    filter: blur(40px);
    pointer-events: none;
}

.cb-glow-br {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 140, 0, .15) 0%, transparent 65%);
    filter: blur(40px);
    pointer-events: none;
}

/* Inner container */
.cb-inner {
    position: relative;
    z-index: 2;
    padding: 3.5rem 24px 2.5rem;
}

/* Top row */
.cb-toprow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 0;
}

.cb-logo-wrap {
    flex-shrink: 0;
}

.cb-logo {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 0 14px rgba(255, 215, 0, .35));
}

.cb-title-wrap {
    text-align: right;
}

.cb-title {
    font-family: var(--r);
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-style: italic;
    color: var(--gold);
    text-shadow:
        0 0 40px rgba(255, 215, 0, .55),
        0 0 80px rgba(255, 165, 0, .3),
        2px 2px 0 rgba(0, 0, 0, .8);
}

.cb-title span {
    color: var(--gold-lt);
}

.cb-brand-tag {
    font-family: var(--r);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: rgba(255, 165, 0, .35);
    text-transform: uppercase;
    margin-top: .3rem;
}

/* Divider */
.cb-divider {
    width: 100%;
    height: 1px;
    margin: 1.8rem 0;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, .3), rgba(255, 165, 0, .5), rgba(255, 215, 0, .3), transparent);
    box-shadow: 0 0 12px 2px rgba(255, 215, 0, .15);
}

/* Description */
.cb-desc-wrap {
    text-align: center;
    padding: 0 clamp(0px, 6vw, 5rem);
}

.cb-desc {
    font-size: clamp(.95rem, 1.6vw, 1.2rem);
    line-height: 2;
    color: var(--tm);
    letter-spacing: .2px;
}

.cb-desc em {
    color: var(--gold);
    font-style: normal;
    font-weight: 600;
}

.cb-desc strong {
    color: var(--gold-lt);
}

/* Bottom decoration row */
.cb-bottom-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2.5rem;
    height: 140px;
    overflow: hidden;
}

.cb-asset {
    display: flex;
    align-items: flex-end;
}

.cb-ctrl-img {
    height: 130px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 22px rgba(255, 215, 0, .25)) brightness(.75) saturate(.6);
    opacity: .65;
}

.cb-chip-img {
    height: 120px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 18px rgba(255, 215, 0, .2)) brightness(.7) saturate(.5);
    opacity: .55;
}

/* Center Bitcoin coin */
.cb-coin-center {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.cb-coin-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, .35) 0%, rgba(255, 140, 0, .15) 40%, transparent 70%);
    filter: blur(20px);
    animation: coinPulse 3s ease-in-out infinite;
}

@keyframes coinPulse {

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

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

.cb-coin-ring {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid rgba(255, 215, 0, .3);
    box-shadow: 0 0 0 10px rgba(255, 215, 0, .08), 0 0 0 20px rgba(255, 215, 0, .04);
    animation: coinRing 3s ease-in-out infinite;
}

@keyframes coinRing {

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

    50% {
        transform: scale(1.1) rotate(10deg);
    }
}

.cb-btc-icon {
    font-size: clamp(3.5rem, 7vw, 5.5rem);
    color: var(--gold);
    text-shadow:
        0 0 30px rgba(255, 215, 0, .8),
        0 0 60px rgba(255, 165, 0, .5);
    position: relative;
    z-index: 1;
    animation: floatY 4s ease-in-out infinite;
}

/* Corner bracket decorations */
.cb-corner {
    position: absolute;
    width: 22px;
    height: 22px;
    pointer-events: none;
    z-index: 3;
}

.cb-corner-tl {
    top: 18px;
    left: 18px;
    border-top: 2px solid rgba(255, 215, 0, .5);
    border-left: 2px solid rgba(255, 215, 0, .5);
    border-radius: 4px 0 0 0;
}

.cb-corner-tr {
    top: 18px;
    right: 18px;
    border-top: 2px solid rgba(255, 215, 0, .5);
    border-right: 2px solid rgba(255, 215, 0, .5);
    border-radius: 0 4px 0 0;
}

.cb-corner-bl {
    bottom: 18px;
    left: 18px;
    border-bottom: 2px solid rgba(255, 215, 0, .5);
    border-left: 2px solid rgba(255, 215, 0, .5);
    border-radius: 0 0 0 4px;
}

.cb-corner-br {
    bottom: 18px;
    right: 18px;
    border-bottom: 2px solid rgba(255, 215, 0, .5);
    border-right: 2px solid rgba(255, 215, 0, .5);
    border-radius: 0 0 4px 0;
}

/* ===================== CRYPTO SECTION REDESIGN ===================== */
.sec-crypto-banner {
    position: relative;
    overflow: hidden;
    background-image: url(../images/background/bg7.png);
    padding: 6rem 0;
    border-top: 1px solid rgba(255, 215, 0, .08);
    border-bottom: 1px solid rgba(255, 215, 0, .08);
    background-size: cover;
}

.crypto-section-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
    padding: 0 24px;
}

/* --- LEFT: Visual --- */
.crypto-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.crypto-visual-wrap {
    position: relative;
    width: 400px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Rings */
.crv-ring {
    position: absolute;
    border-radius: 50%;
    animation: tokenSpin linear infinite;
}

.crv-ring1 {
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 215, 0, .12);
    animation-duration: 24s;
}

.crv-ring2 {
    width: 75%;
    height: 75%;
    border: 1.5px dashed rgba(255, 165, 0, .22);
    animation-duration: 15s;
    animation-direction: reverse;
}

.crv-ring3 {
    width: 52%;
    height: 52%;
    border: 1px solid rgba(255, 215, 0, .3);
    animation-duration: 10s;
}

/* Orbit dots */
.crv-orbit {
    position: absolute;
    border-radius: 50%;
    animation: orbitCircle linear infinite;
    pointer-events: none;
}

.crv-orb1 {
    width: 75%;
    height: 75%;
    top: 12.5%;
    left: 12.5%;
    animation-duration: 8s;
}

.crv-orb2 {
    width: 52%;
    height: 52%;
    top: 24%;
    left: 24%;
    animation-duration: 13s;
    animation-direction: reverse;
}

.crv-orb1::after,
.crv-orb2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 11px;
    height: 11px;
    margin: -5.5px 0 0 -5.5px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 16px rgba(255, 215, 0, .9), 0 0 30px rgba(255, 215, 0, .5);
}

.crv-orb2::after {
    width: 8px;
    height: 8px;
    background: var(--orange);
    margin: -4px 0 0 -4px;
}

/* Glow burst */
.crv-glow-burst {
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 140, 0, .5) 0%, rgba(255, 215, 0, .18) 40%, transparent 70%);
    filter: blur(35px);
    z-index: 1;
    animation: burstPulse 3.5s ease-in-out infinite;
}

/* Center coin */
.crv-coin {
    position: relative;
    z-index: 2;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: radial-gradient(circle at 32% 28%, #3d2800, #0c0700);
    border: 3px solid rgba(255, 215, 0, .65);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 0 10px rgba(255, 215, 0, .06),
        0 0 0 22px rgba(255, 215, 0, .025),
        0 0 70px rgba(255, 215, 0, .55),
        0 0 120px rgba(255, 165, 0, .25),
        inset 0 0 45px rgba(255, 215, 0, .1);
    animation: floatY 4.5s ease-in-out infinite;
}

.crv-btc {
    font-size: 5.5rem;
    color: var(--gold);
    text-shadow: 0 0 25px rgba(255, 215, 0, .9), 0 0 55px rgba(255, 165, 0, .6);
}

/* Floating badges — compass positions around the coin */
.crv-badge {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: .45rem;
    background: rgba(6, 4, 1, .9);
    border: 1px solid rgba(255, 215, 0, .3);
    border-radius: 50px;
    padding: .4rem .9rem;
    font-size: .76rem;
    font-weight: 700;
    color: var(--gold);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .5), 0 0 12px rgba(255, 215, 0, .1);
    white-space: nowrap;
    animation: floatY 5s ease-in-out infinite;
}

.crv-badge i {
    font-size: .8rem;
}

/* Top center */
.crv-badge-top {
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

/* Right middle */
.crv-badge-right {
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    animation-delay: .9s;
}

/* Bottom center */
.crv-badge-bottom {
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.8s;
}

/* Left middle */
.crv-badge-left {
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    animation-delay: 2.7s;
}

/* --- RIGHT: Content --- */
.crypto-right {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Top: logo + brand */
.crypto-brand-row {
    display: flex;
    align-items: center;
    gap: .9rem;
    margin-bottom: 1.4rem;
}

.crypto-logo {
    height: 46px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, .3));
}

.crypto-brand-tag {
    font-family: var(--r);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: rgba(255, 165, 0, .45);
    text-transform: uppercase;
    border-left: 2px solid rgba(255, 215, 0, .25);
    padding-left: .8rem;
}

/* Heading */
.crypto-heading {
    font-family: var(--r);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-style: italic;
    color: var(--tw);
    margin-bottom: .6rem;
}

.crypto-heading .gradient-text {
    display: block;
}

/* Gold line */
.crypto-right .gold-line {
    margin: 0 0 1.5rem;
}

/* Description */
.crypto-desc {
    color: var(--tm);
    font-size: .98rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    padding-left: 1rem;
    border-left: 3px solid rgba(255, 215, 0, .25);
}

/* Feature cards 2x2 */
.crypto-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .8rem;
    margin-bottom: 1.8rem;
}

.crypto-feat-card {
    display: flex;
    align-items: flex-start;
    gap: .8rem;
    background: rgba(255, 215, 0, .035);
    border: 1px solid rgba(255, 215, 0, .1);
    border-radius: 14px;
    padding: .95rem 1rem;
    transition: all .3s;
}

.crypto-feat-card:hover {
    border-color: rgba(255, 215, 0, .38);
    background: rgba(255, 215, 0, .07);
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(255, 215, 0, .1);
}

.cfc-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    color: #080500;
    box-shadow: 0 4px 14px rgba(255, 215, 0, .3);
    margin-top: .1rem;
}

.crypto-feat-card h5 {
    font-family: var(--r);
    font-size: .9rem;
    font-weight: 700;
    color: var(--tw);
    margin-bottom: .18rem;
    line-height: 1.2;
}

.crypto-feat-card p {
    color: var(--ts);
    font-size: .78rem;
    line-height: 1.6;
    margin: 0;
}

/* Bottom URL */
.crypto-url-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.crypto-url-row .cb-divider {
    flex: 1;
    margin: 0;
}

/* Responsive */
@media(max-width:1024px) {
    .crypto-section-inner {
        gap: 3rem;
    }

    .crypto-visual-wrap {
        width: 320px;
        height: 340px;
    }
}

@media(max-width:860px) {
    .crypto-section-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .crypto-left {
        order: 1;
    }

    .crypto-right {
        order: 2;
    }

    .crypto-visual-wrap {
        width: 300px;
        height: 300px;
    }

    .crv-coin {
        width: 150px;
        height: 150px;
    }

    .crv-btc {
        font-size: 4rem;
    }
}

@media(max-width:560px) {
    .crypto-features {
        grid-template-columns: 1fr;
    }
}

/* ===================== UTILITY BANNER ===================== */
.sec-utility {
    position: relative;
    overflow: hidden;
    background: var(--bg0);
    border-top: 1px solid rgba(255, 215, 0, .08);

    background-image: url(../images/background/bg3.png);

}

.ut-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}

.ut-orb1 {
    width: 550px;
    height: 550px;
    top: -100px;
    right: -80px;
    background: radial-gradient(circle, rgba(255, 165, 0, .2) 0%, rgba(255, 215, 0, .07) 45%, transparent 70%);
}

.ut-orb2 {
    width: 300px;
    height: 300px;
    bottom: -60px;
    left: 5%;
    background: radial-gradient(circle, rgba(255, 215, 0, .1) 0%, transparent 65%);
}

/* Main grid */
.ut-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 4rem;
    align-items: center;
}

/* Utility list */
.ut-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .55rem 1.5rem;
    margin-bottom: 0;
}

.ut-list-item {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .65rem .9rem;
    background: rgba(255, 215, 0, .04);
    border: 1px solid rgba(255, 215, 0, .1);
    border-radius: 10px;
    color: var(--tm);
    font-size: .92rem;
    font-weight: 500;
    transition: all .3s;
}

.ut-list-item:hover {
    border-color: rgba(255, 215, 0, .4);
    background: rgba(255, 215, 0, .08);
    color: var(--tw);
    transform: translateX(4px);
}

.ut-list-item i {
    color: var(--gold);
    font-size: .7rem;
    flex-shrink: 0;
}

/* Inner divider */
.ut-inner-divider {
    width: 100%;
    height: 1px;
    margin: 1.4rem 0;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, .35), rgba(255, 165, 0, .4), rgba(255, 215, 0, .35), transparent);
}

/* Why FE heading */
.ut-why-head {
    font-family: var(--r);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 900;
    font-style: italic;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 24px rgba(255, 215, 0, .5), 2px 2px 0 rgba(0, 0, 0, .8);
    margin-bottom: 1rem;
}

/* Why FE items */
.ut-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .55rem 1.5rem;
}

.ut-why-item {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .65rem .9rem;
    background: rgba(255, 215, 0, .05);
    border: 1px solid rgba(255, 215, 0, .12);
    border-left: 3px solid rgba(255, 215, 0, .45);
    border-radius: 0 10px 10px 0;
    color: var(--tm);
    font-size: .9rem;
    font-weight: 500;
    transition: all .3s;
}

.ut-why-item:hover {
    border-left-color: var(--gold);
    background: rgba(255, 215, 0, .09);
    color: var(--tw);
    transform: translateX(4px);
}

.ut-why-item i {
    color: var(--gold);
    font-size: .7rem;
    flex-shrink: 0;
}

/* Full-width last item */
.ut-why-full {
    grid-column: 1 / -1;
}

/* RIGHT: coin visual */
.ut-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.ut-coin-wrap {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ut-ring {
    position: absolute;
    border-radius: 50%;
    animation: tokenSpin linear infinite;
}

.ut-ring1 {
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 215, 0, .14);
    animation-duration: 20s;
}

.ut-ring2 {
    width: 78%;
    height: 78%;
    border: 1.5px dashed rgba(255, 165, 0, .22);
    animation-duration: 13s;
    animation-direction: reverse;
}

.ut-ring3 {
    width: 58%;
    height: 58%;
    border: 1px solid rgba(255, 215, 0, .3);
    animation-duration: 8s;
}

.ut-od {
    position: absolute;
    border-radius: 50%;
    background: transparent;
    animation: orbitCircle linear infinite;
}

.ut-od1 {
    width: 78%;
    height: 78%;
    top: 11%;
    left: 11%;
    animation-duration: 7s;
}

.ut-od2 {
    width: 58%;
    height: 58%;
    top: 21%;
    left: 21%;
    animation-duration: 11s;
    animation-direction: reverse;
}

.ut-od1::after,
.ut-od2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 9px;
    height: 9px;
    margin: -4.5px 0 0 -4.5px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 12px rgba(255, 215, 0, .9), 0 0 24px rgba(255, 215, 0, .5);
}

.ut-od2::after {
    width: 7px;
    height: 7px;
    background: var(--orange);
    margin: -3.5px 0 0 -3.5px;
}

.ut-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 150, 0, .6) 0%, rgba(255, 215, 0, .25) 35%, transparent 70%);
    filter: blur(28px);
    z-index: 1;
    animation: burstPulse 3s ease-in-out infinite;
}

.ut-coin {
    position: relative;
    z-index: 2;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #3e2b00, #0f0900);
    border: 3px solid rgba(255, 215, 0, .75);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 0 8px rgba(255, 215, 0, .07),
        0 0 0 16px rgba(255, 215, 0, .03),
        0 0 55px rgba(255, 215, 0, .6),
        0 0 110px rgba(255, 165, 0, .35),
        inset 0 0 40px rgba(255, 215, 0, .14);
    animation: floatY 4s ease-in-out infinite;
}

.ut-coin-img {
    width: 115px;
    height: 115px;
    object-fit: contain;
    filter: drop-shadow(0 0 22px rgba(255, 215, 0, .95));
}

/* FE TOKEN label */
.ut-token-label {
    text-align: center;
}

.ut-fe {
    font-family: var(--r);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    letter-spacing: 4px;
    color: var(--gold);
    text-shadow: 0 0 30px rgba(255, 215, 0, .8), 0 0 60px rgba(255, 165, 0, .4), 2px 2px 0 rgba(0, 0, 0, .9);
}

.ut-tok {
    font-family: var(--r);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    letter-spacing: 4px;
    color: var(--tw);
    text-shadow: 2px 2px 0 rgba(0, 0, 0, .9);
}

.ut-token-sub {
    display: flex;
    align-items: center;
    gap: .8rem;
    justify-content: center;
    margin-top: .4rem;
    font-family: var(--r);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: rgba(255, 215, 0, .55);
    text-transform: uppercase;
}

.ut-ts-line {
    flex: 1;
    max-width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, .45));
}

.ut-ts-line:last-child {
    background: linear-gradient(90deg, rgba(255, 215, 0, .45), transparent);
}

/* ===================== KEY FEATURES BANNER ===================== */
.sec-keyfeatures {
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 215, 0, .08);
    background-image: url(../images/background/bg1234.jpg);
}

.kf-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}

.kf-orb1 {
    width: 500px;
    height: 500px;
    top: -100px;
    right: -60px;
    background: radial-gradient(circle, rgba(255, 165, 0, .18) 0%, rgba(255, 215, 0, .06) 45%, transparent 70%);
}

.kf-orb2 {
    width: 320px;
    height: 320px;
    bottom: -80px;
    left: 8%;
    background: radial-gradient(circle, rgba(255, 215, 0, .1) 0%, transparent 65%);
}

/* Main grid */
.kf-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 4rem;
    align-items: center;
}

/* Feature items */
.kf-left {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.kf-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 215, 0, .04);
    border: 1px solid rgba(255, 215, 0, .1);
    border-radius: 14px;
    padding: 1rem 1.3rem;
    transition: all .35s;
    position: relative;
    overflow: hidden;
    cursor: default;
}

.kf-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--gold), var(--orange));
    border-radius: 3px 0 0 3px;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .35s;
}

.kf-item:hover {
    border-color: rgba(255, 215, 0, .4);
    background: rgba(255, 215, 0, .07);
    transform: translateX(6px);
    box-shadow: 0 8px 28px rgba(255, 215, 0, .1);
}

.kf-item:hover::before {
    transform: scaleY(1);
}

.kf-num {
    font-family: var(--r);
    font-size: .72rem;
    font-weight: 800;
    color: #080500;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    padding: .2rem .55rem;
    border-radius: 20px;
    flex-shrink: 0;
    letter-spacing: 1px;
    box-shadow: 0 3px 10px rgba(255, 215, 0, .35);
    min-width: 32px;
    text-align: center;
}

.kf-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, .15), rgba(255, 140, 0, .08));
    border: 1px solid rgba(255, 215, 0, .25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    color: var(--gold);
    transition: all .3s;
    box-shadow: 0 0 12px rgba(255, 215, 0, .1);
}

.kf-item:hover .kf-icon {
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: #080500;
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(255, 215, 0, .4);
}

.kf-text h4 {
    font-family: var(--r);
    font-size: .98rem;
    font-weight: 800;
    color: var(--tw);
    margin-bottom: .18rem;
    letter-spacing: .3px;
}

.kf-text p {
    color: var(--tm);
    font-size: .84rem;
    line-height: 1.55;
    margin: 0;
}

/* RIGHT: coin visual */
.kf-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.kf-coin-wrap {
    position: relative;
    width: 380px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kf-ring {
    position: absolute;
    border-radius: 50%;
    animation: tokenSpin linear infinite;
}

.kf-ring1 {
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 215, 0, .12);
    animation-duration: 22s;
}

.kf-ring2 {
    width: 82%;
    height: 82%;
    border: 1.5px dashed rgba(255, 165, 0, .2);
    animation-duration: 15s;
    animation-direction: reverse;
}

.kf-ring3 {
    width: 64%;
    height: 64%;
    border: 1px solid rgba(255, 215, 0, .28);
    animation-duration: 9s;
}

.kf-ring4 {
    width: 46%;
    height: 46%;
    border: 2px solid rgba(255, 215, 0, .18);
    border-style: dotted;
    animation-duration: 6s;
    animation-direction: reverse;
}

/* Orbit dots */
.kf-od {
    position: absolute;
    border-radius: 50%;
    background: transparent;
    animation: orbitCircle linear infinite;
}

.kf-od1 {
    width: 82%;
    height: 82%;
    top: 9%;
    left: 9%;
    animation-duration: 8s;
}

.kf-od2 {
    width: 64%;
    height: 64%;
    top: 18%;
    left: 18%;
    animation-duration: 13s;
    animation-direction: reverse;
}

.kf-od1::after,
.kf-od2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 9px;
    height: 9px;
    margin-left: -4.5px;
    margin-top: -4.5px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 12px rgba(255, 215, 0, .9), 0 0 24px rgba(255, 215, 0, .5);
}

.kf-od2::after {
    width: 7px;
    height: 7px;
    background: var(--orange);
    margin-left: -3.5px;
    margin-top: -3.5px;
}

/* Glow burst */
.kf-glow-burst {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 140, 0, .55) 0%, rgba(255, 215, 0, .25) 35%, transparent 70%);
    filter: blur(28px);
    z-index: 1;
    animation: burstPulse 3.5s ease-in-out infinite;
}

/* Coin */
.kf-coin {
    position: relative;
    z-index: 2;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #3d2a00, #120d00);
    border: 3px solid rgba(255, 215, 0, .7);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 0 8px rgba(255, 215, 0, .07),
        0 0 0 16px rgba(255, 215, 0, .04),
        0 0 50px rgba(255, 215, 0, .55),
        0 0 100px rgba(255, 165, 0, .3),
        inset 0 0 40px rgba(255, 215, 0, .12);
    animation: floatY 4s ease-in-out infinite;
}

.kf-coin-img {
    width: 105px;
    height: 105px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, .9));
}

/* ===================== FE TOKEN BANNER ===================== */
.sec-fetoken {
    position: relative;
    overflow: hidden;
    background: var(--bg0);
    border-top: 1px solid rgba(255, 215, 0, .08);
}

/* Orbs */
.fet-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(70px);
}

.fet-orb1 {
    width: 600px;
    height: 600px;
    top: -150px;
    right: -100px;
    background: radial-gradient(circle, rgba(255, 165, 0, .2) 0%, rgba(255, 215, 0, .08) 40%, transparent 70%);
}

.fet-orb2 {
    width: 350px;
    height: 350px;
    bottom: -80px;
    left: 5%;
    background: radial-gradient(circle, rgba(255, 215, 0, .12) 0%, transparent 65%);
}

.fet-orb3 {
    width: 250px;
    height: 250px;
    top: 40%;
    left: 40%;
    background: radial-gradient(circle, rgba(255, 140, 0, .1) 0%, transparent 65%);
    filter: blur(50px);
}

/* Top row */
.fet-toprow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 0;
}

.fet-brand-right {
    text-align: right;
}

/* Big FE TOKEN title */
.fet-main-title {
    font-family: var(--r);
    font-size: clamp(2.4rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: 5px;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: .35rem;
}

.fet-fe {
    color: var(--gold);
    text-shadow:
        0 0 30px rgba(255, 215, 0, .8),
        0 0 60px rgba(255, 165, 0, .5),
        3px 3px 0 rgba(0, 0, 0, .9);
}

.fet-token-word {
    color: var(--tw);
    text-shadow:
        0 0 20px rgba(255, 255, 255, .2),
        2px 2px 0 rgba(0, 0, 0, .9);
}

/* tagline */
.fet-tagline {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: .8rem;
    font-family: var(--r);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: rgba(255, 215, 0, .6);
    text-transform: uppercase;
}

.fet-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    opacity: .6;
    box-shadow: 0 0 6px rgba(255, 215, 0, .6);
}

/* Main grid */
.fet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* LEFT */
.fet-block {
    margin-bottom: 1.6rem;
}

.fet-block-title {
    display: flex;
    align-items: center;
    gap: .65rem;
    font-family: var(--r);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: .75rem;
    text-shadow: 0 0 16px rgba(255, 215, 0, .35);
}

.fet-block-title i {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    color: #080500;
    box-shadow: 0 4px 14px rgba(255, 215, 0, .4);
}

.fet-block p {
    color: var(--tm);
    font-size: .97rem;
    line-height: 1.85;
    border-left: 3px solid rgba(255, 215, 0, .3);
    padding-left: 1rem;
    margin: 0;
    transition: border-color .3s;
}

.fet-block:hover p {
    border-left-color: var(--gold);
}

/* Pills */
.fet-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin-bottom: 1.8rem;
}

.fet-pill {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255, 215, 0, .07);
    border: 1px solid rgba(255, 215, 0, .25);
    border-radius: 50px;
    padding: .42rem 1rem;
    font-family: var(--r);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .8px;
    color: var(--gold);
    text-transform: uppercase;
    transition: all .3s;
}

.fet-pill:hover {
    background: rgba(255, 215, 0, .15);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 215, 0, .2);
}

.fet-pill i {
    font-size: .85rem;
}

/* Bottom deco */
.fet-bottom-deco {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-top: 1rem;
}

.fet-deco-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: brightness(.55) saturate(.4) drop-shadow(0 0 12px rgba(255, 215, 0, .15));
    opacity: .5;
}

/* RIGHT: Coin visual */
.fet-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fet-coin-wrap {
    position: relative;
    width: 340px;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Concentric rings */
.fet-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 215, 0, .2);
    animation: tokenSpin linear infinite;
}

.fet-ring1 {
    width: 100%;
    height: 100%;
    border-color: rgba(255, 215, 0, .15);
    animation-duration: 18s;
}

.fet-ring2 {
    width: 80%;
    height: 80%;
    border-color: rgba(255, 165, 0, .2);
    border-style: dashed;
    animation-duration: 12s;
    animation-direction: reverse;
}

.fet-ring3 {
    width: 60%;
    height: 60%;
    border-color: rgba(255, 215, 0, .25);
    animation-duration: 8s;
}

@keyframes tokenSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Orbit dots */
.fet-orbit-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 12px rgba(255, 215, 0, .9), 0 0 24px rgba(255, 215, 0, .5);
    animation: orbitCircle linear infinite;
}

.fet-od1 {
    width: 170px;
    height: 170px;
    top: 50%;
    left: 50%;
    margin: -85px 0 0 -85px;
    background: transparent;
    box-shadow: none;
    animation: orbitCircle 6s linear infinite;
}

.fet-od2 {
    width: 240px;
    height: 240px;
    top: 50%;
    left: 50%;
    margin: -120px 0 0 -120px;
    background: transparent;
    box-shadow: none;
    animation: orbitCircle 10s linear infinite reverse;
}

.fet-od3 {
    width: 310px;
    height: 310px;
    top: 50%;
    left: 50%;
    margin: -155px 0 0 -155px;
    background: transparent;
    box-shadow: none;
    animation: orbitCircle 15s linear infinite;
}

/* Use pseudo for actual dot on orbit */
.fet-od1::after,
.fet-od2::after,
.fet-od3::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 8px;
    height: 8px;
    margin-left: -4px;
    margin-top: -4px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 10px rgba(255, 215, 0, .9), 0 0 20px rgba(255, 215, 0, .5);
}

.fet-od2::after {
    width: 6px;
    height: 6px;
    background: var(--orange);
}

.fet-od3::after {
    width: 5px;
    height: 5px;
    background: rgba(255, 215, 0, .6);
}

@keyframes orbitCircle {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Glow burst behind coin */
.fet-glow-burst {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 165, 0, .6) 0%, rgba(255, 215, 0, .3) 30%, transparent 70%);
    filter: blur(25px);
    animation: burstPulse 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes burstPulse {

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

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

/* Coin */
.fet-coin {
    position: relative;
    z-index: 2;

    border-radius: 50%;
   
    display: flex;
    align-items: center;
    justify-content: center;
    
    animation: floatY 4s ease-in-out infinite;
}

.fet-coin-img {
    object-fit: contain;
    filter: drop-shadow(0 0 16px rgba(255, 215, 0, .8));
}

/* ===================== SKILLED GAMING BANNER — REDESIGN ===================== */
.sec-skilled-banner {
    position: relative;
    overflow: hidden;
    padding: 6rem 0 5rem;
    background: var(--bg1);
    background-image: url(../images/background/bg1234.jpg);
    border-top: 1px solid rgba(255, 215, 0, .08);
    border-bottom: 1px solid rgba(255, 215, 0, .08);
}
/* BG */
.sg-bg-layer { position:absolute; inset:0; overflow:hidden; }
.sg-bg-img {
    width:100%; height:100%; object-fit:cover;
    opacity:.11; filter:blur(4px) saturate(1.5); transform:scale(1.05);
}
.sg-bg-dark {
    position:absolute; inset:0;
    background:linear-gradient(
        140deg,
        rgba(4,3,1,.97) 0%,
        rgba(10,8,2,.9) 40%,
        rgba(18,14,3,.88) 70%,
        rgba(4,3,1,.97) 100%
    );
}

.sg-orb {
    position:absolute; border-radius:50%;
    pointer-events:none; filter:blur(70px);
    animation:orbFloat 9s ease-in-out infinite;
}
.sg-orb1 {
    width:500px; height:500px; top:-120px; right:-60px;
    background:radial-gradient(circle, rgba(255,215,0,.18) 0%, transparent 65%);
    animation-delay:0s;
}
.sg-orb2 {
    width:340px; height:340px; bottom:-80px; left:5%;
    background:radial-gradient(circle, rgba(255,140,0,.15) 0%, transparent 65%);
    animation-delay:4s;
}
.sg-orb3 {
    width:220px; height:220px; top:45%; left:42%;
    background:radial-gradient(circle, rgba(255,215,0,.1) 0%, transparent 70%);
    animation-delay:7s;
}

/* Inner */
.sg-inner {
    position:relative; z-index:2;
    padding-top:1rem; padding-bottom:1rem;
}

/* ── HEADER ── */
.sg-header {
    text-align:center; margin-bottom:3rem;
}
.sg-main-title {
    font-family:var(--r);
    font-size:clamp(2.2rem, 5.2vw, 4rem);
    font-weight:900; letter-spacing:4px;
    text-transform:uppercase; line-height:1.1;
    color:var(--tw);
}
.sg-header-sub {
    color:var(--tm); font-size:.98rem;
    max-width:560px; margin:.6rem auto 0; line-height:1.8;
}

/* ── MARKET STATS STRIP ── */
.sg-market-strip {
    display:flex; align-items:center; justify-content:center;
    gap:0; flex-wrap:wrap;
    background:rgba(255,215,0,.05);
    border:1px solid rgba(255,215,0,.15);
    border-radius:18px; padding:1.2rem 2rem;
    margin-bottom:3.5rem;
    position:relative; overflow:hidden;
}
.sg-market-strip::before {
    content:''; position:absolute; inset:0;
    background:linear-gradient(90deg, transparent, rgba(255,215,0,.04), transparent);
    pointer-events:none;
}
.sg-mstat {
    display:flex; align-items:center; gap:.9rem;
    padding:.5rem 2.5rem; flex:1; min-width:180px;
}
.sg-mstat-icon {
    width:42px; height:42px; flex-shrink:0;
    background:linear-gradient(135deg, var(--gold), var(--orange));
    border-radius:10px;
    display:flex; align-items:center; justify-content:center;
    font-size:1rem; color:#080500;
    box-shadow:0 4px 14px rgba(255,215,0,.35);
}
.sg-mstat-info { display:flex; flex-direction:column; }
.sg-mstat-n {
    font-family:var(--r); font-size:1.35rem; font-weight:800;
    color:var(--gold); line-height:1;
    text-shadow:0 0 12px rgba(255,215,0,.35);
}
.sg-mstat-l {
    font-size:.72rem; color:var(--ts);
    text-transform:uppercase; letter-spacing:1px; margin-top:.18rem;
}
.sg-mstat-div {
    width:1px; height:52px;
    background:rgba(255,215,0,.15); flex-shrink:0;
}

/* ── MAIN GRID ── */
.sg-main-grid {
    display:grid; grid-template-columns:1.2fr 1fr;
    gap:4rem; align-items:start;
}

/* ── LEFT: Content ── */
.sg-content-col { display:flex; flex-direction:column; gap:1.6rem; }

/* Intro card */
.sg-intro-card {
    display:flex; align-items:flex-start; gap:1.1rem;
    background:rgba(255,215,0,.05);
    border:1px solid rgba(255,215,0,.16);
    border-left:3px solid var(--gold);
    border-radius:0 16px 16px 0;
    padding:1.3rem 1.5rem;
}
.sg-intro-icon {
    width:44px; height:44px; flex-shrink:0;
    background:linear-gradient(135deg, var(--gold), var(--orange));
    border-radius:12px;
    display:flex; align-items:center; justify-content:center;
    font-size:1.15rem; color:#080500;
    box-shadow:0 4px 14px rgba(255,215,0,.35);
}
.sg-intro-card p {
    color:var(--tm); font-size:.95rem; line-height:1.85; margin:0;
}

/* VS divider */
.sg-vs-head {
    display:flex; align-items:center; gap:1rem;
}
.sg-vs-line {
    flex:1; height:1px;
    background:linear-gradient(90deg, transparent, rgba(255,215,0,.3), transparent);
}
.sg-vs-head h3 {
    font-family:var(--r); font-size:1.1rem; font-weight:800;
    color:var(--gold); letter-spacing:2px; text-transform:uppercase;
    white-space:nowrap; display:flex; align-items:center; gap:.5rem;
}
.sg-vs-head h3 i { font-size:1rem; }

/* Category cards grid */
.sg-cat-grid {
    display:grid; grid-template-columns:1fr 1fr;
    gap:.9rem;
}
.sg-cat-full { grid-column:1 / -1; }

.sg-cat-card {
    background:rgba(255,215,0,.04);
    border:1px solid rgba(255,215,0,.12);
    border-radius:18px; padding:1.3rem 1.3rem 1rem;
    transition:all .35s; position:relative; overflow:hidden;
}
.sg-cat-card::after {
    content:''; position:absolute; bottom:0; left:0; right:0; height:2px;
    background:linear-gradient(90deg, transparent, rgba(255,215,0,.3), transparent);
    opacity:0; transition:opacity .3s;
}
.sg-cat-card:hover::after { opacity:1; }
.sg-cat-card:hover {
    border-color:rgba(255,215,0,.4);
    background:rgba(255,215,0,.08);
    transform:translateY(-4px);
    box-shadow:0 12px 36px rgba(255,215,0,.12);
}

/* Skill card — gold accent */
.sg-cat-skill {
    border-color:rgba(255,215,0,.22);
    background:rgba(255,215,0,.06);
}

/* Card top row */
.sg-cat-top {
    display:flex; align-items:center; justify-content:space-between;
    margin-bottom:.75rem;
}
.sg-cat-icon {
    width:42px; height:42px;
    background:linear-gradient(135deg, var(--gold), var(--orange));
    border-radius:11px;
    display:flex; align-items:center; justify-content:center;
    font-size:1rem; color:#080500;
    box-shadow:0 4px 14px rgba(255,215,0,.3);
}
.sg-cat-badge {
    font-family:var(--r); font-size:.62rem; font-weight:800;
    letter-spacing:1.5px; color:#080500;
    background:linear-gradient(135deg, var(--gold), var(--orange));
    padding:.18rem .6rem; border-radius:20px;
    box-shadow:0 3px 10px rgba(255,215,0,.35);
}
.sg-badge-dim {
    background:rgba(255,215,0,.12); color:rgba(255,165,0,.6);
    box-shadow:none;
}
.sg-badge-hybrid {
    background:linear-gradient(135deg, rgba(255,140,0,.3), rgba(255,215,0,.2));
    color:var(--gold);
    box-shadow:none;
}

.sg-cat-card h4 {
    font-family:var(--r); font-size:1rem; font-weight:800;
    color:var(--tw); margin-bottom:.4rem; letter-spacing:.3px;
}
.sg-cat-card p {
    color:var(--tm); font-size:.84rem; line-height:1.75; margin:0 0 .75rem;
}

/* Example tags */
.sg-cat-examples {
    display:flex; gap:.4rem; flex-wrap:wrap;
}
.sg-cat-examples span {
    font-family:var(--r); font-size:.68rem; font-weight:700;
    letter-spacing:.8px; color:rgba(255,165,0,.7);
    background:rgba(255,165,0,.08);
    border:1px solid rgba(255,165,0,.2);
    border-radius:20px; padding:.15rem .6rem;
}

/* ── RIGHT: Visual ── */
.sg-visual-col {
    display:flex; flex-direction:column; align-items:center; gap:1.8rem;
    position:sticky; top:100px;
}

/* Character showcase */
.sg-char-showcase {
    position:relative;
    width:100%; display:flex; align-items:center; justify-content:center;
    min-height:340px;
}
.sg-char-glow {
    position:absolute; width:280px; height:280px; border-radius:50%;
    background:radial-gradient(circle, rgba(255,165,0,.4) 0%, rgba(255,215,0,.12) 40%, transparent 70%);
    filter:blur(35px);
    animation:burstPulse 3.5s ease-in-out infinite;
}
.sg-char-ring {
    position:absolute; border-radius:50%;
    pointer-events:none;
}
.sg-char-ring1 {
    width:280px; height:280px;
    border:1px solid rgba(255,215,0,.15);
    animation:bcHubSpin 20s linear infinite;
}
.sg-char-ring2 {
    width:220px; height:220px;
    border:1px dashed rgba(255,165,0,.18);
    animation:bcHubSpin 14s linear infinite reverse;
}
.sg-char-img {
    height:320px; width:auto; object-fit:contain;
    position:relative; z-index:2;
    filter:drop-shadow(0 0 30px rgba(255,215,0,.35));
    animation:floatY 4s ease-in-out infinite;
}

/* Floating badges on character */
.sg-float-badge {
    position:absolute; z-index:5;
    display:flex; align-items:center; gap:.45rem;
    background:rgba(6,4,1,.92);
    border:1px solid rgba(255,215,0,.3);
    border-radius:50px; padding:.4rem .9rem;
    font-size:.78rem; font-weight:700; color:var(--gold);
    backdrop-filter:blur(12px);
    box-shadow:0 4px 20px rgba(0,0,0,.5), 0 0 12px rgba(255,215,0,.12);
    animation:floatY 5s ease-in-out infinite;
}
.sg-float-badge i { font-size:.85rem; }
.sg-fb-top { top:10px; left:0; animation-delay:0s; }
.sg-fb-bot { bottom:20px; right:0; animation-delay:2s; }

/* Feature list */
.sg-feature-list {
    width:100%;
    display:flex; flex-direction:column; gap:.6rem;
    background:rgba(255,215,0,.04);
    border:1px solid rgba(255,215,0,.12);
    border-radius:16px; padding:1.2rem 1.4rem;
}
.sg-feat-item {
    display:flex; align-items:center; gap:.8rem;
    font-size:.88rem; color:var(--tm);
}
.sg-feat-dot {
    width:8px; height:8px; border-radius:50%; flex-shrink:0;
    background:linear-gradient(135deg, var(--gold), var(--orange));
    box-shadow:0 0 8px rgba(255,215,0,.5);
}

/* CTA button */
.sg-cta { width:100%; justify-content:center; }

/* ===================== HOW CRYPTO WORKS — REDESIGN ===================== */
.sec-hcw {
    position: relative;
    overflow: hidden;
    padding: 6rem 0 5rem;
    background: var(--bg0);
    border-top: 1px solid rgba(255,215,0,.08);
    border-bottom: 1px solid rgba(255,215,0,.08);
}

/* BG */
.hcw-bg-layer { position:absolute; inset:0; overflow:hidden; }
.hcw-bg-img {
    width:100%; height:100%; object-fit:cover;
    opacity:.1; filter:blur(5px) saturate(1.3); transform:scale(1.05);
}
.hcw-bg-dark {
    position:absolute; inset:0;
    background:linear-gradient(
        160deg,
        rgba(4,3,1,.97) 0%,
        rgba(10,8,2,.91) 45%,
        rgba(16,12,3,.9) 75%,
        rgba(4,3,1,.97) 100%
    );
}

.hcw-orb {
    position: absolute; border-radius: 50%;
    pointer-events: none; filter: blur(70px);
    animation: orbFloat 9s ease-in-out infinite;
}
.hcw-orb1 {
    width:420px; height:420px; top:-100px; left:3%;
    background:radial-gradient(circle, rgba(255,215,0,.18) 0%, transparent 65%);
    animation-delay:0s;
}
.hcw-orb2 {
    width:320px; height:320px; bottom:-80px; right:5%;
    background:radial-gradient(circle, rgba(255,140,0,.15) 0%, transparent 65%);
    animation-delay:3s;
}
.hcw-orb3 {
    width:200px; height:200px; top:40%; left:48%;
    background:radial-gradient(circle, rgba(255,215,0,.1) 0%, transparent 70%);
    animation-delay:6s;
}

/* Inner */
.hcw-inner {
    position:relative; z-index:2;
    padding-top:1rem; padding-bottom:1rem;
}

/* ── HEADER ── */
.hcw-header {
    text-align:center; margin-bottom:3.5rem;
}
.hcw-main-title {
    font-family:var(--r);
    font-size:clamp(2rem, 5vw, 3.8rem);
    font-weight:900; letter-spacing:4px;
    text-transform:uppercase; line-height:1.1;
    color:var(--tw);
}
.hcw-sub-text {
    color:var(--tm); font-size:.98rem;
    max-width:580px; margin:0 auto; line-height:1.8;
}

/* ── STEPS GRID: 5 cards in a row ── */
.hcw-steps-grid {
    display:grid;
    grid-template-columns:repeat(5, 1fr);
    gap:1rem;
    align-items:stretch;
    margin-bottom:1.5rem;
}

/* ── STEP CARD ── */
.hcw-card {
    position:relative;
    display:flex; flex-direction:column; align-items:center;
    text-align:center; gap:.9rem;
    background:rgba(255,215,0,.04);
    border:1px solid rgba(255,215,0,.14);
    border-radius:20px;
    padding:2rem 1.2rem 1.5rem;
    transition:all .35s;
    overflow:hidden;
}
.hcw-card::before {
    content:''; position:absolute; inset:0; border-radius:20px;
    background:linear-gradient(160deg, rgba(255,215,0,.06), transparent 60%);
    opacity:0; transition:opacity .35s;
}
.hcw-card:hover::before { opacity:1; }
.hcw-card:hover {
    border-color:rgba(255,215,0,.45);
    transform:translateY(-6px);
    box-shadow:0 16px 48px rgba(255,215,0,.14);
}

/* Final step — accent */
.hcw-card-final {
    background:rgba(255,215,0,.07);
    border-color:rgba(255,215,0,.28);
    box-shadow:0 0 28px rgba(255,215,0,.08);
}
.hcw-card-final:hover {
    border-color:rgba(255,215,0,.6);
    box-shadow:0 16px 52px rgba(255,215,0,.22);
}

/* Step number badge */
.hcw-card-num {
    position:absolute; top:-1px; left:50%; transform:translateX(-50%);
    font-family:var(--r); font-size:.72rem; font-weight:800;
    color:#080500; letter-spacing:1px;
    background:linear-gradient(135deg, var(--gold-dk), var(--orange));
    padding:.15rem .7rem; border-radius:0 0 10px 10px;
    box-shadow:0 4px 12px rgba(255,215,0,.35);
}
.hcw-num-gold {
    background:linear-gradient(135deg, var(--gold), var(--gold-lt));
    box-shadow:0 4px 16px rgba(255,215,0,.55);
}

/* Icon wrapper */
.hcw-card-icon-wrap {
    position:relative;
    width:72px; height:72px;
    display:flex; align-items:center; justify-content:center;
    margin-top:.4rem;
}
.hcw-card-icon-ring {
    position:absolute; inset:0; border-radius:16px;
    border:1.5px solid rgba(255,215,0,.3);
    background:rgba(255,215,0,.05);
    transform:rotate(45deg);
    transition:all .3s;
    box-shadow:0 0 14px rgba(255,215,0,.1);
}
.hcw-card:hover .hcw-card-icon-ring {
    border-color:rgba(255,215,0,.65);
    box-shadow:0 0 26px rgba(255,215,0,.28);
}
.hcw-ring-gold {
    background:linear-gradient(135deg, rgba(255,215,0,.15), rgba(255,140,0,.08));
    border-color:rgba(255,215,0,.55);
    box-shadow:0 0 22px rgba(255,215,0,.22);
}
.hcw-card-icon {
    position:relative; z-index:1;
    font-size:1.75rem; color:var(--gold);
    filter:drop-shadow(0 0 10px rgba(255,215,0,.5));
    transition:all .3s;
}
.hcw-card:hover .hcw-card-icon {
    filter:drop-shadow(0 0 20px rgba(255,215,0,.85));
}
.hcw-icon-gold { color:var(--gold-lt); filter:drop-shadow(0 0 16px rgba(255,215,0,.7)); }

/* Card body text */
.hcw-card-body h4 {
    font-family:var(--r); font-size:.9rem; font-weight:800;
    color:var(--gold); letter-spacing:.5px;
    text-transform:uppercase; margin-bottom:.35rem; line-height:1.3;
}
.hcw-card-body p {
    color:var(--tm); font-size:.8rem; line-height:1.7; margin:0;
}

/* Arrow indicator (shows on cards 1-4) */
.hcw-card-arrow {
    position:absolute; right:-1px; top:50%; transform:translateY(-50%);
    width:22px; height:22px; border-radius:50%;
    background:rgba(255,215,0,.12);
    border:1px solid rgba(255,215,0,.25);
    display:flex; align-items:center; justify-content:center;
    font-size:.6rem; color:rgba(255,215,0,.6);
    z-index:10;
}

/* ── FLOW CONNECTOR BAR ── */
.hcw-flow-bar {
    display:flex; align-items:center;
    padding:0 calc(100% / 10);
    margin-bottom:2.5rem;
}
.hcw-fb-dot {
    width:12px; height:12px; border-radius:50%; flex-shrink:0;
    background:rgba(255,215,0,.35);
    border:2px solid rgba(255,215,0,.6);
    box-shadow:0 0 10px rgba(255,215,0,.3);
    animation:chainPulse 2.5s ease-in-out infinite;
}
.hcw-fb-dot2 { animation-delay:.5s; }
.hcw-fb-dot3 { animation-delay:1s; }
.hcw-fb-dot4 { animation-delay:1.5s; }
.hcw-fb-gold {
    width:16px; height:16px;
    background:var(--gold);
    border-color:var(--gold-lt);
    box-shadow:0 0 18px rgba(255,215,0,.7);
    animation-delay:2s;
}
.hcw-fb-line {
    flex:1; height:2px;
    background:repeating-linear-gradient(
        90deg,
        rgba(255,215,0,.5) 0px, rgba(255,215,0,.5) 6px,
        transparent 6px, transparent 14px
    );
}

/* ── STAT STRIP ── */
.hcw-stat-strip {
    display:flex; align-items:center; justify-content:center;
    gap:0; flex-wrap:wrap;
    background:rgba(255,215,0,.04);
    border:1px solid rgba(255,215,0,.12);
    border-radius:16px; padding:1.2rem 2rem;
}
.hcw-stat {
    display:flex; flex-direction:column; align-items:center; gap:.25rem;
    padding:.4rem 2.5rem;
}
.hcw-stat i {
    font-size:1.3rem; color:var(--gold);
    margin-bottom:.1rem;
    filter:drop-shadow(0 0 8px rgba(255,215,0,.5));
}
.hcw-stat-n {
    font-family:var(--r); font-size:1.35rem; font-weight:800;
    color:var(--gold); line-height:1;
}
.hcw-stat-l {
    font-size:.7rem; color:var(--ts);
    text-transform:uppercase; letter-spacing:1px;
}
.hcw-stat-div {
    width:1px; height:50px;
    background:rgba(255,215,0,.15);
    flex-shrink:0;
}

/* ===================== BLOCKCHAIN BANNER — REDESIGN ===================== */
.sec-blockchain-banner {
    position: relative;
    overflow: hidden;
    padding: 6rem 0 5rem;
    border-top: 1px solid rgba(255, 215, 0, .08);
    border-bottom: 1px solid rgba(255, 215, 0, .08);
    background-image: url(../images/background/bf12564.jpg);
}

/* BG layers */
.bc-bg-layer {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.bc-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .12;
    filter: blur(4px) saturate(1.4);
    transform: scale(1.05);
}

.bc-bg-dark {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(4, 3, 1, .97) 0%,
            rgba(10, 8, 2, .90) 40%,
            rgba(18, 13, 3, .88) 70%,
            rgba(4, 3, 1, .97) 100%);
}

/* Animated glow orbs */
.bc-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(70px);
    opacity: .5;
    animation: orbFloat 9s ease-in-out infinite;
}

.bc-orb1 {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(255, 215, 0, .22) 0%, transparent 70%);
    top: -120px;
    right: -80px;
    animation-delay: 0s;
}

.bc-orb2 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 140, 0, .18) 0%, transparent 70%);
    bottom: -80px;
    left: 8%;
    animation-delay: 3.5s;
}

.bc-orb3 {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 215, 0, .12) 0%, transparent 70%);
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    animation-delay: 6s;
}

/* Inner container */
.bc-inner {
    position: relative;
    z-index: 2;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* ── HEADER ── */
.bc-header {
    text-align: center;
    margin-bottom: 4rem;
}

.bc-main-title {
    font-family: var(--r);
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    line-height: 1.1;
    color: var(--tw);
    margin-bottom: .4rem;
}

.bc-intro-text {
    color: var(--tm);
    font-size: clamp(.95rem, 1.5vw, 1.1rem);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.9;
}

/* ── MAIN GRID ── */
.bc-main-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 4rem;
    align-items: center;
}

/* ══ LEFT: Blockchain Visual ══ */
.bc-visual-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.bc-chain-visual {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Background glow */
.bc-vis-glow {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 165, 0, .35) 0%, rgba(255, 215, 0, .1) 40%, transparent 70%);
    filter: blur(30px);
    animation: burstPulse 3.5s ease-in-out infinite;
}

/* Central hub */
.bc-hub {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bc-hub-ring {
    position: absolute;
    border-radius: 50%;
    animation: bcHubSpin linear infinite;
}

.bc-hub-ring1 {
    width: 110px;
    height: 110px;
    border: 1.5px solid rgba(255, 215, 0, .35);
    animation-duration: 12s;
}

.bc-hub-ring2 {
    width: 82px;
    height: 82px;
    border: 1px dashed rgba(255, 165, 0, .3);
    animation-duration: 8s;
    animation-direction: reverse;
}

.bc-hub-core {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #080500;
    box-shadow:
        0 0 0 8px rgba(255, 215, 0, .1),
        0 0 30px rgba(255, 215, 0, .65),
        0 0 60px rgba(255, 165, 0, .35);
    z-index: 2;
    position: relative;
}

/* Orbit blocks */
.bc-orbit {
    position: absolute;
    border-radius: 50%;
    animation: bcOrbitSpin linear infinite;
}

.bc-orbit1 {
    width: 240px;
    height: 240px;
    animation-duration: 16s;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bc-orbit2 {
    width: 240px;
    height: 240px;
    animation-duration: 22s;
    animation-direction: reverse;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bc-orbit3 {
    width: 290px;
    height: 290px;
    animation-duration: 28s;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bc-orbit4 {
    width: 290px;
    height: 290px;
    animation-duration: 20s;
    animation-direction: reverse;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Block nodes on orbits — positioned at top of each orbit circle */
.bc-block-node {
    position: absolute;
    top: -26px;
    left: 50%;
    transform: translateX(-50%);
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(8, 6, 2, .92);
    border: 1.5px solid rgba(255, 215, 0, .4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    font-size: .75rem;
    color: var(--gold);
    box-shadow: 0 0 18px rgba(255, 215, 0, .3), 0 4px 16px rgba(0, 0, 0, .5);
    animation: blockNodeGlow 3s ease-in-out infinite;
    pointer-events: none;
}

.bc-block-node span {
    font-family: var(--r);
    font-size: .5rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--tm);
    text-transform: uppercase;
}

.bc-bn2 {
    animation-delay: .8s;
}

.bc-bn3 {
    animation-delay: 1.6s;
}

.bc-bn4 {
    animation-delay: 2.4s;
}

@keyframes blockNodeGlow {

    0%,
    100% {
        box-shadow: 0 0 12px rgba(255, 215, 0, .2);
        border-color: rgba(255, 215, 0, .35);
    }

    50% {
        box-shadow: 0 0 28px rgba(255, 215, 0, .65);
        border-color: rgba(255, 215, 0, .8);
    }
}

/* SVG connecting lines */
.bc-connect-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: .6;
}

/* Chain strip */
.bc-chain-strip {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 215, 0, .04);
    border: 1px solid rgba(255, 215, 0, .15);
    border-radius: 50px;
    padding: .6rem 1.2rem;
    width: 100%;
    justify-content: center;
}

.bc-cs-node {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 215, 0, .08);
    border: 1px solid rgba(255, 215, 0, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    color: var(--gold);
    animation: chainPulse 2.5s ease-in-out infinite;
    flex-shrink: 0;
}

.bc-cs-node:nth-child(3) {
    animation-delay: .5s;
}

.bc-cs-node:nth-child(5) {
    animation-delay: 1s;
}

.bc-cs-node:nth-child(7) {
    animation-delay: 1.5s;
}

.bc-cs-node:nth-child(9) {
    animation-delay: 2s;
}

.bc-cs-gold {
    background: linear-gradient(135deg, rgba(255, 215, 0, .2), rgba(255, 140, 0, .12));
    border-color: rgba(255, 165, 0, .5);
    color: var(--orange);
}

.bc-cs-line {
    flex: 1;
    height: 2px;
    max-width: 28px;
    background: linear-gradient(90deg, rgba(255, 215, 0, .4), rgba(255, 165, 0, .4));
    border-radius: 1px;
}

/* ══ RIGHT: Content ══ */
.bc-content-col {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

/* Definition cards */
.bc-def-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bc-def-card {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    background: rgba(255, 215, 0, .04);
    border: 1px solid rgba(255, 215, 0, .14);
    border-radius: 18px;
    padding: 1.4rem 1.5rem;
    transition: all .35s;
    border-left: 3px solid rgba(255, 215, 0, .4);
}

.bc-def-card-alt {
    border-left-color: rgba(255, 165, 0, .5);
    background: rgba(255, 165, 0, .035);
}

.bc-def-card:hover {
    border-color: rgba(255, 215, 0, .5);
    background: rgba(255, 215, 0, .08);
    transform: translateX(6px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, .12);
}

.bc-def-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #080500;
    box-shadow: 0 5px 18px rgba(255, 215, 0, .35);
    margin-top: .1rem;
}

.bc-def-text h4 {
    font-family: var(--r);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--tw);
    margin-bottom: .35rem;
    letter-spacing: .5px;
}

.bc-def-text p {
    color: var(--tm);
    font-size: .92rem;
    line-height: 1.8;
    margin: 0;
}

/* Inner divider with label */
.bc-inner-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bc-inner-divider::before,
.bc-inner-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, .3), transparent);
}

.bc-inner-divider span {
    font-family: var(--r);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: rgba(255, 215, 0, .5);
    text-transform: uppercase;
    white-space: nowrap;
}

/* Feature cards grid */
.bc-feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.bc-feat-card {
    background: rgba(255, 215, 0, .04);
    border: 1px solid rgba(255, 215, 0, .12);
    border-radius: 18px;
    padding: 1.3rem 1.2rem;
    transition: all .3s;
    position: relative;
    overflow: hidden;
}

.bc-feat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 215, 0, .06), transparent);
    opacity: 0;
    transition: opacity .3s;
}

.bc-feat-card:hover::before {
    opacity: 1;
}

.bc-feat-card:hover {
    border-color: rgba(255, 215, 0, .42);
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(255, 215, 0, .12);
}

.bc-feat-card-center {
    background: rgba(255, 215, 0, .07);
    border-color: rgba(255, 215, 0, .25);
}

.bc-feat-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .9rem;
}

.bc-feat-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    color: #080500;
    box-shadow: 0 4px 14px rgba(255, 215, 0, .35);
}

.bc-feat-num {
    font-family: var(--r);
    font-size: 1.6rem;
    font-weight: 900;
    color: rgba(255, 215, 0, .12);
    line-height: 1;
    letter-spacing: 1px;
}

.bc-feat-card h4 {
    font-family: var(--r);
    font-size: .98rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: .45rem;
    letter-spacing: .3px;
}

.bc-feat-card p {
    color: var(--tm);
    font-size: .84rem;
    line-height: 1.75;
    margin: 0;
}

/* Animation reuse */
@keyframes bcOrbitSpin {
    from {
        transform: translate(-50%, -50%) rotate(0deg)
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg)
    }
}

@keyframes bcHubSpin {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

@keyframes burstPulse {

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

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

@keyframes chainPulse {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(255, 215, 0, .15);
        border-color: rgba(255, 215, 0, .25);
    }

    50% {
        box-shadow: 0 0 22px rgba(255, 215, 0, .5);
        border-color: rgba(255, 215, 0, .7);
    }
}

/* ===================== GAMES ===================== */
.sec-games {
    padding: 5.5rem 0;
    position: relative;
    overflow: hidden;
    background: var(--bg2);
}

/* Characters row */
.chars-row {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.char-card {
    text-align: center;
    width: 120px;
    transition: all .3s;
    cursor: pointer;
}

.char-card img {
    width: 100%;
    max-height: 160px;
    object-fit: contain;
    filter: drop-shadow(0 4px 16px rgba(255, 215, 0, .2));
    transition: all .3s;
}

.char-card:hover img {
    filter: drop-shadow(0 8px 28px rgba(255, 215, 0, .55));
    transform: translateY(-8px) scale(1.05);
}

.char-card.char-big {
    width: 155px;
}

.char-card.char-big img {
    max-height: 210px;
}

.char-label {
    font-family: var(--r);
    font-size: .78rem;
    font-weight: 600;
    color: var(--ts);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: .5rem;
}

/* Game cards */
.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gcard {
    background: var(--card);
    border: 1px solid var(--cborder);
    border-radius: 18px;
    padding: 1.8rem 1.5rem;
    transition: all .3s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gcard::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, .07), transparent);
    opacity: 0;
    transition: opacity .3s;
}

.gcard:hover {
    transform: translateY(-7px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(255, 215, 0, .18);
}

.gcard:hover::before {
    opacity: 1;
}

.gcard-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #080500;
    margin-bottom: 1.1rem;
    box-shadow: 0 5px 18px rgba(255, 215, 0, .35);
}

.gcard h3 {
    font-family: var(--r);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--tw);
    margin-bottom: .5rem;
}

.gcard p {
    color: var(--tm);
    font-size: .88rem;
    line-height: 1.65;
}

.gtag {
    display: inline-block;
    margin-top: .9rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(255, 215, 0, .3);
    background: rgba(255, 215, 0, .07);
    padding: .2rem .75rem;
    border-radius: 20px;
}

/* ===================== WHY ===================== */
.sec-why {
    padding: 5.5rem 0;
    background: var(--bg1);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.why-left p {
    color: var(--tm);
    font-size: .98rem;
    margin-top: .5rem;
    margin-bottom: 1.5rem;
}

.why-img-wrap {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
}

.why-img {
    width: 100%;
    border-radius: 18px;
    border: 1px solid var(--cborder);
    max-height: 280px;
    object-fit: cover;
    opacity: .85;
}

.why-img-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(0deg, rgba(6, 5, 3, .9), transparent);
}

.why-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
}

.why-card {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    background: var(--card);
    border: 1px solid var(--cborder);
    border-radius: 14px;
    padding: 1.1rem 1.1rem;
    transition: all .3s;
}

.why-card:hover {
    border-color: var(--gold);
    background: rgba(255, 215, 0, .07);
    transform: translateY(-3px);
}

.why-ic {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #080500;
    box-shadow: 0 4px 14px rgba(255, 215, 0, .3);
}

.why-card h4 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--tw);
    margin-bottom: .2rem;
}

.why-card p {
    color: var(--ts);
    font-size: .83rem;
    margin: 0;
    line-height: 1.55;
}

/* ===================== CRYPTO ===================== */
.sec-crypto {
    padding: 5.5rem 0;
    position: relative;
    overflow: hidden;
    background: var(--bg2);
}

.crypto-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 4rem;
    align-items: center;
}

.crypto-left p {
    color: var(--tm);
    font-size: .98rem;
    line-height: 1.85;
    margin-bottom: 1rem;
}

.ctype-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.8rem;
}

.ctype {
    display: flex;
    align-items: flex-start;
    gap: .8rem;
    background: var(--card);
    border: 1px solid var(--cborder);
    border-radius: 12px;
    padding: 1rem;
    transition: all .3s;
}

.ctype:hover {
    border-color: var(--gold);
    background: rgba(255, 215, 0, .08);
    transform: translateY(-3px);
}

.ctype-ic {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #080500;
}

.ctype h4 {
    font-size: .9rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: .2rem;
}

.ctype p {
    color: var(--ts);
    font-size: .8rem;
    line-height: 1.5;
    margin: 0;
}

/* Crypto image stack */
.crypto-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.crypto-img-stack {
    position: relative;
    width: 360px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cstack-img {
    position: absolute;
    border-radius: 16px;
    border: 1px solid var(--cborder);
    box-shadow: 0 0 40px rgba(255, 215, 0, .12);
}

.cstack-back {
    width: 55%;
    bottom: 0;
    left: 0;
    opacity: .5;
    transform: rotate(-6deg) scale(.88);
    filter: brightness(.7);
}

.cstack-mid {
    width: 55%;
    bottom: 20px;
    right: 0;
    opacity: .65;
    transform: rotate(5deg) scale(.9);
    filter: brightness(.8);
}

.cstack-front {
    width: 78%;
    z-index: 2;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 60px rgba(255, 215, 0, .2), 0 0 120px rgba(255, 165, 0, .1);
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, .35));
}

.cstack-glow {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 60px;
    background: radial-gradient(ellipse, rgba(255, 215, 0, .35) 0%, transparent 70%);
    filter: blur(20px);
}

/* ===================== BLOCKCHAIN ===================== */
.sec-blockchain {
    padding: 5.5rem 0;
    background: linear-gradient(180deg, var(--bg3), var(--bg1));
}

.bc-two {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3.5rem;
}

.bc-card {
    background: var(--card);
    border: 1px solid var(--cborder);
    border-radius: 18px;
    padding: 2rem;
    transition: all .3s;
}

.bc-card:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 40px rgba(255, 215, 0, .14);
    transform: translateY(-4px);
}

.bc-ic {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #080500;
    margin-bottom: .9rem;
    box-shadow: 0 4px 18px rgba(255, 215, 0, .35);
}

.bc-card h3 {
    font-family: var(--r);
    font-size: 1.35rem;
    color: var(--gold);
    margin-bottom: .5rem;
}

.bc-card p {
    color: var(--tm);
    font-size: .92rem;
    line-height: 1.7;
}

.bc-mid-img {
    position: relative;
    width: 180px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bc-mid-img img {
    width: 100%;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, .4));
}

.bc-mid-glow {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 40px;
    background: radial-gradient(ellipse, rgba(255, 215, 0, .4) 0%, transparent 70%);
    filter: blur(14px);
}

.bc-secure-box {
    background: var(--card);
    border: 1px solid var(--cborder);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
}

.bc-secure-title {
    font-family: var(--r);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: .4rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.bc-secure-sub {
    color: var(--tm);
    margin-bottom: 2rem;
}

.bc-secure-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.bc-sc-card {
    background: rgba(255, 215, 0, .04);
    border: 1px solid rgba(255, 215, 0, .1);
    border-radius: 16px;
    padding: 1.8rem 1.3rem;
    text-align: left;
    transition: all .3s;
}

.bc-sc-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 30px rgba(255, 215, 0, .14);
    transform: translateY(-4px);
}

.bc-sc-ic {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #080500;
    margin-bottom: .9rem;
    box-shadow: 0 4px 16px rgba(255, 215, 0, .3);
}

.bc-sc-card h4 {
    font-family: var(--r);
    font-size: 1.15rem;
    color: var(--gold);
    margin-bottom: .4rem;
}

.bc-sc-card p {
    color: var(--tm);
    font-size: .87rem;
    line-height: 1.7;
}

/* ===================== HOW IT WORKS ===================== */
.sec-how {
    padding: 5.5rem 0;
    position: relative;
    overflow: hidden;
    background: var(--bg2);
}

.steps-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.step-card {
    background: var(--card);
    border: 1px solid var(--cborder);
    border-radius: 20px;
    padding: 2.2rem 1.8rem;
    text-align: center;
    flex: 1;
    min-width: 190px;
    max-width: 270px;
    transition: all .3s;
    position: relative;
}

.step-card:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(255, 215, 0, .18);
    transform: translateY(-7px);
}

.step-n {
    position: absolute;
    top: .9rem;
    right: 1.1rem;
    font-family: var(--r);
    font-size: 2.2rem;
    font-weight: 900;
    color: rgba(255, 215, 0, .07);
    line-height: 1;
}

.step-ic {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #080500;
    margin: 0 auto 1.1rem;
    box-shadow: 0 7px 22px rgba(255, 215, 0, .4);
}

.step-card h3 {
    font-family: var(--r);
    font-size: 1.2rem;
    color: var(--tw);
    margin-bottom: .4rem;
}

.step-card p {
    color: var(--tm);
    font-size: .88rem;
    line-height: 1.65;
}

.step-arr {
    font-size: 1.4rem;
    color: rgba(255, 215, 0, .3);
    flex-shrink: 0;
}

.howworks-bottom {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 4rem;
    align-items: center;
}

.hw-img-col {
    display: flex;
    justify-content: center;
}

.hw-img-frame {
    position: relative;
    display: flex;
    align-items: flex-end;
    width: 100%;
    max-width: 340px;
}

.hw-img-frame>img:first-child {
    width: 65%;
    filter: drop-shadow(0 0 25px rgba(255, 215, 0, .2));
}

.hw-img2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    border-radius: 16px;
    border: 2px solid var(--cborder);
    box-shadow: 0 0 30px rgba(255, 215, 0, .15);
}

.hw-col-title {
    font-family: var(--r);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--tw);
    margin-bottom: 1.8rem;
    padding-bottom: .9rem;
    border-bottom: 1px solid rgba(255, 215, 0, .15);
}

.hwf {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    background: var(--card);
    border: 1px solid var(--cborder);
    border-radius: 14px;
    padding: 1.2rem;
    margin-bottom: 1.1rem;
    transition: all .3s;
}

.hwf:hover {
    border-color: var(--gold);
    background: rgba(255, 215, 0, .07);
    transform: translateX(7px);
}

.hwf-num {
    font-family: var(--r);
    color: rgba(255, 215, 0, .35);
    font-size: .85rem;
    font-weight: 700;
    min-width: 38px;
}

.hwf-ic {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #080500;
}

.hwf h4 {
    font-size: .97rem;
    font-weight: 700;
    color: var(--tw);
    margin-bottom: .25rem;
}

.hwf p {
    color: var(--tm);
    font-size: .85rem;
    line-height: 1.6;
    margin: 0;
}

/* ===================== PACKAGES ===================== */
.sec-packages {
    padding: 5.5rem 0;
    position: relative;
    overflow: hidden;
}

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

.pkg-card {
    background: rgba(255, 215, 0, .04);
    border: 1px solid var(--cborder);
    border-radius: 22px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all .3s;
    position: relative;
}

.pkg-card:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(255, 215, 0, .18);
    transform: translateY(-8px);
}

.pkg-featured {
    background: linear-gradient(145deg, rgba(255, 215, 0, .12), rgba(255, 165, 0, .06));
    border-color: rgba(255, 215, 0, .5);
    box-shadow: 0 0 50px rgba(255, 215, 0, .2);
    transform: scale(1.05);
}

.pkg-featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pkg-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: #080500;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: .3rem 1.2rem;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(255, 215, 0, .4);
}

.pkg-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #080500;
    box-shadow: 0 6px 22px rgba(255, 215, 0, .4);
}

.pkg-card h3 {
    font-family: var(--r);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--tw);
    margin-bottom: .3rem;
}

.pkg-price {
    font-family: var(--r);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--gold);
    margin: .6rem 0 1.3rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, .4);
}

.pkg-list {
    list-style: none;
    text-align: left;
    margin-bottom: 1rem;
}

.pkg-list li {
    display: flex;
    align-items: center;
    gap: .7rem;
    color: var(--tm);
    font-size: .9rem;
    padding: .4rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, .07);
}

.pkg-list i {
    color: var(--gold);
    font-size: .85rem;
}

/* ===================== CTA ===================== */
.sec-cta {
    padding: 5.5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-flex {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 4rem;
    align-items: center;
}

.cta-text h2 {
    font-family: var(--r);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--tw);
    margin-bottom: 1rem;
}

.cta-text p {
    color: var(--tm);
    font-size: 1.02rem;
    margin-bottom: 1.5rem;
}

.cta-checks {
    list-style: none;
    margin-bottom: 2rem;
}

.cta-checks li {
    display: flex;
    align-items: center;
    gap: .65rem;
    color: var(--tm);
    font-size: .92rem;
    padding: .35rem 0;
}

.cta-checks i {
    color: var(--gold);
    font-size: 1.05rem;
}

.cta-img-col {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.cta-char {
    max-height: 320px;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, .25));
    position: relative;
    z-index: 1;
}

.cta-mob {
    position: absolute;
    bottom: 0;
    right: -10px;
    width: 45%;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, .2));
    z-index: 2;
}

/* ===================== FOOTER ===================== */
.footer {
    background: var(--bg1);
    border-top: 1px solid rgba(255, 215, 0, .12);
    padding: 4rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

.footer-glow-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    box-shadow: 0 0 40px 5px rgba(255, 215, 0, .25);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 52px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--ts);
    font-size: .88rem;
    line-height: 1.75;
    margin-bottom: 1.4rem;
}

.socials {
    display: flex;
    gap: .65rem;
    margin-bottom: 1.5rem;
}

.socials a {
    width: 36px;
    height: 36px;
    background: rgba(255, 215, 0, .07);
    border: 1px solid rgba(255, 215, 0, .18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: .85rem;
    transition: all .3s;
}

.socials a:hover {
    background: var(--gold);
    color: #080500;
    transform: translateY(-3px);
    border-color: var(--gold);
}

.footer-token {
    display: flex;
    align-items: center;
    gap: .6rem;
}

.footer-token img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, .5));
}

.footer-token span {
    font-family: var(--r);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
}

.footer-col h4 {
    font-family: var(--r);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: .6rem;
    border-bottom: 1px solid rgba(255, 215, 0, .12);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: .5rem;
}

.footer-col ul li a {
    color: var(--ts);
    font-size: .88rem;
    transition: color .2s;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.footer-col ul li a i {
    font-size: .65rem;
    color: var(--gold-dk);
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255, 215, 0, .1);
}

.footer-bottom p {
    color: var(--ts);
    font-size: .85rem;
}

.ft-url {
    color: rgba(255, 165, 0, .4);
    font-size: .78rem;
    margin-top: .3rem;
}

/* ===================== ANIMATIONS ===================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px)
    }

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

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(36px)
    }

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

/* scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease;
}

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

/* particles */
.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--gold);
    animation: pRise linear infinite;
    box-shadow: 0 0 6px rgba(255, 215, 0, .7);
}

@keyframes pRise {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0
    }

    8% {
        opacity: .6
    }

    92% {
        opacity: .4
    }

    100% {
        transform: translateY(-8vh) scale(1);
        opacity: 0
    }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width:1100px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-right {
        display: none;
    }

    .hero-p {
        margin: 0 auto 1.7rem;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-stats-row {
        justify-content: center;
    }

    /* side characters: reduce size on medium screens */
    .sec-side-char img {
        height: clamp(120px, 14vw, 200px);
        opacity: .5;
    }

    .sec-crypto-banner .cb-inner,
    .sec-hcw .hcw-inner,
    .sec-fetoken .cb-inner,
    .sec-keyfeatures .cb-inner,
    .sec-utility .cb-inner,
    .sec-skilled-banner .cb-inner {
        padding-left: clamp(24px, 8vw, 100px);
        padding-right: clamp(24px, 8vw, 100px);
    }

    .sec-blockchain-banner .bc-inner {
        padding-left: clamp(24px, 8vw, 100px);
        padding-right: clamp(24px, 8vw, 100px);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-right {
        order: -1;
    }

    /* blockchain new responsive */
    .bc-main-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .bc-visual-col {
        order: -1;
    }

    .bc-feat-grid {
        grid-template-columns: 1fr;
        gap: .9rem;
    }

    .bc-chain-visual {
        width: 260px;
        height: 260px;
    }

    /* old bb classes — kept for safety */
    .bb-two-col {
        grid-template-columns: 1fr;
    }

    .bb-col-divider {
        width: 100%;
        height: 1px;
        align-self: auto;
    }

    .bb-features-row {
        grid-template-columns: 1fr;
    }

    /* hcw new responsive */
    .hcw-steps-grid { grid-template-columns: repeat(3,1fr); gap:.85rem; }
    .hcw-card-arrow { display:none; }
    .hcw-flow-bar { display:none; }
    .hcw-stat-strip { flex-wrap:wrap; padding:1rem; }
    .hcw-stat { padding:.4rem 1.2rem; }
    .hcw-stat-div { display:none; }

    /* sg new responsive */
    .sg-main-grid { grid-template-columns:1fr; gap:2.5rem; }
    .sg-visual-col { order:-1; position:static; }
    .sg-cat-grid { grid-template-columns:1fr; }
    .sg-cat-full { grid-column:1; }
    .sg-market-strip { flex-wrap:wrap; gap:.5rem; padding:1rem; }
    .sg-mstat { min-width:140px; padding:.5rem 1rem; }
    .sg-mstat-div { display:none; }

    .fet-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .fet-right {
        order: -1;
    }

    .fet-coin-wrap {

    }

    .fet-coin {
        width: 110px;
        height: 110px;
    }

    .fet-coin-img {
      
    }

    .fet-main-title {
        font-size: clamp(1.8rem, 8vw, 3rem);
    }

    .fet-toprow {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .fet-brand-right {
        text-align: left;
    }

    .kf-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .kf-right {
        order: -1;
    }

    .kf-coin-wrap {
        width: 260px;
        height: 260px;
    }

    .kf-coin {
        width: 120px;
        height: 120px;
    }

    .kf-coin-img {
        width: 80px;
        height: 80px;
    }

    .ut-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .ut-right {
        order: -1;
    }

    .ut-list-grid {
        grid-template-columns: 1fr;
    }

    .ut-why-grid {
        grid-template-columns: 1fr;
    }

    .ut-why-full {
        grid-column: 1;
    }

    .ut-coin-wrap {
        width: 240px;
        height: 240px;
    }

    .ut-coin {
        width: 130px;
        height: 130px;
    }

    .ut-coin-img {
        width: 88px;
        height: 88px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .crypto-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .crypto-right {
        order: -1;
    }

    .bc-two {
        grid-template-columns: 1fr 1fr;
    }

    .bc-mid-img {
        display: none;
    }

    .howworks-bottom {
        grid-template-columns: 1fr;
    }

    .hw-img-col {
        display: none;
    }

    .cta-flex {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-img-col {
        display: none;
    }

    .cta-checks li {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .pkg-featured {
        transform: scale(1);
    }
}

@media (max-width:768px) {
    .hamburger {
        display: flex;
    }

    .nav-actions {
        display: none;
    }

    .nav-mob-btns {
        display: flex;
    }

    /* hide side characters on mobile — content space is precious */
    .sec-side-char {
        display: none;
    }

    /* reset the extra padding too */
    .sec-crypto-banner .cb-inner,
    .sec-hcw .hcw-inner,
    .sec-fetoken .cb-inner,
    .sec-keyfeatures .cb-inner,
    .sec-utility .cb-inner,
    .sec-skilled-banner .cb-inner {
        padding-left: 24px;
        padding-right: 24px;
    }

    .sec-blockchain-banner .bc-inner {
        padding-left: 24px;
        padding-right: 24px;
    }

    /* hcw mobile */
    .hcw-steps-grid { grid-template-columns: repeat(1,1fr) !important; }
    .hcw-stat-strip { flex-wrap:wrap; justify-content:center; }
    .hcw-stat-div { display:none; }

    .nav-menu {
        position: fixed;
        top: 68px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        background: rgba(6, 5, 3, .97);
        border-top: 1px solid rgba(255, 215, 0, .12);
        padding: 1rem 0;
        z-index: 999;
        transition: left .3s ease;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        border-radius: 0;
        padding: .7rem 1.4rem;
        border-bottom: 1px solid rgba(255, 215, 0, .07);
        font-size: .95rem;
    }

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

    .nav-mob-btns {
        padding: .8rem 1.4rem;
        gap: .7rem;
        justify-content: center;
        border-bottom: 1px solid rgba(255, 215, 0, .07);
    }

    .games-grid {
        grid-template-columns: 1fr 1fr;
    }

    .chars-row {
        gap: .8rem;
    }

    .char-card {
        width: 90px;
    }

    .char-card.char-big {
        width: 115px;
    }

    .why-right {
        grid-template-columns: 1fr;
    }

    .ctype-grid {
        grid-template-columns: 1fr;
    }

    .bc-two {
        grid-template-columns: 1fr;
    }

    .bc-secure-grid {
        grid-template-columns: 1fr;
    }

    .steps-flex {
        flex-direction: column;
    }

    .step-arr {
        transform: rotate(90deg);
    }

    .pkg-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .stats-flex {
        gap: .5rem;
    }

    .sstrip-item {
        padding: .4rem 1rem;
    }

    .sstrip-div {
        height: 30px;
    }
}

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

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats-row {
        flex-direction: column;
        gap: .8rem;
    }

    .hstat-sep {
        width: 50px;
        height: 1px;
    }

    .chars-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: .7rem;
    }

    .char-card.char-big {
        width: 100%;
    }

    .bc-secure-grid {
        grid-template-columns: 1fr;
    }

    .sec-title {
        font-size: 1.7rem;
    }
}