@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Courier+Prime:wght@400;700&display=swap');

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

:root {
    --red:      #e62020;
    --red-dark: #9b0e0e;
    --red-glow: rgba(230, 32, 32, 0.6);
    --gold:     #ffd700;
    --gold-mid: #f5a623;
    --gold-dark:#b8860b;
    --gold-glow:rgba(255, 215, 0, 0.5);
    --bg:       #0e0505;
    --bg2:      #160808;
    --bg3:      #1f0c0c;
    --surface:  rgba(30, 8, 8, 0.85);
    --border:   rgba(230, 32, 32, 0.25);
    --text:     #f0e0d0;
    --muted:    #9a7a6a;
    --radius:   10px;
    --trans:    all 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== BACKGROUND ORBS ===== */
.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(130px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.35;
}
.orb-1 {
    width: 600px; height: 600px;
    background: var(--red-dark);
    top: -200px; right: -150px;
    animation: orbFloat 18s ease-in-out infinite;
}
.orb-2 {
    width: 450px; height: 450px;
    background: #4a1010;
    bottom: -150px; left: -150px;
    animation: orbFloat 22s ease-in-out infinite reverse;
}
.orb-3 {
    width: 350px; height: 350px;
    background: var(--gold-dark);
    top: 50%; left: 50%;
    opacity: 0.2;
    animation: orbFloat 25s ease-in-out infinite;
}
@keyframes orbFloat {
    0%,100% { transform: translate(0,0); }
    25%      { transform: translate(50px,-40px); }
    50%      { transform: translate(-30px, 50px); }
    75%      { transform: translate(40px, 25px); }
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--gold));
    width: 0;
    z-index: 9999;
    transition: width 0.1s linear;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0; width: 100%;
    height: 70px;
    background: rgba(10, 3, 3, 0.92);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(16px);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--trans);
}
.nav.scrolled {
    border-bottom-color: var(--red);
    box-shadow: 0 4px 30px rgba(230, 32, 32, 0.2);
}
.nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.logo-icon { font-size: 26px; }
.logo-text {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.logo-accent {
    color: var(--gold);
    text-shadow: 0 0 12px var(--gold-glow);
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}
.nav-links a {
    color: var(--muted);
    font-weight: 500;
    font-size: 14px;
    transition: var(--trans);
    position: relative;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    background: linear-gradient(135deg, var(--red), var(--red-dark)) !important;
    color: #fff !important;
    padding: 8px 22px !important;
    border-radius: var(--radius) !important;
    font-weight: 700 !important;
    box-shadow: 0 0 18px var(--red-glow);
}
.nav-cta:hover {
    box-shadow: 0 0 30px var(--red-glow) !important;
    transform: translateY(-2px);
}
.nav-cta::after { display: none !important; }

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.nav-burger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: var(--trans);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 32px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--trans);
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.btn-sm { padding: 9px 22px; font-size: 13px; }

.btn-fire {
    background: linear-gradient(135deg, var(--red) 0%, #aa1515 100%);
    color: #fff;
    box-shadow: 0 4px 20px var(--red-glow);
}
.btn-fire:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--red-glow), 0 0 50px rgba(230,32,32,0.3);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-mid) 100%);
    color: #1a0a00;
    box-shadow: 0 4px 20px var(--gold-glow);
}
.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--gold-glow);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}
.btn-outline:hover {
    background: rgba(255,215,0,0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--gold-glow);
}

/* Ripple */
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(255,255,255,0.12);
    opacity: 0;
    transition: opacity 0.3s;
}
.btn:active::after { opacity: 1; }

/* ===== SECTIONS ===== */
.section { padding: 90px 0; position: relative; z-index: 1; }

.section-head {
    text-align: center;
    margin-bottom: 60px;
}
.section-head h2 {
    font-size: 44px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--red), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.section-head p {
    color: var(--muted);
    font-size: 17px;
}

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

#particleCanvas {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

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

.hero-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(230,32,32,0.25), rgba(255,215,0,0.15));
    border: 1px solid rgba(255,215,0,0.4);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
    animation: tagPulse 3s ease-in-out infinite;
}
@keyframes tagPulse {
    0%,100% { box-shadow: 0 0 10px rgba(255,215,0,0.3); }
    50%      { box-shadow: 0 0 25px rgba(255,215,0,0.6); }
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 22px;
}
.title-line {
    font-size: 80px;
    font-weight: 900;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}
.title-line.accent {
    background: linear-gradient(135deg, var(--red) 20%, var(--gold) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleFlicker 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px var(--red-glow));
}
@keyframes titleFlicker {
    0%,90%,100% { filter: drop-shadow(0 0 20px var(--red-glow)); }
    95%          { filter: drop-shadow(0 0 5px var(--red-glow)); }
}

