/* ==========================================================================
   ARBITRAGE.SK — Unified Stylesheet (Landing + Guide + Blog)
   ==========================================================================
   Sections in this file:
   1.  Variables & Reset
   2.  Typography & Utilities
   3.  Buttons
   4.  Navigation
   5.  Hero
   6.  Bookmakers Strip
   7.  How It Works
   8.  Features Grid
   9.  Ticket Example
   10. Stats Table
   11. App Preview
   12. Pricing
   13. Testimonials
   14. Calculator
   15. FAQ
   16. CTA Banner
   17. Blog Grid
   18. Social & Footer
   19. Guide / Navod styles
   20. Blog listing & post styles
   21. Responsive
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. VARIABLES & RESET
   -------------------------------------------------------------------------- */
:root {
    /* Brand colors — change --accent to rebrand the whole page */
    --accent:        #7c3aed;   /* primary purple */
    --accent-light:  #a78bfa;   /* lighter purple for highlights */
    --accent-dark:   #5b21b6;   /* darker purple for hover states */
    --accent-glow:   rgba(124, 58, 237, 0.15);

    /* Backgrounds */
    --bg:            #09090f;   /* page background */
    --bg-alt:        #0f0f1a;   /* alternate section background */
    --card:          #13131f;   /* card background */
    --card-border:   rgba(255, 255, 255, 0.07);

    /* Text */
    --text:          #e2e2f0;
    --text-muted:    #8b8ba8;
    --text-dim:      #4a4a6a;
    --white:         #ffffff;

    /* Misc */
    --radius:        12px;
    --radius-lg:     20px;
    --transition:    0.2s ease;
    --shadow-card:   0 4px 24px rgba(0, 0, 0, 0.4);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
}

a    { text-decoration: none; color: inherit; }
img  { max-width: 100%; display: block; }
ul   { list-style: none; }


/* --------------------------------------------------------------------------
   2. TYPOGRAPHY & UTILITIES
   -------------------------------------------------------------------------- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: 88px 0; }

/* Small uppercase label above headings */
.section-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: var(--accent-light);
    margin-bottom: 12px;
}

h2 {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.8px;
    line-height: 1.2;
    margin-bottom: 16px;
}

h2 .accent { color: var(--accent-light); }

.section-sub {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.75;
}

/* Centered section header block */
.section-header          { margin-bottom: 52px; }
.section-header.center   { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* Alt background sections */
.section-alt { background: var(--bg-alt); }

/* Thin separator line */
.divider { height: 1px; background: var(--card-border); }

/* Pulsing dot (used in hero badge) */
@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.3; }
}
.pulse-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: var(--accent-light);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
    vertical-align: middle;
    margin-right: 6px;
}


/* --------------------------------------------------------------------------
   3. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 24px;
    border-radius: 9px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    white-space: nowrap;
    font-family: inherit;
}

/* Filled primary button */
.btn-primary {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 2px 12px rgba(124, 58, 237, 0.35);
}
.btn-primary:hover {
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(124, 58, 237, 0.55);
}

/* Larger version */
.btn-lg { padding: 15px 36px; font-size: 1rem; border-radius: 11px; }

/* Outlined button */
.btn-outline {
    background: transparent;
    color: var(--accent-light);
    border: 1px solid var(--accent);
}
.btn-outline:hover { background: var(--accent-glow); }

/* Ghost button (subtle border) */
.btn-ghost {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--card-border);
}
.btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,0.2); }

/* Secondary button (guide pages) */
.btn-secondary {
    background: rgba(255,255,255,0.06);
    color: var(--text-muted);
    border: 1px solid var(--card-border);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); color: var(--white); }

/* Full width */
.btn-block { width: 100%; }


/* --------------------------------------------------------------------------
   4. NAVIGATION
   -------------------------------------------------------------------------- */
#navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    height: 64px;
    display: flex;
    align-items: center;
    padding: 0 24px;
    background: rgba(9, 9, 15, 0.85);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--card-border);
}

.nav-inner {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-logo { font-size: 1.2rem; font-weight: 800; color: var(--white); letter-spacing: -0.4px; flex-shrink: 0; }
.nav-logo span { color: var(--accent-light); }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 0.875rem; font-weight: 500; color: var(--text-muted); transition: color var(--transition); }
.nav-links a:hover { color: var(--white); }

