/* ================================================================
   High 5 Casino Canada — Main Stylesheet
   Brand: Deep Navy + Royal Blue + Vivid Orange + Gold Diamond
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Rajdhani:wght@600;700&family=Montserrat:wght@700;800;900&display=swap');

/* ── CSS Variables ── */
:root {
    --navy: #001835;
    --navy-mid: #002550;
    --navy-light: #003875;
    --blue: #0066FF;
    --blue-light: #3D8EFF;
    --blue-pale: #E8F1FF;
    --orange: #FF6B35;
    --orange-dark: #E55A20;
    --gold: #FFB800;
    --gold-light: #FFD54F;
    --diamond: #00D4FF;
    --white: #FFFFFF;
    --text-main: #E2EAFF;
    --text-muted: #8BA0C4;
    --card-bg: rgba(0, 37, 80, 0.7);
    --card-border: rgba(0, 102, 255, 0.2);
    --card-hover: rgba(0, 56, 117, 0.8);
    --gradient-main: linear-gradient(135deg, #001835 0%, #002550 50%, #001835 100%);
    --gradient-blue: linear-gradient(135deg, #0052CC, #0066FF);
    --gradient-orange: linear-gradient(135deg, #FF6B35, #FFB800);
    --gradient-hero: linear-gradient(135deg, #001020 0%, #001835 40%, #002550 100%);
    --gradient-card: linear-gradient(135deg, rgba(0, 37, 80, 0.9), rgba(0, 55, 110, 0.8));
    --shadow-blue: 0 6px 30px rgba(0, 102, 255, 0.35);
    --shadow-orange: 0 6px 30px rgba(255, 107, 53, 0.35);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.25s ease;
}

/* ── Reset ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--navy);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: var(--blue-light);
    text-decoration: none;
}

a:hover {
    color: var(--orange);
}

ul {
    list-style: none;
}

/* ── Skip link ── */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--orange);
    color: #fff;
    padding: 6px 14px;
    border-radius: 4px;
    font-weight: 700;
    z-index: 9999;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 6px;
}

/* ================================================================
   MOBILE TRACKER BAR
   ================================================================ */
.tracker-bar {
    background: linear-gradient(90deg, var(--orange-dark), var(--orange));
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1001;
}

.tracker-text strong {
    font-weight: 800;
}

.btn-play-sm {
    background: #fff;
    color: var(--orange-dark);
    padding: 5px 14px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 12px;
    white-space: nowrap;
    transition: var(--transition);
}

.btn-play-sm:hover {
    background: var(--gold-light);
    color: #000;
}

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
    position: sticky;
    top: 48px;
    z-index: 1000;
    background: rgba(0, 24, 53, 0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--card-border);
}

.header-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 24px;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-mark {
    width: 42px;
    height: 42px;
    background: var(--gradient-orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.5);
}

.logo-text {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white);
    line-height: 1.1;
}

.logo-text span {
    color: var(--orange);
}

.logo-text small {
    display: block;
    font-size: 0.55rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
}

/* MAIN NAV */
.main-nav {
    display: flex;
    align-items: center;
    gap: 2px;
}

.main-nav a {
    padding: 8px 13px;
    border-radius: var(--radius);
    font-size: 0.87rem;
    font-weight: 600;
    color: var(--text-main);
    transition: var(--transition);
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    background: rgba(0, 102, 255, 0.18);
    color: var(--blue-light);
}