.hero-sub {
    font-size: 17px;
    color: var(--muted);
    margin-bottom: 36px;
    max-width: 480px;
    line-height: 1.7;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 36px;
}
.hstat {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 12px;
    text-align: center;
    transition: var(--trans);
}
.hstat:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255,215,0,0.15);
}
.hstat-num {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--gold);
    text-shadow: 0 0 12px var(--gold-glow);
}
.hstat-label {
    font-size: 12px;
    color: var(--muted);
    margin-top: 4px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.hero-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.hbadge {
    background: rgba(230,32,32,0.12);
    border: 1px solid rgba(230,32,32,0.35);
    color: #f08080;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

/* Hero visual */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 400px;
}
.hero-orb-ring {
    position: absolute;
    width: 320px; height: 320px;
    border-radius: 50%;
    border: 2px solid rgba(230,32,32,0.3);
    box-shadow:
        0 0 40px rgba(230,32,32,0.3),
        inset 0 0 40px rgba(230,32,32,0.1),
        0 0 80px rgba(255,215,0,0.1);
    animation: ringPulse 3s ease-in-out infinite;
}
@keyframes ringPulse {
    0%,100% { transform: scale(1); box-shadow: 0 0 40px var(--red-glow), inset 0 0 40px rgba(230,32,32,0.1); }
    50%      { transform: scale(1.04); box-shadow: 0 0 70px var(--red-glow), inset 0 0 60px rgba(230,32,32,0.2), 0 0 100px var(--gold-glow); }
}
.hero-sword {
    font-size: 160px;
    animation: swordFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 0 30px var(--red-glow)) drop-shadow(0 0 15px var(--gold-glow));
    position: relative;
    z-index: 2;
}
@keyframes swordFloat {
    0%,100% { transform: translateY(0) rotate(-5deg); }
    50%      { transform: translateY(-20px) rotate(5deg); }
}