.nav-actions { display: flex; gap: 10px; }

/* Mobile hamburger — hidden on desktop */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger .bar { width: 22px; height: 2px; background: var(--white); border-radius: 2px; }

.nav-mobile-user { display: none; color: var(--text-muted); font-size: 1.1rem; padding: 4px; }

/* Mobile dropdown */
#mobile-menu {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(9, 9, 15, 0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--card-border);
    padding: 16px 24px 28px;
    z-index: 199;
    flex-direction: column;
    gap: 2px;
}
#mobile-menu.open { display: flex; }
#mobile-menu a {
    padding: 13px 0;
    border-bottom: 1px solid var(--card-border);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}
#mobile-menu a:last-of-type { border-bottom: none; }
#mobile-menu .mobile-cta { margin-top: 14px; }


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

.hero-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 50% at 65% 40%, rgba(124, 58, 237, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 35% 55% at 15% 75%, rgba(167, 139, 250, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    position: relative;
}

/* Left — text */
.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid rgba(167, 139, 250, 0.25);
    color: var(--accent-light);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 22px;
}

h1 {
    font-size: clamp(2.1rem, 4.5vw, 3.4rem);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -1.5px;
    line-height: 1.12;
    margin-bottom: 20px;
}
h1 .accent { color: var(--accent-light); }

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 480px;
    line-height: 1.75;
    margin-bottom: 32px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }

.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 0.83rem; color: var(--text-muted); }
.trust-item i { color: var(--accent-light); font-size: 0.78rem; }

/* Right — live arbitrage card */
.hero-cards { display: flex; flex-direction: column; gap: 14px; }