/* HEADER CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn-play {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    border-radius: 50px;
    background: var(--gradient-orange);
    color: #fff;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: var(--shadow-orange);
}

.btn-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(255, 107, 53, 0.55);
    color: #fff;
}

/* MENU TOGGLE */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1010;
    flex-shrink: 0;
    min-width: 40px;
    min-height: 40px;
    -webkit-tap-highlight-color: transparent;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
    pointer-events: none;
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gradient-hero);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 40%, rgba(255, 107, 53, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 70%, rgba(0, 102, 255, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.hero-img {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    opacity: 0.5;
    mask-image: linear-gradient(to right, transparent 0%, black 25%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 25%);
}

.hero-body {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    padding: 90px 24px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.4);
    border-radius: 100px;
    padding: 5px 16px;
    font-size: 12px;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(38px, 5.5vw, 68px);
    font-weight: 700;
    line-height: 1.05;
    max-width: 620px;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero h1 em {
    font-style: normal;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-secondary {
    padding: 11px 24px;
    border-radius: 50px;
    border: 1.5px solid var(--blue-light);
    color: var(--blue-light);
    font-weight: 700;
    font-size: 0.88rem;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--blue-light);
    color: #fff;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 52px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: left;
}

.stat-num {
    font-family: 'Rajdhani', sans-serif;
    font-size: 32px;
    font-weight: 700;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ================================================================
   SECTIONS
   ================================================================ */
.section {
    padding: 80px 24px;
}

.section-sm {
    padding: 52px 24px;
}

.section-dark {
    background: rgba(0, 16, 40, 0.7);
}

.section-blue {
    background: linear-gradient(180deg, rgba(0, 37, 80, 0.5) 0%, transparent 100%);
}

.container {
    max-width: 1240px;
    margin: 0 auto;
}

.container-sm {
    max-width: 900px;
    margin: 0 auto;
}

.section-head {
    text-align: center;
    margin-bottom: 52px;
}

.section-tag {
    display: inline-block;
    background: rgba(0, 102, 255, 0.12);
    border: 1px solid rgba(0, 102, 255, 0.3);
    color: var(--blue-light);
    border-radius: 100px;
    padding: 4px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 14px;
}

.section-title .hl {
    color: var(--orange);
}

.section-title .hl-blue {
    color: var(--blue-light);
}

.section-sub {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 580px;
    margin: 0 auto;
}

/* ================================================================
   CARDS
   ================================================================ */
.card {
    background: var(--gradient-card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.card:hover {
    border-color: rgba(0, 102, 255, 0.4);
    transform: translateY(-4px);
    box-shadow: var(--shadow-blue);
}

.card-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(255, 107, 53, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
}

.card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.65;
}

/* ================================================================
   GRIDS
   ================================================================ */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* ================================================================
   TABLES
   ================================================================ */
.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius);
    border: 1px solid var(--card-border);
    background: var(--card-bg);
    width: 100%;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

caption {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--orange);
    text-align: left;
    padding: 16px 20px 10px;
}

thead th {
    background: rgba(0, 102, 255, 0.2);
    color: var(--blue-light);
    font-weight: 700;
    padding: 14px 16px;
    text-align: left;
    white-space: nowrap;
    font-size: 12px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

tbody tr:last-child {
    border-bottom: none;
}

tbody tr:hover {
    background: rgba(0, 102, 255, 0.1);
}

tbody td {
    padding: 13px 16px;
    color: var(--text-main);
}

tbody td:first-child {
    font-weight: 600;
    color: var(--white);
}

.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-green {
    background: rgba(0, 200, 100, 0.15);
    color: #00C864;
    border: 1px solid rgba(0, 200, 100, 0.3);
}

.badge-orange {
    background: rgba(255, 107, 53, 0.15);
    color: var(--orange);
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.badge-blue {
    background: rgba(0, 102, 255, 0.15);
    color: var(--blue-light);
    border: 1px solid rgba(0, 102, 255, 0.3);
}

.badge-gold {
    background: rgba(255, 184, 0, 0.15);
    color: var(--gold);
    border: 1px solid rgba(255, 184, 0, 0.3);
}

/* ================================================================
   CHARTS
   ================================================================ */
.chart-wrap {
    background: var(--gradient-card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.chart-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 18px;
}

.chart-box {
    position: relative;
    height: 280px;
    min-height: 180px;
    width: 100%;
}

.chart-box canvas {
    max-width: 100% !important;
}

/* ================================================================
   FAQ
   ================================================================ */
.faq-item {
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 10px;
}

.faq-q {
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    background: var(--card-bg);
    transition: var(--transition);
    user-select: none;
}

.faq-q:hover {
    background: var(--card-hover);
}

.faq-q .arrow {
    color: var(--orange);
    font-size: 18px;
    transition: transform 0.25s;
}

.faq-a {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(0, 16, 40, 0.6);
}

.faq-a p {
    padding: 16px 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.faq-item.open .faq-a {
    max-height: 320px;
}

.faq-item.open .arrow {
    transform: rotate(180deg);
}

/* ================================================================
   BREADCRUMB
   ================================================================ */
.breadcrumb {
    padding: 12px 24px;
    background: rgba(0, 16, 40, 0.6);
    border-bottom: 1px solid var(--card-border);
}

.crumb-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
}

.crumb-inner a {
    color: var(--text-muted);
}

.crumb-inner a:hover {
    color: var(--orange);
}

.crumb-inner .sep {
    color: rgba(255, 255, 255, 0.15);
}

.crumb-inner .current {
    color: var(--white);
}

/* ================================================================
   SEO ARTICLE
   ================================================================ */
.seo {
    background: rgba(0, 16, 40, 0.6);
    padding: 72px 24px;
    border-top: 1px solid var(--card-border);
}

.seo article {
    max-width: 920px;
    margin: 0 auto;
}

.seo h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--orange);
    margin: 44px 0 16px;
}

.seo h2:first-child {
    margin-top: 0;
}

.seo h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--white);
    margin: 28px 0 12px;
}

.seo p {
    color: var(--text-main);
    margin-bottom: 16px;
    line-height: 1.8;
    font-size: 15px;
}

.seo strong {
    color: var(--white);
}

.seo a {
    color: var(--blue-light);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.seo a:hover {
    color: var(--orange);
}

.seo ul.list {
    margin: 14px 0 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.seo ul.list li {
    padding-left: 22px;
    position: relative;
    color: var(--text-main);
    font-size: 15px;
    line-height: 1.7;
}

.seo ul.list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--orange);
}

/* ================================================================
   FOOTER
   ================================================================ */
footer {
    background: rgba(0, 8, 24, 0.99);
    border-top: 1px solid var(--card-border);
    padding: 64px 24px 28px;
}

.footer-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 52px;
    margin-bottom: 52px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 16px;
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 18px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 14px;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--orange);
}

