/* ============================================================
   SKY EXCHANGE — Master Stylesheet
   Theme: Dark Premium Betting Exchange
   ============================================================ */

:root {
    --bg-primary:    #1a1a1a;
    --bg-dark:       #0f0f0f;
    --bg-card:       rgba(255,255,255,0.05);
    --bg-card-hover: rgba(255,197,34,0.08);
    --gold:          #ffc522;
    --gold-light:    #ffd45e;
    --gold-dark:     #e0a800;
    --white:         #ffffff;
    --muted:         #aaaaaa;
    --border:        rgba(255,197,34,0.25);
    --border-hover:  rgba(255,197,34,0.6);
    --gradient:      linear-gradient(135deg,#313131,#1f1f1f,#0f0f0f);
    --gradient-gold: linear-gradient(135deg, #ffc522, #e0a800);
    --shadow-gold:   0 0 30px rgba(255,197,34,0.15);
    --shadow-card:   0 8px 32px rgba(0,0,0,0.4);
    --radius:        12px;
    --radius-lg:     20px;
    --transition:    0.3s ease;
    --font-display:  'Rajdhani', 'Oswald', sans-serif;
    --font-body:     'Inter', 'Segoe UI', sans-serif;
}

/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    background: var(--gradient);
    background-attachment: fixed;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }

img { max-width: 100%; height: auto; }

h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.02em;
}

.text-gold   { color: var(--gold) !important; }
.bg-gold     { background: var(--gradient-gold) !important; }
.border-gold { border-color: var(--border) !important; }

/* ─── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ─── Navbar ─────────────────────────────────────────────────── */
.sky-navbar {
    background: rgba(15,15,15,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0;
    transition: var(--transition);
    z-index: 1050;
}

.sky-navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.6); }

.navbar-brand img { height: 48px; width: auto; }

.sky-navbar .nav-link {
    color: #ddd !important;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 1.1rem 0.75rem !important;
    transition: var(--transition);
    position: relative;
}

.sky-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; right: 50%;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.sky-navbar .nav-link:hover,
.sky-navbar .nav-link.active { color: var(--gold) !important; }

.sky-navbar .nav-link:hover::after,
.sky-navbar .nav-link.active::after { left: 0; right: 0; }

/* Mega Menu */
.mega-menu {
    background: rgba(15,15,15,0.98);
    border: 1px solid var(--border);
    border-top: 2px solid var(--gold);
    border-radius: 0 0 var(--radius) var(--radius);
    padding: 1.5rem;
    min-width: 720px;
    left: 0 !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.7);
}

.mega-menu .mega-col-title {
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.5rem;
    margin-bottom: 0.75rem;
}

.mega-menu .dropdown-item {
    color: #ccc !important;
    font-size: 0.85rem;
    padding: 0.3rem 0.5rem;
    border-radius: 6px;
    transition: var(--transition);
}

.mega-menu .dropdown-item:hover {
    background: var(--bg-card-hover);
    color: var(--gold) !important;
    padding-left: 1rem;
}

.btn-whatsapp-nav {
    background: #25d366;
    color: #fff !important;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.45rem 1rem !important;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
    border: none;
}

.btn-whatsapp-nav:hover {
    background: #1ebe5d;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
}

/* ─── Hero ─────────────────────────────────────────────────── */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,197,34,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,197,34,0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0%   { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbFloat 8s ease-in-out infinite;
    pointer-events: none;
}

.hero-orb-1 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,197,34,0.12), transparent 70%);
    top: -100px; right: -100px;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255,197,34,0.08), transparent 70%);
    bottom: 0; left: -80px;
    animation-delay: 3s;
}

@keyframes orbFloat {
    0%,100% { transform: translateY(0) scale(1); }
    50%      { transform: translateY(-30px) scale(1.05); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,197,34,0.1);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 0.4rem 1rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.hero-badge .pulse-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #25d366;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-title .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 540px;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-cta-group { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.hero-stat-item .stat-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
    display: block;
}

