/* ===========================
   TIP-TOP CASINO DE
   Global Design System
   Brand: Black + #FF1F6E (Hot Pink)
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;600;700;900&display=swap');

/* --- RESET & BASE --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #e8e8e8;
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    color: #FF1F6E;
    text-decoration: none;
    transition: color .2s
}

a:hover {
    color: #ff5590
}

ul {
    list-style: none
}

/* --- CSS VARIABLES --- */
:root {
    --pink: #FF1F6E;
    --pink-light: #ff5590;
    --pink-dark: #c8004a;
    --gold: #FFD700;
    --black: #0a0a0a;
    --dark: #111111;
    --card: #1a1a1a;
    --card2: #141414;
    --border: #2a2a2a;
    --text: #e8e8e8;
    --text-muted: #888888;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(255, 31, 110, 0.15);
    --shadow-lg: 0 8px 48px rgba(255, 31, 110, 0.25);
    --glow: 0 0 20px rgba(255, 31, 110, 0.4);
    --transition: .25s ease;
}

/* --- SKIP LINK --- */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--pink);
    color: #fff;
    padding: 8px 16px;
    border-radius: 0 0 8px 0;
    z-index: 9999;
    font-weight: 600;
}

.skip-link:focus {
    left: 0
}

/* --- CONTAINER --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px
}

/* =====================
   HEADER / NAVIGATION
   ===================== */
#site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 16px;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0
}

.logo-wrap img {
    height: 40px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

.logo-wrap span {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.3rem;
    color: #fff;
    letter-spacing: -0.5px;
}

/* Main Nav */
.main-nav {
    display: flex;
    align-items: center;
    gap: 4px
}

.main-nav a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all var(--transition);
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    color: #fff;
    background: rgba(255, 31, 110, 0.12)
}

/* CTA Button in header */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--pink);
    color: #fff !important;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.9rem;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.btn-cta:hover {
    background: var(--pink-dark);
    box-shadow: var(--glow);
    transform: translateY(-1px)
}

.btn-cta.pulse {
    animation: pulsePink 2s infinite
}

@keyframes pulsePink {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 31, 110, 0.5)
    }

    50% {
        box-shadow: 0 0 0 10px rgba(255, 31, 110, 0)
    }
}

/* Mobile Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.burger span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all var(--transition);
}

/* Mobile Sticky Bar */
.mobile-sticky {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: var(--pink);
    padding: 12px 20px;
    box-shadow: 0 -4px 20px rgba(255, 31, 110, 0.4);
}

.mobile-sticky a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.mobile-sticky .arrow {
    font-size: 1.2rem;
    animation: bounce .8s infinite alternate
}

@keyframes bounce {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(4px)
    }
}

/* =====================
   HERO SECTION
   ===================== */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.85) 45%, rgba(10, 10, 10, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 31, 110, 0.15);
    border: 1px solid rgba(255, 31, 110, 0.3);
    color: var(--pink);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.hero h1 {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
    max-width: 600px;
}

.hero h1 .accent {
    color: var(--pink)
}

.hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all var(--transition);
}

.btn-secondary:hover {
    border-color: var(--pink);
    color: var(--pink);
    background: rgba(255, 31, 110, 0.08)
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat {
    text-align: center
}

.stat-num {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--pink);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px
}

/* =====================
   SECTION STYLES
   ===================== */
section {
    padding: 64px 0
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 40px
}

/* =====================
   CARDS
   ===================== */
.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all var(--transition);
}

.card:hover {
    border-color: rgba(255, 31, 110, 0.3);
    box-shadow: var(--shadow);
    transform: translateY(-2px)
}

.card-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

/* Feature Cards */
.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255, 31, 110, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.feature-title {
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    font-size: 1.05rem
}

.feature-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6
}

/* Game Cards */
.game-card {
    background: var(--card2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    cursor: pointer;
}

.game-card:hover {
    border-color: var(--pink);
    box-shadow: var(--shadow);
    transform: translateY(-3px)
}

.game-card img {
    width: 100%;
    height: 180px;
    object-fit: cover
}

.game-card-body {
    padding: 16px
}

.game-card-title {
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    font-size: 0.95rem
}

.game-card-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    background: rgba(255, 31, 110, 0.15);
    color: var(--pink);
    padding: 3px 10px;
    border-radius: 50px;
}

/* =====================
   TABLES
   ===================== */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border)
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem
}