.arb-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}
.arb-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent 70%);
}
.arb-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.arb-sport  { font-size: 0.72rem; font-weight: 700; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.8px; }
.arb-profit { background: rgba(124,58,237,0.15); color: var(--accent-light); font-size: 0.82rem; font-weight: 700; padding: 4px 10px; border-radius: 6px; }
.arb-match  { font-size: 0.975rem; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.arb-bets   { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.arb-bet    { background: rgba(255,255,255,0.03); border: 1px solid var(--card-border); border-radius: 9px; padding: 10px 12px; }
.arb-bet-bk    { font-size: 0.72rem; font-weight: 700; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 5px; display: flex; align-items: center; gap: 5px; }
.arb-bk-dot    { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.arb-bet-sel   { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 8px; line-height: 1.3; }
.arb-bet-row   { display: flex; align-items: baseline; justify-content: space-between; }
.arb-bet-odds  { font-size: 1.3rem; font-weight: 900; color: var(--white); letter-spacing: -0.5px; }
.arb-bet-stake { font-size: 0.8rem; font-weight: 600; color: var(--accent-light); background: var(--accent-glow); padding: 2px 8px; border-radius: 5px; }

.arb-guarantee {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    padding: 10px 14px;
    background: rgba(16,185,129,0.08);
    border: 1px solid rgba(16,185,129,0.25);
    border-radius: 9px;
}
.arb-guarantee-label { font-size: 0.82rem; font-weight: 600; color: #34d399; }
.arb-guarantee-label i { margin-right: 5px; }
.arb-guarantee-value  { font-size: 1.1rem; font-weight: 900; color: #34d399; letter-spacing: -0.3px; }

/* Mini stats strip */
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.hero-stat { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 14px; text-align: center; }
.hero-stat-value { font-size: 1.5rem; font-weight: 800; color: var(--accent-light); letter-spacing: -0.5px; }
.hero-stat-label { font-size: 0.72rem; color: var(--text-dim); margin-top: 2px; }


/* --------------------------------------------------------------------------
   6. BOOKMAKERS STRIP
   -------------------------------------------------------------------------- */
#bookmakers {
    padding: 28px 0;
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}
.bk-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.2px; color: var(--text-dim); text-align: center; margin-bottom: 18px; }
.bk-list  { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
.bk-name  { font-size: 0.95rem; font-weight: 700; color: var(--text-dim); opacity: 0.65; }


/* --------------------------------------------------------------------------
   7. HOW IT WORKS
   -------------------------------------------------------------------------- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.step-card { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 32px 28px; }
.step-num {
    width: 38px; height: 38px;
    border-radius: 9px;
    background: var(--accent-glow);
    border: 1px solid rgba(124, 58, 237, 0.3);
    color: var(--accent-light);
    font-size: 0.9rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.step-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.step-card p  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.68; }


/* --------------------------------------------------------------------------
   8. FEATURES GRID
   -------------------------------------------------------------------------- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.feature-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 24px;
    transition: border-color var(--transition), transform var(--transition);
}
.feature-card:hover { border-color: rgba(124, 58, 237, 0.35); transform: translateY(-2px); }
.feature-icon {
    width: 40px; height: 40px;
    border-radius: 9px;
    background: var(--accent-glow);
    border: 1px solid rgba(124, 58, 237, 0.2);
    color: var(--accent-light);
    font-size: 0.95rem;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
}
.feature-card h3 { font-size: 0.93rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.feature-card p  { font-size: 0.83rem; color: var(--text-muted); line-height: 1.65; }


/* --------------------------------------------------------------------------
   9. TICKET EXAMPLE
   -------------------------------------------------------------------------- */
.example-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

.example-tickets { display: flex; flex-direction: column; gap: 12px; }

.ticket-card { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 20px 24px; }
.ticket-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.ticket-bk-name { font-size: 0.9rem; font-weight: 700; }
.ticket-bk-name.nike     { color: #ff8000; }
.ticket-bk-name.tipsport { color: #1a72d5; }

.ticket-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.875rem;
}
.ticket-row:last-child { border-bottom: none; }
.ticket-row .lbl { color: var(--text-dim); }
.ticket-row .val { font-weight: 600; color: var(--text); }
.ticket-row .win { font-weight: 700; color: var(--accent-light); }

.profit-box {
    background: rgba(124, 58, 237, 0.06);
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
}
.profit-box-label { font-size: 0.75rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.profit-box-value { font-size: 2.6rem; font-weight: 900; color: var(--accent-light); letter-spacing: -1px; }
.profit-box-sub   { font-size: 0.82rem; color: var(--text-muted); margin-top: 6px; }

.example-text h2 { margin-bottom: 18px; }
.example-text p  { font-size: 0.95rem; color: var(--text-muted); line-height: 1.78; margin-bottom: 16px; }

.check-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.check-list li { display: flex; gap: 10px; font-size: 0.875rem; color: var(--text-muted); align-items: flex-start; }
.check-list li i { color: var(--accent-light); flex-shrink: 0; margin-top: 3px; }


/* --------------------------------------------------------------------------
   10. STATS TABLE
   -------------------------------------------------------------------------- */
.stats-table-wrap { overflow-x: auto; border: 1px solid var(--card-border); border-radius: var(--radius-lg); }
table  { width: 100%; border-collapse: collapse; }
thead  { background: var(--card); }
th {
    padding: 14px 20px;
    text-align: left;
    font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.8px;
    color: var(--text-dim);
    border-bottom: 1px solid var(--card-border);
}
td {
    padding: 14px 20px;
    font-size: 0.9rem; color: var(--text-muted);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover td      { background: rgba(255,255,255,0.025); }
td:first-child  { font-weight: 600; color: var(--text); }
td strong       { color: var(--white); }

.roi-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}
.roi-low  { background: rgba(124,58,237,0.15); color: #a78bfa; border: 1px solid rgba(124,58,237,0.25); }
.roi-mid  { background: rgba(59,130,246,0.12); color: #60a5fa; border: 1px solid rgba(59,130,246,0.25); }
.roi-high { background: rgba(16,185,129,0.12); color: #34d399; border: 1px solid rgba(16,185,129,0.25); }
.roi-top  { background: rgba(245,158,11,0.12); color: #fbbf24; border: 1px solid rgba(245,158,11,0.25); }

.hidden { display: none; }
td small        { color: var(--text-dim); font-size: 0.78rem; }


/* --------------------------------------------------------------------------
   11. APP PREVIEW
   -------------------------------------------------------------------------- */
.app-preview-img {
    max-height: 520px;
    object-fit: contain;
    margin: 0 auto;
    border-radius: var(--radius-lg);
}


/* --------------------------------------------------------------------------
   12. PRICING
   -------------------------------------------------------------------------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }

.plan { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 32px 28px; }
.plan.featured { border-color: var(--accent); box-shadow: 0 0 48px rgba(124,58,237,0.12); position: relative; }
.plan-badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: var(--white);
    font-size: 0.72rem; font-weight: 700; padding: 4px 14px; border-radius: 100px; white-space: nowrap;
}
.plan-name  { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--text-dim); margin-bottom: 8px; }
.plan-price { font-size: 2.8rem; font-weight: 900; color: var(--white); letter-spacing: -1.5px; margin-bottom: 4px; line-height: 1; }
.plan-price span { font-size: 1rem; font-weight: 500; color: var(--text-dim); }
.plan-desc  { font-size: 0.83rem; color: var(--text-muted); margin-bottom: 22px; }
.plan-sep   { height: 1px; background: var(--card-border); margin-bottom: 20px; }
.plan-features { display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
.plan-features li { display: flex; gap: 10px; font-size: 0.865rem; color: var(--text-muted); align-items: flex-start; }
.plan-features li i { color: var(--accent-light); flex-shrink: 0; margin-top: 3px; font-size: 0.78rem; }

.guarantee-banner {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    margin-top: 28px; padding: 14px 20px;
    background: var(--accent-glow); border: 1px solid rgba(124,58,237,0.2);
    border-radius: var(--radius);
    font-size: 0.875rem; color: var(--text-muted);
}
.guarantee-banner i { color: var(--accent-light); font-size: 1.05rem; }


/* --------------------------------------------------------------------------
   13. TESTIMONIALS
   -------------------------------------------------------------------------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 28px; }
.review-stars { color: #fbbf24; font-size: 0.82rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-text  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.72; margin-bottom: 20px; font-style: italic; }
.review-author{ display: flex; align-items: center; gap: 12px; }
.review-avatar{ width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }
.review-name  { font-size: 0.875rem; font-weight: 700; color: var(--white); }
.review-role  { font-size: 0.75rem; color: var(--text-dim); }


/* --------------------------------------------------------------------------
   14. CALCULATOR
   -------------------------------------------------------------------------- */
.calc-card { max-width: 640px; margin: 0 auto; background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 36px; }
.calc-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 16px; align-items: end; margin-bottom: 16px; }

.form-label { display: block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text-dim); margin-bottom: 8px; }
.form-input {
    width: 100%;
    background: rgba(255,255,255,0.04); border: 1px solid var(--card-border);
    border-radius: 8px; padding: 12px 14px;
    font-size: 1rem; font-weight: 600; color: var(--white);
    font-family: inherit;
    transition: border-color var(--transition);
}
.form-input:focus { outline: none; border-color: rgba(124,58,237,0.5); }

.calc-input {
    width: 100%;
    padding: 10px 14px;
    background: var(--bg-alt);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    color: var(--white);
    font-size: 1rem;
    outline: none;
    transition: border-color var(--transition);
    box-sizing: border-box;
}
.calc-input:focus { border-color: var(--accent); }
.calc-input::placeholder { color: var(--text-dim); }

.calc-lock-btn {
    width: 42px; height: 42px;
    background: rgba(255,255,255,0.03); border: 1px solid var(--card-border);
    border-radius: 8px; color: var(--text-dim);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all var(--transition); flex-shrink: 0;
}
.calc-lock-btn:hover     { border-color: var(--accent); color: var(--accent-light); }
.calc-lock-btn.is-locked { border-color: var(--accent); color: var(--accent-light); background: var(--accent-glow); }

.calc-results { display: none; margin-top: 20px; background: rgba(124,58,237,0.05); border: 1px solid rgba(124,58,237,0.15); border-radius: var(--radius); padding: 20px 24px; }
.calc-results.visible { display: block; }

.calc-results-grid { display: grid; grid-template-columns: 1fr 60px 1fr; gap: 8px 14px; margin-bottom: 16px; }
.calc-res-header { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text-dim); padding-bottom: 6px; }
.calc-res-lbl    { font-size: 0.75rem; color: var(--text-dim); display: flex; align-items: center; justify-content: center; text-align: center; }
.calc-res-val    { font-size: 0.9rem; font-weight: 700; color: var(--text); display: flex; align-items: center; }
.calc-res-val.pos{ color: var(--accent-light); }
.calc-res-val.neg{ color: #f87171; }

.calc-summary { border-top: 1px solid rgba(124,58,237,0.15); padding-top: 14px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.calc-summary-item { font-size: 0.875rem; color: var(--text-muted); }
.calc-summary-item strong { color: var(--white); }
.calc-summary-item .profit{ color: var(--accent-light); font-weight: 700; }


/* --------------------------------------------------------------------------
   15. FAQ
   -------------------------------------------------------------------------- */
.faq-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); overflow: hidden; transition: border-color var(--transition); }
.faq-item.open { border-color: rgba(124,58,237,0.35); }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; cursor: pointer; user-select: none; gap: 16px; }
.faq-q h3 { font-size: 0.93rem; font-weight: 600; color: var(--white); }
.faq-q i  { color: var(--text-dim); transition: transform 0.3s, color 0.2s; flex-shrink: 0; font-size: 0.82rem; }
.faq-item.open .faq-q i { transform: rotate(180deg); color: var(--accent-light); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { padding: 0 22px 18px; font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; }


/* --------------------------------------------------------------------------
   16. CTA BANNER
   -------------------------------------------------------------------------- */
.cta-section { padding: 80px 0; }
.cta-box {
    background: linear-gradient(135deg, rgba(124,58,237,0.1) 0%, rgba(91,33,182,0.06) 100%);
    border: 1px solid rgba(124,58,237,0.2);
    border-radius: var(--radius-lg);
    padding: 64px 48px;
    text-align: center;
}
.cta-box h2 { margin-bottom: 14px; }
.cta-box p  { font-size: 1rem; color: var(--text-muted); margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }


/* --------------------------------------------------------------------------
   17. BLOG GRID (landing page)
   -------------------------------------------------------------------------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.blog-card { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius-lg); overflow: hidden; display: block; transition: border-color var(--transition), transform var(--transition); }
.blog-card:hover { border-color: rgba(124,58,237,0.3); transform: translateY(-2px); }
.blog-card img { width: 100%; height: 160px; object-fit: cover; }
.blog-card-body { padding: 18px 20px; }
.blog-card-body h3 { font-size: 0.88rem; font-weight: 700; color: var(--white); margin-bottom: 8px; line-height: 1.45; }
.blog-card-body p  { font-size: 0.8rem; color: var(--text-muted); line-height: 1.62; }
/* Tag badge on blog cards */
.blog-tag { display: inline-block; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; background: var(--accent-glow); color: var(--accent-light); border: 1px solid rgba(124,58,237,0.2); border-radius: 6px; padding: 3px 8px; margin-bottom: 8px; }
/* Blog meta row */
.blog-meta { display: flex; gap: 12px; align-items: center; margin-top: 10px; font-size: 0.75rem; color: var(--text-dim); flex-wrap: wrap; }
.blog-meta i { font-size: 0.7rem; }


/* --------------------------------------------------------------------------
   18. SOCIAL & FOOTER
   -------------------------------------------------------------------------- */
#social { padding: 52px 0; border-top: 1px solid var(--card-border); }
.social-label { font-size: 0.8rem; color: var(--text-dim); text-align: center; margin-bottom: 18px; }
.social-row   { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.social-btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 22px; border-radius: 9px; font-size: 0.875rem; font-weight: 600; border: 1px solid var(--card-border); color: var(--text-muted); transition: all var(--transition); }
.social-btn:hover  { background: rgba(255,255,255,0.04); color: var(--white); }
.social-btn.telegram  { color: #2CA5E0; border-color: rgba(44,165,224,0.25); }
.social-btn.telegram:hover  { background: rgba(44,165,224,0.07); }
.social-btn.instagram { color: #E1306C; border-color: rgba(225,48,108,0.25); }
.social-btn.instagram:hover { background: rgba(225,48,108,0.07); }

footer { padding: 26px 0; border-top: 1px solid var(--card-border); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-logo { font-size: 0.95rem; font-weight: 800; color: var(--text-dim); }
.footer-logo span { color: var(--accent-light); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { font-size: 0.82rem; color: var(--text-dim); transition: color var(--transition); }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 0.78rem; color: var(--text-dim); }


/* ==========================================================================
   19. GUIDE / NAVOD STYLES
   ========================================================================== */

/* Guide page wrapper — add padding for fixed navbar */
.guide-page { padding-top: 64px; }

/* Two-column layout: sidebar + article */
.guide-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    align-items: start;
    min-height: calc(100vh - 64px);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Sidebar ---- */
.guide-sidebar {
    position: sticky;
    top: 64px;
    height: calc(100vh - 64px);
    overflow-y: auto;
    padding: 40px 24px 40px 0;
    border-right: 1px solid var(--card-border);
    flex-shrink: 0;
    /* Custom scrollbar */
    scrollbar-width: thin;
    scrollbar-color: var(--text-dim) transparent;
}
.guide-sidebar::-webkit-scrollbar { width: 4px; }
.guide-sidebar::-webkit-scrollbar-thumb { background: var(--text-dim); border-radius: 4px; }

.guide-sidebar h3 {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: var(--text-dim);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--card-border);
}

.guide-nav ul { display: flex; flex-direction: column; gap: 2px; }
.guide-nav a {
    display: block;
    padding: 7px 12px;
    border-radius: 7px;
    font-size: 0.825rem;
    color: var(--text-dim);
    transition: color var(--transition), background var(--transition);
    border-left: 2px solid transparent;
    line-height: 1.45;
}
.guide-nav a:hover { color: var(--text); background: rgba(255,255,255,0.03); }
.guide-nav a.active {
    color: var(--accent-light);
    background: var(--accent-glow);
    border-left-color: var(--accent-light);
    font-weight: 600;
}

/* Floating TOC button for mobile */
#guide-fab {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 300;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(124,58,237,0.5);
}

#guide-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 290;
}
body.guide-sidebar-active #guide-overlay { display: block; }

/* ---- Article content ---- */
.guide-content {
    padding: 48px 0 80px 48px;
    max-width: 820px;
}

/* Individual guide section */
.guide-section {
    margin-bottom: 64px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--card-border);
}
.guide-section:last-child { border-bottom: none; }

.guide-section h2 {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.guide-section h2 i {
    font-size: 1rem;
    color: var(--accent-light);
    flex-shrink: 0;
}

.guide-section p {
    font-size: 0.955rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}
.guide-section p:last-child { margin-bottom: 0; }
.guide-section a { color: var(--accent-light); text-decoration: underline; text-underline-offset: 3px; }
.guide-section a:hover { color: var(--white); }

/* Styled list in guide sections */
.styled-list { display: flex; flex-direction: column; gap: 12px; margin: 16px 0; }
.styled-list li {
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--card-border);
    border-radius: 9px;
    padding: 12px 16px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
}
.styled-list li strong { color: var(--text); }

/* Numbered styled list (ol) */
ol.styled-list { counter-reset: guide-counter; list-style: none; }
ol.styled-list li {
    counter-increment: guide-counter;
    padding-left: 48px;
    position: relative;
}
ol.styled-list li::before {
    content: counter(guide-counter);
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px; height: 22px;
    background: var(--accent-glow);
    border: 1px solid rgba(124,58,237,0.3);
    border-radius: 50%;
    color: var(--accent-light);
    font-size: 0.72rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tip box */
.tip-box {
    background: rgba(124, 58, 237, 0.07);
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-left: 3px solid var(--accent-light);
    border-radius: var(--radius);
    padding: 14px 18px;
    margin: 16px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.tip-box strong { color: var(--accent-light); }
.tip-box ul { margin-top: 10px; list-style: none; display: flex; flex-direction: column; gap: 6px; }
.tip-box ul li { display: flex; align-items: flex-start; gap: 10px; }

/* Warning box */
.warning-box {
    background: rgba(251, 191, 36, 0.06);
    border: 1px solid rgba(251, 191, 36, 0.25);
    border-left: 3px solid #fbbf24;
    border-radius: var(--radius);
    padding: 14px 18px;
    margin: 16px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.warning-box strong { color: #fbbf24; }

/* Example box (inline highlight) */
.example-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--card-border);
    border-radius: 9px;
    padding: 12px 16px;
    margin: 10px 0;
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
}
.example-box strong { color: var(--text); }

/* Storno table */
.storno-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    overflow: hidden;
    margin: 16px 0;
}
.storno-table thead { background: var(--card); }
.storno-table th {
    padding: 12px 18px;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-dim);
    border-bottom: 1px solid var(--card-border);
}
.storno-table td {
    padding: 12px 18px;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.storno-table tbody tr:last-child td { border-bottom: none; }
.storno-table tbody tr:hover td { background: rgba(255,255,255,0.015); }

/* Expandable sections (details/summary) */
.expandable-section {
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    margin: 10px 0;
    overflow: hidden;
    transition: border-color var(--transition);
}
.expandable-section[open] { border-color: rgba(124,58,237,0.3); }
.expandable-section summary {
    padding: 14px 18px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    user-select: none;
    background: var(--card);
}
.expandable-section summary::-webkit-details-marker { display: none; }
.expandable-section summary::after {
    content: '+';
    font-size: 1.1rem;
    color: var(--accent-light);
    transition: transform 0.2s;
}
.expandable-section[open] summary::after { transform: rotate(45deg); }
.expandable-content { padding: 18px; background: rgba(255,255,255,0.01); border-top: 1px solid var(--card-border); }
.expandable-content p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 12px; }
.expandable-content p:last-child { margin-bottom: 0; }
.expandable-content code { background: rgba(255,255,255,0.07); padding: 2px 6px; border-radius: 4px; font-size: 0.85em; color: var(--accent-light); }

/* Bet type cards grid */
.bet-types-container { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 16px 0; }

.bet-type-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 22px;
    transition: border-color var(--transition);
}
.bet-type-card:hover { border-color: rgba(124,58,237,0.3); }

.bet-type-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.bet-type-header i { color: var(--accent-light); font-size: 1rem; }
.bet-type-header h3 { font-size: 1rem; font-weight: 700; color: var(--white); }
.bet-type-card > p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 10px; }

/* Image grid for guide screenshots */
.image-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 16px 0; }
.image-item img {
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid var(--card-border);
}
.mt-2 { margin-top: 16px; }


/* ==========================================================================
   20. BLOG LISTING & POST STYLES
   ========================================================================== */

/* Blog index page header */
.blog-index-header {
    padding: 80px 0 48px;
    text-align: center;
}
.blog-index-header h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -1px;
    margin-bottom: 14px;
}
.blog-index-header p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.75;
}

/* Featured (first) post card */
.blog-featured-card {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 0;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color var(--transition), transform var(--transition);
    margin-bottom: 48px;
    text-decoration: none;
    color: inherit;
}
.blog-featured-card:hover { border-color: rgba(124,58,237,0.3); transform: translateY(-2px); }
.blog-featured-img { width: 100%; height: 320px; object-fit: cover; display: block; }
.blog-featured-body {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.blog-featured-body .blog-tag { margin-bottom: 14px; }
.blog-featured-body h2 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: -0.4px;
}
.blog-featured-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.72;
    margin-bottom: 20px;
    flex: 1;
}