.hero-stat-item .stat-label {
    font-size: 0.78rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Live Ticker */
.live-ticker {
    background: rgba(255,197,34,0.08);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    overflow: hidden;
    margin-top: 1rem;
}

.ticker-label {
    background: var(--gold);
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
}

.ticker-scroll {
    overflow: hidden;
    flex: 1;
}

.ticker-inner {
    display: flex;
    gap: 3rem;
    animation: tickerRun 25s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    font-size: 0.82rem;
    color: #ccc;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.ticker-item .odds { color: var(--gold); font-weight: 700; font-family: var(--font-display); }
.ticker-item .team { color: #fff; }

@keyframes tickerRun {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Hero Visual Card */
.hero-visual { position: relative; }

.hero-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gradient-gold);
}

.match-card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    margin-bottom: 0.6rem;
    transition: var(--transition);
}

.match-card-row:hover { border-color: var(--border); background: var(--bg-card-hover); }

.match-teams { font-size: 0.85rem; font-weight: 600; }
.match-league { font-size: 0.7rem; color: var(--muted); }

.odds-group { display: flex; gap: 0.4rem; }

.odds-btn {
    background: rgba(255,197,34,0.12);
    border: 1px solid rgba(255,197,34,0.2);
    color: var(--gold);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.35rem 0.6rem;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    min-width: 52px;
    text-align: center;
}

.odds-btn:hover {
    background: var(--gold);
    color: #000;
    transform: scale(1.05);
}

.odds-btn.lay {
    background: rgba(99,179,237,0.12);
    border-color: rgba(99,179,237,0.3);
    color: #63b3ed;
}

.odds-btn.lay:hover { background: #63b3ed; color: #000; }

/* Floating badge on hero card */
.floating-badge {
    position: absolute;
    top: -12px; right: 20px;
    background: #25d366;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-5px); }
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn-sky-primary {
    background: var(--gradient-gold);
    color: #000 !important;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(255,197,34,0.3);
}

.btn-sky-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,197,34,0.5);
    color: #000 !important;
}

.btn-sky-outline {
    background: transparent;
    color: var(--gold) !important;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    border: 1.5px solid var(--gold);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-sky-outline:hover {
    background: var(--gradient-gold);
    color: #000 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,197,34,0.3);
}

.btn-whatsapp {
    background: #25d366;
    color: #fff !important;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
    color: #fff !important;
}

/* ─── Section Shared ─────────────────────────────────────────── */
.sky-section { padding: 80px 0; }
.sky-section-sm { padding: 50px 0; }

.section-eyebrow {
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.section-eyebrow::before { max-width: 30px; }

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 600px;
}

/* ─── Cards ──────────────────────────────────────────────────── */
.sky-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.sky-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.sky-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.sky-card:hover::before { transform: scaleX(1); }

.card-icon {
    width: 60px; height: 60px;
    background: rgba(255,197,34,0.1);
    border: 1px solid var(--border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1.25rem;
    transition: var(--transition);
}

.sky-card:hover .card-icon {
    background: var(--gradient-gold);
    color: #000;
    border-color: transparent;
    transform: scale(1.1) rotate(5deg);
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.card-text { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }

/* ─── Features Strip ─────────────────────────────────────────── */
.features-strip {
    background: rgba(255,197,34,0.04);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
    font-size: 0.85rem;
    white-space: nowrap;
}

.feature-pill i { color: var(--gold); }

/* ─── Stats Counter ──────────────────────────────────────────── */
.stats-section {
    background: rgba(255,197,34,0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem;
}

.stat-box {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-desc { color: var(--muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; }

/* ─── Sports Grid ────────────────────────────────────────────── */
.sport-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    display: block;
    color: inherit;
}

.sport-card:hover {
    border-color: var(--gold);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
    color: inherit;
}

.sport-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: block;
    transition: var(--transition);
}

.sport-card:hover .sport-icon { transform: scale(1.15); }

.sport-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ccc;
}

.sport-card:hover .sport-name { color: var(--gold); }

.sport-badge {
    display: inline-block;
    background: rgba(255,197,34,0.15);
    color: var(--gold);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 50px;
    margin-top: 0.4rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ─── ID Types Table ─────────────────────────────────────────── */
.id-table-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.id-table { width: 100%; border-collapse: collapse; margin: 0; }

.id-table th {
    background: rgba(255,197,34,0.1);
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem 1.25rem;
    font-weight: 700;
    border-bottom: 1px solid var(--border);
}

.id-table td {
    padding: 0.9rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.9rem;
    color: #ddd;
}

.id-table tr:last-child td { border-bottom: none; }
.id-table tr:hover td { background: rgba(255,197,34,0.03); }

.id-table .badge-free {
    background: rgba(37,211,102,0.15);
    color: #25d366;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.15rem 0.6rem;
    border-radius: 50px;
}

/* ─── Notice Banner ──────────────────────────────────────────── */
.app-notice {
    background: linear-gradient(135deg, rgba(255,197,34,0.08), rgba(255,197,34,0.03));
    border: 1px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 2rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.app-notice::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: var(--gradient-gold);
}

.notice-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 1rem; }
.notice-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--gold); margin-bottom: 0.5rem; }
.notice-text { color: #bbb; font-size: 0.92rem; }

/* ─── Testimonials ───────────────────────────────────────────── */
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
}

.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }

.testimonial-text {
    color: #ccc;
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    color: #000;
    flex-shrink: 0;
}

.author-name { font-weight: 700; font-size: 0.9rem; }
.author-role { color: var(--muted); font-size: 0.78rem; }

/* ─── FAQ ────────────────────────────────────────────────────── */
.sky-accordion .accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius) !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.sky-accordion .accordion-button {
    background: transparent;
    color: #ddd;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 1.1rem 1.25rem;
    border: none;
    box-shadow: none !important;
}