caption {
    font-weight: 700;
    color: var(--pink);
    text-align: left;
    padding: 12px 16px;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: rgba(255, 31, 110, 0.05);
    border-bottom: 1px solid var(--border);
}

th {
    background: #1a1a1a;
    color: #fff;
    font-weight: 600;
    padding: 14px 16px;
    text-align: left;
    white-space: nowrap;
    border-bottom: 1px solid var(--border);
}

td {
    padding: 13px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text);
    vertical-align: middle;
}

tr:last-child td {
    border-bottom: none
}

tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.02)
}

tr:hover td {
    background: rgba(255, 31, 110, 0.04)
}

.badge-green {
    color: #22c55e;
    font-weight: 600
}

.badge-gold {
    color: var(--gold);
    font-weight: 600
}

.badge-red {
    color: #ef4444;
    font-weight: 600
}

.stars {
    color: var(--gold)
}

/* =====================
   RATING BARS
   ===================== */
.rating-bar-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 12px
}

.rating-label {
    width: 140px;
    font-size: 0.85rem;
    color: var(--text-muted);
    flex-shrink: 0
}

.bar-track {
    flex: 1;
    height: 8px;
    background: var(--border);
    border-radius: 50px;
    overflow: hidden
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--pink-dark), var(--pink));
    border-radius: 50px;
    transition: width 1s ease
}

.bar-val {
    width: 36px;
    text-align: right;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    flex-shrink: 0
}

/* =====================
   SLIDER / TABS
   ===================== */
.tabs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 28px
}

.tab {
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--border);
    color: var(--text-muted);
    cursor: pointer;
    background: transparent;
    transition: all var(--transition);
    font-family: 'Inter', sans-serif;
}

.tab.active,
.tab:hover {
    background: var(--pink);
    color: #fff;
    border-color: var(--pink);
    box-shadow: 0 0 12px rgba(255, 31, 110, 0.3);
}

/* =====================
   BONUS CARDS
   ===================== */
.bonus-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: linear-gradient(135deg, #1a1a1a 0%, #111 100%);
    border: 1px solid rgba(255, 31, 110, 0.2);
    border-radius: var(--radius);
    padding: 28px;
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 31, 110, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.bonus-amount {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    color: var(--pink);
    line-height: 1;
}

.bonus-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px
}

.bonus-features {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.bonus-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text);
}

.bonus-feature::before {
    content: '✓';
    color: var(--pink);
    font-weight: 700;
    flex-shrink: 0
}

/* =====================
   FAQ
   ===================== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    gap: 12px;
    font-weight: 600;
    color: #fff;
    font-size: 0.95rem;
    transition: background var(--transition);
}

.faq-question:hover {
    background: rgba(255, 31, 110, 0.06)
}

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
    color: var(--pink);
    transition: transform var(--transition);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg)
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 20px 18px
}

/* =====================
   BREADCRUMBS
   ===================== */
.breadcrumbs {
    padding: 14px 0;
    font-size: 0.82rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.breadcrumbs a {
    color: var(--text-muted)
}

.breadcrumbs a:hover {
    color: var(--pink)
}

.breadcrumbs .sep {
    opacity: 0.4
}

/* =====================
   PAGE BANNER
   ===================== */
.page-banner {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    position: relative;
}

.page-banner-wrap {
    position: relative;
    overflow: hidden
}

.page-banner-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, #0a0a0a);
}

/* =====================
   AUTHOR SECTION
   ===================== */
.author-box {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
}

.author-box img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--pink);
}

.author-name {
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px
}

.author-title {
    font-size: 0.82rem;
    color: var(--pink);
    margin-bottom: 10px;
    font-weight: 600
}

.author-bio {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6
}

/* =====================
   CHART WRAPPER
   ===================== */
.chart-wrap {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
}

.chart-title {
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    font-size: 1rem
}

.chart-canvas-wrap {
    position: relative;
    height: 280px
}

/* =====================
   FOOTER
   ===================== */
#site-footer {
    background: #080808;
    border-top: 1px solid var(--border);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    gap: 40px;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    padding-bottom: 48px;
}

.footer-brand .logo-wrap {
    margin-bottom: 16px
}

.footer-brand p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 260px
}

.footer-col h4 {
    font-weight: 700;
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}

.footer-col ul li {
    margin-bottom: 10px
}

.footer-col ul a {
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: color var(--transition)
}

.footer-col ul a:hover {
    color: var(--pink)
}

.footer-18 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 31, 110, 0.12);
    color: var(--pink);
    font-weight: 900;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 31, 110, 0.3);
    margin-bottom: 12px;
}