.footer-bottom {
    max-width: 1240px;
    margin: 0 auto;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--text-muted);
}

.footer-bottom .disclaimer {
    max-width: 600px;
    line-height: 1.7;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--orange);
    color: var(--orange);
    font-weight: 800;
    font-size: 12px;
    flex-shrink: 0;
}

/* ================================================================
   UTILITIES
   ================================================================ */
.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gap-12 {
    gap: 12px;
}

.gap-16 {
    gap: 16px;
}

.mt-32 {
    margin-top: 32px;
}

.mt-48 {
    margin-top: 48px;
}

.text-center {
    text-align: center;
}

.text-orange {
    color: var(--orange);
}

.text-blue {
    color: var(--blue-light);
}

.text-gold {
    color: var(--gold);
}

.text-muted {
    color: var(--text-muted);
}

/* Progress bar */
.progress-bar {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    height: 8px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 100px;
    background: var(--gradient-orange);
    width: 0;
    transition: width 1s ease;
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* Coins strip */
.coins-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.coin-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 10px;
}

.coin-gc {
    background: rgba(255, 184, 0, 0.15);
    border: 2px solid rgba(255, 184, 0, 0.4);
}

.coin-sc {
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid rgba(0, 212, 255, 0.3);
}

.coin-dm {
    background: rgba(0, 102, 255, 0.12);
    border: 2px solid rgba(0, 102, 255, 0.3);
}

.coin-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
    display: block;
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    counter-reset: steps;
}

.step {
    padding: 32px 24px;
    text-align: center;
    position: relative;
}

.step-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gradient-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Rajdhani', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 auto 18px;
    box-shadow: var(--shadow-orange);
}

/* Trust badges */
.trust-row {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
}

.trust-icon {
    font-size: 28px;
}

/* Game card */
.game-card {
    background: var(--gradient-card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.game-card:hover {
    border-color: var(--orange);
    transform: translateY(-3px);
    box-shadow: var(--shadow-orange);
}

.game-thumb {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.game-info {
    padding: 14px 16px;
}

.game-info h4 {
    font-weight: 700;
    font-size: 15px;
    color: var(--white);
    margin-bottom: 4px;
}

.game-info p {
    font-size: 12px;
    color: var(--text-muted);
}

/* Comparison boxes */
.vs-box {
    background: var(--gradient-card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.vs-box.featured {
    border-color: var(--orange);
    box-shadow: var(--shadow-orange);
}

.vs-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.vs-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13px;
}

.vs-row:last-child {
    border-bottom: none;
}

.vs-row .label {
    color: var(--text-muted);
}

.vs-row .val {
    font-weight: 600;
    color: var(--white);
}

/* ================================================================
   MOBILE RESPONSIVE
   ================================================================ */
@media (max-width: 768px) {

    /* Tracker bar stacks */
    .tracker-bar {
        flex-wrap: wrap;
        gap: 8px;
        padding: 8px 12px;
    }

    /* Header */
    .site-header {
        top: auto;
        position: sticky;
        top: 0;
    }

    .header-inner {
        height: 60px;
        padding: 0 16px;
        justify-content: space-between;
        gap: 8px;
    }

    /* Show burger toggle */
    .menu-toggle {
        display: flex !important;
    }

    /* Mobile nav dropdown */
    .main-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 18, 45, 0.99);
        border-bottom: 2px solid rgba(0, 102, 255, 0.25);
        padding: 8px 16px 16px;
        z-index: 999;
        gap: 0;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        padding: 13px 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        width: 100%;
        font-size: 0.95rem;
    }

    .main-nav a:last-child {
        border-bottom: none;
    }

    /* Compact btn-play */
    .header-inner .btn-play {
        font-size: 0.75rem !important;
        padding: 7px 12px !important;
    }

    /* Hero */
    .hero {
        min-height: auto;
    }

    .hero-img {
        display: none;
    }

    .hero-body {
        padding: 52px 16px;
    }

    .hero-stats {
        gap: 24px;
    }

    /* Grids */
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    /* Sections */
    .section {
        padding: 52px 16px;
    }

    .section-sm {
        padding: 36px 16px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* Tables full width */
    .table-wrap {
        font-size: 13px;
    }

    /* Charts */
    .chart-box {
        height: 220px;
    }

    /* Logo compact */
    .logo-text small {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }

    .trust-row {
        gap: 18px;
    }

    .coins-row {
        gap: 20px;
    }

    .tracker-bar {
        font-size: 12px;
    }
}