.sky-accordion .accordion-button:not(.collapsed) { color: var(--gold); background: rgba(255,197,34,0.05); }

.sky-accordion .accordion-button::after {
    filter: invert(1) sepia(1) saturate(5) hue-rotate(0deg);
}

.sky-accordion .accordion-body {
    background: rgba(255,255,255,0.02);
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.75;
    padding: 0 1.25rem 1.25rem;
}

/* ─── CTA Section ────────────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, rgba(255,197,34,0.08), rgba(255,197,34,0.03));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(255,197,34,0.05), transparent 60%);
    animation: ctaPulse 6s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%,100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.1); opacity: 0.6; }
}

/* ─── Footer ─────────────────────────────────────────────────── */
.sky-footer {
    background: #070707;
    border-top: 1px solid var(--border);
    padding: 60px 0 0;
}

.footer-brand img { height: 50px; margin-bottom: 1rem; }

.footer-brand p { color: #888; font-size: 0.88rem; line-height: 1.7; max-width: 280px; }

.footer-title {
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.footer-links { list-style: none; padding: 0; margin: 0; }

.footer-links li { margin-bottom: 0.5rem; }

.footer-links a {
    color: #888;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
}

.footer-links a::before { content: '›'; color: var(--gold); }

.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-bottom {
    background: rgba(0,0,0,0.4);
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 3rem;
    padding: 1.25rem 0;
}

.footer-bottom p { color: #555; font-size: 0.8rem; margin: 0; }

.footer-disclaimer {
    background: rgba(255,197,34,0.04);
    border: 1px solid rgba(255,197,34,0.1);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-top: 2rem;
    color: #666;
    font-size: 0.78rem;
    line-height: 1.6;
}

.footer-socials { display: flex; gap: 0.6rem; margin-top: 1rem; }

.social-btn {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 0.85rem;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--gradient-gold);
    color: #000;
    border-color: transparent;
    transform: translateY(-2px);
}

/* ─── Floating WhatsApp ──────────────────────────────────────── */
.float-whatsapp {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 58px; height: 58px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    box-shadow: 0 6px 25px rgba(37,211,102,0.5);
    transition: var(--transition);
    animation: floatWA 3s ease-in-out infinite;
}

.float-whatsapp:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 35px rgba(37,211,102,0.7);
    color: #fff;
}

@keyframes floatWA {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}

.float-whatsapp::before {
    content: '';
    position: absolute;
    width: 100%; height: 100%;
    border-radius: 50%;
    background: rgba(37,211,102,0.4);
    animation: waPing 2s ease-out infinite;
}

@keyframes waPing {
    0%   { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* ─── Breadcrumb ─────────────────────────────────────────────── */
.sky-breadcrumb {
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid var(--border);
    padding: 0.85rem 0;
}

.sky-breadcrumb .breadcrumb { margin: 0; background: transparent; padding: 0; }
.sky-breadcrumb .breadcrumb-item a { color: var(--muted); font-size: 0.82rem; }
.sky-breadcrumb .breadcrumb-item.active { color: var(--gold); font-size: 0.82rem; }
.sky-breadcrumb .breadcrumb-item+.breadcrumb-item::before { color: var(--muted); }

/* ─── Page Hero ──────────────────────────────────────────────── */
.page-hero {
    padding: 100px 0 60px;
    background: linear-gradient(180deg, rgba(255,197,34,0.05), transparent);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,197,34,0.02) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,197,34,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
}

.page-hero-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

/* ─── Content Sections ───────────────────────────────────────── */
.content-block { margin-bottom: 2.5rem; }
.content-block h2, .content-block h3 { color: var(--gold); margin-bottom: 0.75rem; }
.content-block p { color: #bbb; line-height: 1.8; margin-bottom: 1rem; }
.content-block ul { color: #bbb; padding-left: 1.5rem; line-height: 1.9; }
.content-block ul li { margin-bottom: 0.4rem; }

/* ─── API Cards ──────────────────────────────────────────────── */
.api-feature-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.api-feature-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #ccc;
    font-size: 0.88rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.api-feature-list li:last-child { border-bottom: none; }
.api-feature-list li i { color: var(--gold); font-size: 0.8rem; flex-shrink: 0; }

/* ─── WhiteLabel Steps ───────────────────────────────────────── */
.step-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.step-num {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(255,197,34,0.1);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--gold);
    flex-shrink: 0;
}

.step-content h4 { font-family: var(--font-display); font-weight: 700; margin-bottom: 0.3rem; }
.step-content p { color: var(--muted); font-size: 0.88rem; margin: 0; }

/* ─── Marquee / Live Strip ───────────────────────────────────── */
.live-strip {
    background: #000;
    border-top: 2px solid var(--gold);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 0;
    overflow: hidden;
}

.live-strip-inner {
    display: flex;
    gap: 4rem;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.strip-item {
    font-size: 0.78rem;
    color: #ccc;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
}

.strip-item .live-dot { width: 6px; height: 6px; border-radius: 50%; background: #ff3c3c; animation: pulse 1s infinite; }
.strip-item .up { color: #22c55e; }
.strip-item .down { color: #ef4444; }

@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ─── Deposit Withdraw ───────────────────────────────────────── */
.deposit-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.deposit-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }

.deposit-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 1rem; }
.deposit-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
}

.deposit-label { color: var(--muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; }

/* ─── Page: Inner Pages ──────────────────────────────────────── */
.inner-content-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.id-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.id-feature-item {
    background: rgba(255,197,34,0.06);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    text-align: center;
}

.id-feature-item i { font-size: 1.5rem; color: var(--gold); margin-bottom: 0.5rem; display: block; }
.id-feature-item span { display: block; font-weight: 700; font-size: 0.9rem; margin-bottom: 0.2rem; }
.id-feature-item small { color: var(--muted); font-size: 0.78rem; }

/* ─── Sitemap Page ───────────────────────────────────────────── */
.sitemap-group h3 {
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.sitemap-group ul { list-style: none; padding: 0; }
.sitemap-group ul li { padding: 0.3rem 0; }
.sitemap-group ul li a { color: #bbb; font-size: 0.88rem; }
.sitemap-group ul li a:hover { color: var(--gold); }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .sky-navbar .nav-link::after { display: none; }
    .mega-menu { min-width: 100%; left: 0 !important; }
    .hero-section { padding: 100px 0 60px; text-align: center; }
    .hero-cta-group { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-subtitle { margin: 0 auto 2rem; }
    .hero-visual { margin-top: 3rem; }
    .stats-section { padding: 2rem; }
    .cta-section { padding: 3rem 1.5rem; }
    .sky-section { padding: 60px 0; }
    .sky-footer { padding: 40px 0 0; }
}

@media (max-width: 575.98px) {
    .hero-title { font-size: 2rem; }
    .hero-cta-group { flex-direction: column; }
    .btn-sky-primary, .btn-sky-outline, .btn-whatsapp { width: 100%; justify-content: center; }
    .mega-menu { padding: 1rem; }
    .float-whatsapp { bottom: 18px; right: 18px; width: 52px; height: 52px; }
    .id-feature-grid { grid-template-columns: 1fr 1fr; }
    .inner-content-wrap { padding: 1.5rem; }
}

/* ─── Utility ────────────────────────────────────────────────── */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }
.tag-pill {
    background: rgba(255,197,34,0.1);
    border: 1px solid var(--border);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.2rem 0.65rem;
    border-radius: 50px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-block;
}

.check-list { list-style: none; padding: 0; }
.check-list li {
    padding: 0.4rem 0;
    color: #ccc;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}
.check-list li::before { content: '✓'; color: var(--gold); font-weight: 800; flex-shrink: 0; }

/* AOS overrides for dark theme */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ─── Additional page styles ──────────────────────────────────── */
.stat-mini { padding: 0.5rem; }
.stat-num { font-family: 'Rajdhani', sans-serif; font-size: 1.8rem; font-weight: 700; }
.stat-label { color: #999; font-size: 0.75rem; }
.feature-check { color: #ccc; font-size: 0.9rem; padding: 0.3rem 0; }
.bg-dark-section { background: rgba(0,0,0,0.3); }
.border-gold { border-color: rgba(255,197,34,0.3) !important; }
.border-gold-top { border-top: 3px solid var(--gold); }

.step-circle {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--gold); color: #000;
    font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1.3rem;
    display: flex; align-items: center; justify-content: center; margin: 0 auto;
}

.hierarchy-box { padding: 1rem 0.5rem; }
.h-icon { width: 50px; height: 50px; border-radius: 12px; background: rgba(255,197,34,0.1); border: 1px solid rgba(255,197,34,0.3); color: var(--gold); display: flex; align-items: center; justify-content: center; margin: 0 auto 0.5rem; font-size: 1.2rem; }
.admin-icon { background: rgba(255,197,34,0.2); border-color: var(--gold); }
.h-label { color: #fff; font-weight: 600; font-size: 0.85rem; }
.h-sub { font-size: 0.7rem; }

.mini-stat { background: rgba(255,255,255,0.03); border-radius: 8px; padding: 0.75rem; text-align: center; }
.legal-content h2, .legal-content h3 { margin-top: 1.5rem; }
.legal-content ul { padding-left: 1.2rem; }
.legal-content li { margin-bottom: 0.5rem; }
.contact-detail { font-size: 1.2rem; }
.casino-logo-box { width: 60px; height: 60px; background: rgba(255,197,34,0.1); border: 1px solid rgba(255,197,34,0.3); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto; }

.sitemap-list { margin: 0; }
.sitemap-list li { padding: 0.4rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.sitemap-list li:last-child { border-bottom: none; }
.sitemap-list a { color: #ccc; text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.sitemap-list a:hover { color: var(--gold); }
.text-muted {color: #fff !important;}