.footer-logos {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px
}

.pay-badge {
    background: #1a1a1a;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted)
}

.footer-bottom-links {
    display: flex;
    gap: 16px
}

.footer-bottom-links a {
    font-size: 0.8rem;
    color: var(--text-muted)
}

.footer-bottom-links a:hover {
    color: var(--pink)
}

.footer-warning {
    background: rgba(255, 31, 110, 0.05);
    border-top: 1px solid rgba(255, 31, 110, 0.1);
    padding: 14px 0;
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
    max-width: 900px;
    margin: 0 auto;
}

/* =====================
   FORM COMPONENTS
   ===================== */
.form-card {
    max-width: 460px;
    margin: 0 auto;
    background: #141414;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.form-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
    text-align: center;
}

.form-sub {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 28px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ccc;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 13px 16px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
    box-sizing: border-box;
}

.form-input:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(255, 31, 110, 0.12);
}

.form-input::placeholder {
    color: #555;
}

.form-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--pink-dark), var(--pink));
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    padding: 14px 28px;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(255, 31, 110, 0.35);
}

.form-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 31, 110, 0.5);
}

.form-divider {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.82rem;
    position: relative;
    margin: 20px 0;
}

.form-divider::before,
.form-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 42%;
    height: 1px;
    background: var(--border);
}

.form-divider::before {
    left: 0;
}

.form-divider::after {
    right: 0;
}

.form-footer-text {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 20px;
}

.form-footer-text a {
    color: var(--pink);
    font-weight: 600;
}

/* =====================
   SEO CONTENT SECTION
   ===================== */
.seo-content {
    padding: 64px 0;
}

.seo-article {
    color: var(--text);
    line-height: 1.8;
    font-size: 0.97rem;
}

.seo-article h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.55rem;
    font-weight: 800;
    color: #fff;
    margin: 36px 0 16px;
}

.seo-article h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #e0e0e0;
    margin: 28px 0 12px;
}

.seo-article p {
    color: #aaa;
    margin-bottom: 16px;
}

.text-link {
    color: var(--pink);
    font-weight: 600;
    transition: opacity var(--transition);
}

.text-link:hover {
    opacity: 0.8;
}

.divider {
    height: 1px;
    background: var(--border);
    margin: 32px 0;
}

/* Grid 2 columns */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

@media(max-width:768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

/* =====================
   UTILITY CLASSES
   ===================== */
.text-pink {
    color: var(--pink)
}

.text-gold {
    color: var(--gold)
}

.text-white {
    color: #fff
}

.text-muted {
    color: var(--text-muted)
}

.fw-bold {
    font-weight: 700
}

.fw-black {
    font-weight: 900
}

.mt-8 {
    margin-top: 8px
}

.mt-16 {
    margin-top: 16px
}

.mt-24 {
    margin-top: 24px
}

.mb-8 {
    margin-bottom: 8px
}

.mb-16 {
    margin-bottom: 16px
}

.mb-24 {
    margin-bottom: 24px
}

.flex {
    display: flex
}

.flex-wrap {
    flex-wrap: wrap
}

.gap-8 {
    gap: 8px
}

.gap-16 {
    gap: 16px
}

.items-center {
    align-items: center
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.divider {
    height: 1px;
    background: var(--border);
    margin: 40px 0
}

.text-link {
    color: var(--pink);
    text-decoration: underline;
    text-decoration-style: dashed;
    text-underline-offset: 3px;
}

.text-link:hover {
    color: var(--pink-light)
}

.pill {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    background: rgba(255, 31, 110, 0.12);
    color: var(--pink);
}

/* =====================
   FORMS (Login / Register)
   ===================== */
.form-card {
    max-width: 480px;
    margin: 0 auto;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
}

.form-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 8px;
    text-align: center;
}

.form-sub {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 32px
}

.form-group {
    margin-bottom: 20px
}

.form-label {
    display: block;
    font-weight: 600;
    color: #fff;
    font-size: 0.88rem;
    margin-bottom: 8px
}

.form-input {
    width: 100%;
    background: #111;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 16px;
    color: #fff;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color var(--transition);
}

.form-input:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(255, 31, 110, 0.1)
}

.form-input::placeholder {
    color: var(--text-muted)
}

.form-btn {
    width: 100%;
    padding: 14px;
    border-radius: 50px;
    background: var(--pink);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all var(--transition);
    margin-top: 8px;
}

.form-btn:hover {
    background: var(--pink-dark);
    box-shadow: var(--glow)
}