/* Regular blog posts grid */
.blog-posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.blog-post-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: block;
    color: inherit;
    transition: border-color var(--transition), transform var(--transition);
}
.blog-post-card:hover { border-color: rgba(124,58,237,0.3); transform: translateY(-3px); }
.blog-post-card img { width: 100%; height: 160px; object-fit: cover; display: block; }
.blog-post-body { padding: 18px 20px; }
.blog-post-body .blog-tag { margin-bottom: 8px; }
.blog-post-body h3 { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 8px; line-height: 1.45; }
.blog-post-body p  { font-size: 0.8rem; color: var(--text-muted); line-height: 1.62; margin-bottom: 12px; }

/* Individual blog post page */
.blog-post-header {
    padding: 80px 0 32px;
    max-width: 760px;
    margin: 0 auto;
}
.blog-post-header .blog-tag { margin-bottom: 20px; }
.blog-post-header h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 18px;
}
.blog-post-header .blog-meta { margin-top: 0; }
.blog-post-cover {
    width: 100%;
    max-height: 440px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin: 28px 0 48px;
}

.blog-post-body {
    max-width: 760px;
    margin: 0 auto;
    padding-bottom: 80px;
}
.blog-post-body h2, .blog-post-body h3 {
    color: var(--white);
    margin: 32px 0 14px;
    letter-spacing: -0.4px;
}
.blog-post-body h2 { font-size: 1.4rem; }
.blog-post-body h3 { font-size: 1.1rem; }
.blog-post-body p  { font-size: 0.95rem; color: var(--text-muted); line-height: 1.82; margin-bottom: 16px; }
.blog-post-body ul, .blog-post-body ol {
    margin: 16px 0;
    padding-left: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.blog-post-body ul { list-style: disc; }
.blog-post-body ol { list-style: decimal; }
.blog-post-body li { font-size: 0.93rem; color: var(--text-muted); line-height: 1.75; }
.blog-post-body a  { color: var(--accent-light); text-decoration: underline; text-underline-offset: 3px; }
.blog-post-body blockquote {
    border-left: 3px solid var(--accent);
    padding: 12px 20px;
    margin: 20px 0;
    background: rgba(124,58,237,0.05);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--text-muted);
}