.hero-scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 12px;
    z-index: 2;
    animation: fadeInUp 1s ease 1s both;
}
.scroll-arrow {
    width: 20px; height: 20px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(45deg);
    animation: arrowBounce 1.5s ease-in-out infinite;
}
@keyframes arrowBounce {
    0%,100% { transform: rotate(45deg) translateY(0); }
    50%      { transform: rotate(45deg) translateY(5px); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateX(-50%) translateY(10px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ===== FEATURES ===== */
.features {
    background: linear-gradient(180deg, var(--bg2), var(--bg));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.fcard {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    text-align: center;
    transition: var(--trans);
    position: relative;
    overflow: hidden;
    cursor: default;
}
.fcard:hover {
    border-color: var(--red);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(230,32,32,0.2);
}
.fcard-icon {
    font-size: 52px;
    margin-bottom: 16px;
    display: block;
}
.fcard h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
    text-transform: uppercase;
}
.fcard p { color: var(--muted); font-size: 14px; line-height: 1.7; }

.fcard-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(230,32,32,0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
.fcard:hover .fcard-glow { opacity: 1; }

/* ===== SHOP ===== */
.shop { background: var(--bg); }

.tabs {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.tab {
    padding: 10px 26px;
    background: transparent;
    border: 2px solid var(--border);
    color: var(--muted);
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: var(--trans);
    text-transform: uppercase;
}
.tab:hover, .tab.active {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border-color: var(--red);
    color: #fff;
    box-shadow: 0 4px 20px var(--red-glow);
    transform: translateY(-2px);
}

.tab-panel { display: none; animation: fadeUp 0.4s ease; }
.tab-panel.active { display: block; }
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.pgrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.pcard {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    position: relative;
    transition: var(--trans);
    overflow: hidden;
}
.pcard:hover {
    transform: translateY(-8px);
    border-color: rgba(230,32,32,0.5);
    box-shadow: 0 20px 40px rgba(230,32,32,0.2);
}
.pcard.featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(255,215,0,0.08), rgba(30,8,8,0.9));
    transform: scale(1.04);
}
.pcard.featured:hover { transform: scale(1.04) translateY(-8px); }

.pbadge {
    position: absolute;
    top: 12px; right: 12px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #fff;
    padding: 4px 12px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}
.pbadge-gold { background: linear-gradient(135deg, var(--gold), var(--gold-mid)); color: #1a0800; }
.pbadge-red  { background: linear-gradient(135deg, #ff4444, var(--red-dark)); }

.picon { font-size: 58px; margin-bottom: 14px; }
.pcard h3 {
    font-size: 21px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.pdesc { color: var(--muted); font-size: 14px; margin-bottom: 14px; }

.plist { text-align: left; margin: 16px 0; }
.plist li {
    color: var(--muted);
    font-size: 13px;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.plist li:last-child { border-bottom: none; }

.pprice {
    font-size: 34px;
    font-weight: 800;
    color: var(--gold);
    text-shadow: 0 0 14px var(--gold-glow);
    margin: 18px 0;
}

/* ===== BONUSES ===== */
.bonuses {
    background: linear-gradient(180deg, var(--bg3), var(--bg2));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
    gap: 18px;
    margin-bottom: 36px;
}

.bcard {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 14px;
    text-align: center;
    transition: var(--trans);
    cursor: default;
}
.bcard:hover {
    border-color: var(--red);
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(230,32,32,0.2);
}
.bcard.featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(255,215,0,0.1), var(--surface));
    transform: scale(1.06);
    box-shadow: 0 0 30px var(--gold-glow);
}
.bday {
    font-size: 12px;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.bicon { font-size: 40px; margin-bottom: 10px; }
.bcard p { font-size: 13px; color: var(--text); font-weight: 600; }

.bonus-note {
    background: rgba(230,32,32,0.07);
    border: 1px solid rgba(230,32,32,0.25);
    border-radius: var(--radius);
    padding: 22px 28px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}
.bonus-note strong { color: var(--gold); }
.bonus-note code {
    background: rgba(255,215,0,0.1);
    color: var(--gold);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Courier Prime', monospace;
}

/* ===== CHESTS ===== */
.chests { background: var(--bg); }

.chest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
}

.ccard {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 22px;
    text-align: center;
    transition: var(--trans);
    position: relative;
}
.ccard:hover {
    transform: translateY(-8px);
    border-color: rgba(230,32,32,0.4);
    box-shadow: 0 20px 40px rgba(230,32,32,0.15);
}
.ccard.featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(255,215,0,0.08), var(--surface));
    transform: scale(1.04);
    box-shadow: 0 0 40px rgba(255,215,0,0.2);
}
.ccard.featured:hover { transform: scale(1.04) translateY(-8px); }

.cimg {
    font-size: 72px;
    margin-bottom: 14px;
    animation: chestSpin 4s linear infinite;
    display: block;
}
@keyframes chestSpin {
    0%   { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}
.ccard h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 10px; }

.crarity {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 14px;
    text-transform: uppercase;
}
.crarity.common    { background: rgba(150,150,150,0.2); color: #aaa; }
.crarity.rare      { background: rgba(52,152,219,0.2);  color: #3498db; }
.crarity.epic      { background: rgba(230,32,32,0.2);   color: var(--red); }
.crarity.legendary { background: rgba(255,215,0,0.2);   color: var(--gold); }

.cbar {
    width: 100%;
    height: 10px;
    background: rgba(255,255,255,0.07);
    border-radius: 5px;
    overflow: hidden;
    margin: 10px 0 18px;
}
.cfill {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(90deg, var(--red), var(--red-dark));
    border-radius: 5px;
    min-width: 28px;
}
.cfill-rare      { background: linear-gradient(90deg, #3498db, #2980b9); }
.cfill-epic      { background: linear-gradient(90deg, var(--red), #800000); }
.cfill-legendary { background: linear-gradient(90deg, var(--gold), var(--gold-mid)); }

.cprice {
    font-size: 30px;
    font-weight: 800;
    color: var(--gold);
    text-shadow: 0 0 12px var(--gold-glow);
    margin-bottom: 16px;
}

/* ===== PROMO ===== */
.promo {
    background: linear-gradient(180deg, var(--bg2), var(--bg3));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.procard {
    background: var(--surface);
    border: 1px solid rgba(230,32,32,0.2);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--trans);
}
.procard:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: var(--red);
    box-shadow: 0 20px 40px rgba(230,32,32,0.25);
}
.procard.featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(255,215,0,0.07), var(--surface));
    transform: scale(1.04);
}
.procard.featured:hover { transform: scale(1.04) translateY(-8px); }

.pro-badge {
    position: absolute;
    top: 12px; right: 12px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #fff;
    padding: 5px 13px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 800;
    animation: badgeFlash 1.5s ease-in-out infinite;
}
.pro-badge-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-mid));
    color: #1a0800;
}
@keyframes badgeFlash {
    0%,100% { opacity: 1; }
    50%      { opacity: 0.6; }
}

.pro-icon { font-size: 58px; margin: 8px 0 14px; }
.procard h3 { font-size: 21px; font-weight: 800; color: #fff; margin-bottom: 8px; text-transform: uppercase; }
.procard > p:not(.pro-timer) { color: var(--muted); font-size: 14px; margin-bottom: 16px; }

.pro-price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin: 16px 0;
}
.pro-price s { font-size: 18px; color: var(--muted); }
.pro-price strong {
    font-size: 36px;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 0 14px var(--gold-glow);
}

.pro-timer {
    font-size: 13px;
    color: var(--red);
    font-weight: 600;
    margin-bottom: 16px;
}

/* ===== STATS ===== */
.stats {
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}

.scard {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 20px;
    text-align: center;
    transition: var(--trans);
}
.scard:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255,215,0,0.15);
}
.snum {
    display: block;
    font-size: 52px;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 0 20px var(--gold-glow);
    margin-bottom: 8px;
    font-variant-numeric: tabular-nums;
}
.scard p { color: var(--muted); font-size: 15px; font-weight: 500; }

/* ===== CONTACT ===== */
.contact {
    background: linear-gradient(180deg, var(--bg3), var(--bg));
    border-top: 1px solid var(--border);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.cinfo h3, .cform h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 28px;
    text-transform: uppercase;
}

.cinfo-item {
    margin-bottom: 20px;
}
.cinfo-item strong {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
    margin-bottom: 6px;
}
.cinfo-item code {
    background: rgba(255,215,0,0.08);
    border: 1px solid rgba(255,215,0,0.3);
    color: var(--gold);
    padding: 6px 14px;
    border-radius: 6px;
    font-family: 'Courier Prime', monospace;
    font-size: 15px;
    cursor: pointer;
    transition: var(--trans);
}
.cinfo-item code:hover {
    background: rgba(255,215,0,0.15);
    box-shadow: 0 0 14px var(--gold-glow);
}
.cinfo-item span { color: var(--text); font-size: 15px; }
.cinfo-item a {
    color: var(--red);
    font-size: 15px;
    transition: var(--trans);
}
.cinfo-item a:hover {
    color: var(--gold);
    text-shadow: 0 0 10px var(--gold-glow);
}
.cinfo .btn { margin-top: 10px; }

.cform form { display: flex; flex-direction: column; gap: 14px; }
.cform input,
.cform textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(0,0,0,0.4);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: var(--trans);
    resize: vertical;
}
.cform input:focus,
.cform textarea:focus {
    outline: none;
    border-color: var(--red);
    background: rgba(230,32,32,0.05);
    box-shadow: 0 0 12px rgba(230,32,32,0.2);
}
.cform input::placeholder,
.cform textarea::placeholder { color: var(--muted); }

/* ===== FOOTER ===== */
.footer {
    background: #060202;
    border-top: 1px solid var(--border);
    padding: 40px 0 28px;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.footer-logo {
    font-size: 20px;
    font-weight: 800;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
    text-shadow: 0 0 10px var(--gold-glow);
}
.footer-brand p { color: var(--muted); font-size: 13px; }
.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
}
.footer-links a {
    color: var(--muted);
    font-size: 13px;
    transition: var(--trans);
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
    text-align: center;
    color: var(--muted);
    font-size: 13px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
}

/* ===== TOAST ===== */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: linear-gradient(135deg, var(--bg3), #2a0a0a);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 8px 30px var(--gold-glow);
    z-index: 9999;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s;
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
}
.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* ===== ANIMATIONS (scroll reveal) ===== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-visual { display: none; }
    .title-line { font-size: 60px; }
    .hero-stats { grid-template-columns: repeat(3, 1fr); }
    .hero-btns { justify-content: center; }
    .hero-badges { justify-content: center; }
    .hero-sub { margin: 0 auto 36px; }
    .contact-grid { grid-template-columns: 1fr; }
    .section-head h2 { font-size: 34px; }
}

@media (max-width: 640px) {
    .nav-links { display: none; flex-direction: column; }
    .nav-links.open {
        display: flex;
        position: absolute;
        top: 70px; left: 0;
        width: 100%;
        background: rgba(10,3,3,0.97);
        border-bottom: 1px solid var(--border);
        padding: 20px;
        gap: 16px;
    }
    .nav-burger { display: flex; }

    .title-line { font-size: 46px; }
    .hero-stats { grid-template-columns: 1fr 1fr; }
    .hero-btns { flex-direction: column; align-items: center; }

    .section { padding: 60px 0; }
    .section-head h2 { font-size: 28px; }
    .section-head { margin-bottom: 40px; }

    .pgrid,
    .promo-grid,
    .chest-grid { grid-template-columns: 1fr; }

    .pcard.featured,
    .ccard.featured,
    .procard.featured { transform: none; }

    .bonus-grid { grid-template-columns: repeat(2, 1fr); }

    .footer-inner { flex-direction: column; align-items: center; text-align: center; }
    .footer-links { justify-content: center; }

    .tabs { gap: 8px; }
    .tab { padding: 8px 16px; font-size: 12px; }
}