.form-divider {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 20px 0;
    position: relative;
}

.form-divider::before,
.form-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    height: 1px;
    background: var(--border);
    width: 40%;
}

.form-divider::before {
    left: 0
}

.form-divider::after {
    right: 0
}

.form-footer-text {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 20px
}

.form-footer-text a {
    color: var(--pink);
    font-weight: 600
}

/* =====================
   MOBILE MENU
   ===================== */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all
}

.mobile-menu a {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: #fff;
    padding: 10px 20px;
    transition: color var(--transition);
}

.mobile-menu a:hover {
    color: var(--pink)
}

.mobile-menu .btn-cta {
    font-size: 1rem;
    padding: 14px 32px;
    margin-top: 12px
}

.mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* =====================
   RESPONSIVE
   ===================== */
@media(max-width:1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:768px) {
    .main-nav {
        display: none
    }

    .burger {
        display: flex
    }

    .mobile-sticky {
        display: block
    }

    .hero {
        min-height: 400px
    }

    .hero h1 {
        font-size: clamp(1.8rem, 6vw, 2.5rem)
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr
    }

    .author-box {
        flex-direction: column
    }

    .hero-stats {
        gap: 20px
    }

    body {
        padding-bottom: 60px
    }

    section {
        padding: 48px 0
    }

    .card-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:480px) {
    .container {
        padding: 0 16px
    }

    .hero-btns {
        flex-direction: column
    }

    .form-card {
        padding: 28px 20px
    }

    .header-inner {
        padding: 12px 16px
    }

    .bonus-amount {
        font-size: 2rem
    }
}

/* =====================
   MOBILE MENU OVERLAY
   ===================== */
.menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1099;
    backdrop-filter: blur(3px);
}

.menu-overlay.active {
    display: block;
}

/* Mobile menu panel — slides in from right */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: #111;
    border-left: 1px solid #222;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 24px 20px;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-menu.open {
    right: 0;
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.6);
}

.mobile-menu a {
    color: #ccc;
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 10px;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: #fff;
    background: rgba(255, 31, 110, 0.1);
    border-color: rgba(255, 31, 110, 0.2);
}

.mobile-menu .btn-cta {
    margin-top: 12px;
    text-align: center;
    justify-content: center;
}

.mobile-close {
    align-self: flex-end;
    background: none;
    border: none;
    color: #aaa;
    font-size: 1.4rem;
    cursor: pointer;
    padding: 4px 8px;
    margin-bottom: 12px;
    line-height: 1;
    transition: color 0.2s;
}

.mobile-close:hover {
    color: var(--pink);
}

/* Lock body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* =====================
   RESPONSIVE BURGER (show on mobile)
   ===================== */
@media(max-width: 900px) {
    .main-nav {
        display: none;
    }

    #header-cta {
        display: none;
    }

    .burger {
        display: flex;
    }

    .mobile-sticky {
        display: block;
    }

    /* Hero text smaller */
    .hero {
        min-height: 420px;
    }

    /* Footer grid stacks */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

@media(max-width: 640px) {

    /* Charts: shorter height on mobile */
    .chart-canvas-wrap {
        height: 200px !important;
    }

    /* Grids → 1 column */
    .grid-2,
    .grid-3,
    .card-grid {
        grid-template-columns: 1fr !important;
    }

    /* Bonus cards stack */
    .bonus-card {
        padding: 20px;
    }

    .bonus-amount {
        font-size: 2.2rem;
    }

    /* Table on mobile: make it scrollable */
    .table-wrap {
        -webkit-overflow-scrolling: touch;
    }

    /* Author box stacks vertically */
    .author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* Hero stats: 2 per row */
    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    /* Section spacing tighter */
    section {
        padding: 40px 0;
    }

    /* Footer grid: 1 column */
    .footer-grid {
        grid-template-columns: 1fr;
    }

    /* Rating label shorter */
    .rating-label {
        width: 100px;
        font-size: 0.8rem;
    }

    /* Page banner shorter */
    .page-banner {
        height: 180px;
    }

    /* Form card padding */
    .form-card {
        padding: 24px 16px;
        border-radius: 12px;
    }

    /* Section label smaller */
    .section-label {
        font-size: 0.7rem;
    }
}

/* =====================
   SCROLL REVEAL
   ===================== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* =====================
   HEADER SCROLLED STATE
   ===================== */
#site-header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    border-bottom-color: rgba(255, 31, 110, 0.15);
}