/* ==========================================================================
   21. RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* ---- Tablet (≤ 960px) ---- */
@media (max-width: 960px) {
    .hero-layout   { grid-template-columns: 1fr; gap: 40px; }
    .hero-cards    { display: none; }
    .steps-grid    { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .pricing-grid  { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .reviews-grid  { grid-template-columns: 1fr; }
    .blog-grid     { grid-template-columns: 1fr 1fr; }
    .example-grid  { grid-template-columns: 1fr; }

    /* Guide responsive */
    .guide-layout {
        grid-template-columns: 1fr;
        padding: 0;
    }
    .guide-sidebar {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        width: 280px;
        height: calc(100vh - 64px);
        z-index: 295;
        background: var(--bg);
        padding: 28px 20px;
        border-right: 1px solid var(--card-border);
        box-shadow: 4px 0 24px rgba(0,0,0,0.5);
    }
    .guide-sidebar.active { display: block; }
    #guide-fab { display: flex; }
    .guide-content { padding: 32px 24px 60px; }

    /* Blog responsive */
    .blog-featured-card { grid-template-columns: 1fr; }
    .blog-featured-img  { height: 220px; }
    .blog-posts-grid    { grid-template-columns: 1fr 1fr; }
    .bet-types-container { grid-template-columns: 1fr; }
    .image-grid { grid-template-columns: 1fr; }
}

/* ---- Mobile (≤ 600px) ---- */
@media (max-width: 600px) {
    .nav-links       { display: none; }
    .nav-actions     { display: none; }
    .hamburger       { display: flex; }
    .nav-mobile-user { display: flex; align-items: center; margin-left: auto; margin-right: 8px; }

    h1 { font-size: 2rem; letter-spacing: -0.8px; }
    .section { padding: 60px 0; }

    .features-grid { grid-template-columns: 1fr; }
    .blog-grid     { grid-template-columns: 1fr; }
    .hero-stats    { grid-template-columns: repeat(3, 1fr); }
    .calc-card     { padding: 22px 16px; }
    .calc-grid     { gap: 10px; }
    .cta-box       { padding: 36px 20px; }
    .footer-inner  { flex-direction: column; text-align: center; }

    /* Blog */
    .blog-posts-grid { grid-template-columns: 1fr; }
    .blog-featured-body { padding: 22px 18px; }

    /* Guide */
    .guide-content { padding: 20px 16px 60px; }
    .guide-section h2 { font-size: 1.2rem; }
    .bet-types-container { grid-template-columns: 1fr; }
    .image-grid { grid-template-columns: 1fr; }
    .storno-table th, .storno-table td { padding: 10px 12px; font-size: 0.82rem; }
}

@media (max-width: 380px) {
    .hero-stats { grid-template-columns: 1fr 1fr; }
}

/* --------------------------------------------------------------------------
   Cookie / GDPR Banner
   -------------------------------------------------------------------------- */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #13131f;
    border-top: 1px solid rgba(124, 58, 237, 0.3);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 32px rgba(0,0,0,0.5);
    transform: translateY(100%);
    transition: transform 0.35s ease;
}
#cookie-banner.visible { transform: translateY(0); }
#cookie-banner p {
    flex: 1;
    min-width: 240px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}
#cookie-banner p a { color: var(--accent-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
#cookie-accept {
    padding: 9px 22px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
}
#cookie-accept:hover { background: linear-gradient(135deg, #7c3aed, #5b21b6); transform: translateY(-1px); }
#cookie-decline {
    padding: 9px 18px;
    background: transparent;
    color: var(--text-dim);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all var(--transition);
}
#cookie-decline:hover { color: var(--text-muted); border-color: rgba(255,255,255,0.2); }
@media (max-width: 600px) {
    #cookie-banner { padding: 16px; gap: 14px; }
    #cookie-banner p { font-size: 0.8rem; }
}
