/* ============================================
   FRESH CASINO — CITRUS GOLD DARK THEME
   ============================================ */
:root {
    --fresh-orange: #f5a623;
    --fresh-orange-light: #ffc857;
    --fresh-orange-dark: #d48b0f;
    --fresh-lime: #a8e063;
    --fresh-lime-dark: #7cb342;
    --fresh-gold: #e7c28b;
    --fresh-gold-light: #f0d8a8;
    --bg-body: #1a1a18;
    --bg-card: #222220;
    --bg-card-hover: #2a2a27;
    --bg-surface: #1e1e1c;
    --bg-header: rgba(26, 26, 24, 0.97);
    --text-primary: #ffffff;
    --text-secondary: #c4c0b6;
    --text-muted: #7a7668;
    --border-color: rgba(245, 166, 35, 0.12);
    --border-glow: rgba(245, 166, 35, 0.35);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 25px rgba(245, 166, 35, 0.12);
    --gradient-fresh: linear-gradient(135deg, #f5a623 0%, #ffc857 50%, #a8e063 100%);
    --gradient-gold: linear-gradient(135deg, #e7c28b 0%, #f5a623 100%);
    --gradient-card: linear-gradient(145deg, #222220 0%, #1a1a18 100%);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background:
        radial-gradient(ellipse at 15% 0%, rgba(245, 166, 35, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 100%, rgba(168, 224, 99, 0.03) 0%, transparent 50%);
    pointer-events: none; z-index: 0;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 1; }
a { color: var(--fresh-orange-light); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--fresh-lime); }

/* HEADER */
.header {
    background: var(--bg-header);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    position: sticky; top: 0; z-index: 1000;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; gap: 16px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo-icon { font-size: 36px; }
.logo-text {
    font-family: 'Exo 2', sans-serif; font-size: 28px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px;
    background: var(--gradient-fresh); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.logo-sub { display: block; font-size: 11px; font-weight: 500; letter-spacing: 4px; -webkit-text-fill-color: var(--text-muted); font-family: 'Inter', sans-serif; }
.header-nav { display: flex; align-items: center; gap: 6px; }
.header-nav a { color: var(--text-secondary); font-size: 13px; font-weight: 500; padding: 8px 14px; border-radius: var(--radius-sm); white-space: nowrap; }
.header-nav a:hover { color: var(--text-primary); background: rgba(245, 166, 35, 0.08); }
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    padding: 10px 22px; border: none; border-radius: var(--radius-sm);
    font-family: 'Exo 2', sans-serif; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
    cursor: pointer; transition: var(--transition); text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--gradient-fresh); color: #1a1a18; box-shadow: 0 4px 15px rgba(245, 166, 35, 0.25); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(245, 166, 35, 0.4); color: #1a1a18; }
.btn-outline { background: transparent; color: var(--fresh-orange-light); border: 1px solid rgba(245, 166, 35, 0.35); }
.btn-outline:hover { background: rgba(245, 166, 35, 0.08); border-color: var(--fresh-orange); color: var(--fresh-lime); }
.btn-dark { background: #333330; color: #fff; }
.btn-dark:hover { background: #3f3f3c; }
.btn-lg { padding: 14px 28px; font-size: 14px; }

.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.mobile-menu-btn span { display: block; width: 26px; height: 2px; background: var(--text-secondary); border-radius: 2px; }

/* HERO */
.hero { position: relative; padding: 50px 0 30px; overflow: hidden; }
.hero-card {
    background: rgba(34, 34, 32, 0.8); border: 1px solid var(--border-color); border-radius: var(--radius-xl);
    padding: 50px 40px; display: flex; align-items: center; justify-content: space-between; gap: 40px; position: relative; overflow: hidden;
}
.hero-card::before {
    content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.06) 0%, transparent 70%); pointer-events: none;
}
.hero-content { max-width: 600px; z-index: 1; }
.hero-badge {
    display: inline-block; padding: 4px 14px; border-radius: 20px; font-size: 12px; font-weight: 600;
    background: rgba(245, 166, 35, 0.12); color: var(--fresh-orange-light);
    border: 1px solid rgba(245, 166, 35, 0.25); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px;
}
.hero h1 { font-family: 'Exo 2', sans-serif; font-size: clamp(24px, 4vw, 36px); font-weight: 700; line-height: 1.2; margin-bottom: 16px; }
.hero h1 .highlight { background: var(--gradient-fresh); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: 15px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 24px; }
.hero-subtitle strong { color: var(--text-primary); }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-visual { font-size: 120px; text-align: center; flex-shrink: 0; filter: drop-shadow(0 0 30px rgba(245, 166, 35, 0.25)); animation: hero-float 4s ease-in-out infinite; z-index: 1; }
@keyframes hero-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* PROMO STRIP */
.promo-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 30px; }
.promo-item { background: var(--gradient-card); border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 18px 14px; text-align: center; transition: var(--transition); }
.promo-item:hover { border-color: var(--border-glow); transform: translateY(-2px); }
.promo-item-icon { font-size: 28px; margin-bottom: 8px; }
.promo-item h4 { font-family: 'Exo 2', sans-serif; font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.promo-item p { font-size: 12px; color: var(--text-muted); }

/* TOC */
.toc { background: var(--gradient-card); border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 18px 22px; margin-bottom: 28px; }
.toc h3 { font-family: 'Exo 2', sans-serif; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; color: var(--text-muted); }
.toc ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.toc ul li a { font-size: 13px; color: var(--text-secondary); padding: 5px 0; display: flex; align-items: center; gap: 6px; }
.toc ul li a:hover { color: var(--fresh-orange-light); }

/* MAIN LAYOUT */
.main-layout { display: grid; grid-template-columns: 1fr 300px; gap: 24px; padding-bottom: 50px; }
.content-area { min-width: 0; }

/* INFO TABLE */
.info-table-wrapper { background: var(--gradient-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 28px; }
.info-table-header { background: linear-gradient(90deg, rgba(245, 166, 35, 0.1) 0%, rgba(168, 224, 99, 0.05) 100%); padding: 18px 24px; border-bottom: 1px solid var(--border-color); display: flex; align-items: center; gap: 10px; }
.info-table-header h3 { font-family: 'Exo 2', sans-serif; font-size: 18px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; flex: 1; }
.rating-badge { color: var(--fresh-orange-light); font-weight: 700; font-size: 16px; }
.info-table { width: 100%; border-collapse: collapse; }
.info-table tr { border-bottom: 1px solid rgba(255, 255, 255, 0.04); transition: var(--transition); }
.info-table tr:last-child { border-bottom: none; }
.info-table tr:hover { background: rgba(255, 255, 255, 0.02); }
.info-table td { padding: 13px 20px; vertical-align: top; font-size: 14px; }
.info-table td:first-child { width: 200px; color: var(--text-muted); font-weight: 500; white-space: nowrap; }
.info-table td:last-child { color: var(--text-secondary); }
.info-table td:last-child strong { color: var(--text-primary); }
.info-table ul { list-style: none; padding: 0; }
.info-table ul li { padding: 2px 0 2px 18px; position: relative; }
.info-table ul li::before { content: '▸'; position: absolute; left: 0; color: var(--fresh-orange); }
.badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 600; }
.badge-fresh { background: rgba(168, 224, 99, 0.15); color: var(--fresh-lime); border: 1px solid rgba(168, 224, 99, 0.3); }
.badge-gold { background: rgba(245, 166, 35, 0.15); color: var(--fresh-orange-light); border: 1px solid rgba(245, 166, 35, 0.3); }
.pay-row { display: flex; gap: 6px; flex-wrap: wrap; }
.pay-chip { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; padding: 4px 10px; font-size: 12px; color: var(--text-secondary); font-weight: 500; }

/* SECTIONS */
.section { margin-bottom: 28px; }
.section h2 { font-family: 'Exo 2', sans-serif; font-size: 22px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--border-color); display: flex; align-items: center; gap: 10px; }
.section p { color: var(--text-secondary); margin-bottom: 14px; line-height: 1.7; font-size: 15px; }
.section p strong { color: var(--text-primary); }
.section ul, .section ol { margin: 0 0 14px; padding: 0; list-style: none; }
.section ul li, .section ol li { color: var(--text-secondary); padding: 5px 0 5px 24px; position: relative; font-size: 15px; }
.section ul li::before { content: '🍋'; position: absolute; left: 0; font-size: 11px; top: 7px; }

/* FEATURES */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; margin: 24px 0; }
.feature-card { background: var(--gradient-card); border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 22px 18px; text-align: center; transition: var(--transition); }
.feature-card:hover { border-color: var(--border-glow); transform: translateY(-2px); }
.feature-icon { font-size: 32px; margin-bottom: 10px; }
.feature-card h4 { font-family: 'Exo 2', sans-serif; font-size: 14px; font-weight: 600; text-transform: uppercase; margin-bottom: 6px; }
.feature-card p { font-size: 13px; color: var(--text-muted); }

/* SLOTS GRID */
.slots-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; margin-bottom: 28px; }
.slot-card { background: var(--gradient-card); border: 1px solid var(--border-color); border-radius: var(--radius-md); overflow: hidden; transition: var(--transition); display: block; text-decoration: none; }
.slot-card:hover { transform: translateY(-4px); border-color: var(--border-glow); box-shadow: var(--shadow-glow); }
.slot-card-img { width: 100%; aspect-ratio: 4/3; background: var(--bg-card); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.slot-emoji { font-size: 56px; }
.slot-card-overlay { position: absolute; inset: 0; background: rgba(26, 26, 24, 0.75); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.slot-card:hover .slot-card-overlay { opacity: 1; }
.slot-card-info { padding: 10px 12px; }
.slot-card-name { font-family: 'Exo 2', sans-serif; font-size: 14px; font-weight: 500; color: var(--text-primary); margin-bottom: 2px; }
.slot-card-prov { font-size: 11px; color: var(--text-muted); }

/* SIDEBAR */
.sidebar { display: flex; flex-direction: column; gap: 16px; }
.side-card { background: var(--gradient-card); border: 1px solid var(--border-color); border-radius: var(--radius-md); overflow: hidden; }
.side-card-head { padding: 14px 18px; border-bottom: 1px solid var(--border-color); background: rgba(245, 166, 35, 0.05); font-family: 'Exo 2', sans-serif; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.side-card-body { padding: 14px 18px; }
.jackpot-val { font-family: 'Exo 2', sans-serif; font-size: 26px; font-weight: 700; text-align: center; padding: 18px 0 4px; background: var(--gradient-fresh); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.jackpot-label { text-align: center; font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; padding-bottom: 14px; }
.win-row { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.win-row:last-child { border-bottom: none; }
.win-num { width: 26px; height: 26px; border-radius: 50%; background: var(--gradient-fresh); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: #1a1a18; flex-shrink: 0; }
.win-info { flex: 1; min-width: 0; }
.win-name { font-size: 12px; color: var(--text-secondary); }
.win-game { font-size: 11px; color: var(--text-muted); }
.win-amt { font-family: 'Exo 2', sans-serif; font-size: 14px; font-weight: 600; color: var(--fresh-orange-light); white-space: nowrap; }
.side-promo { background: linear-gradient(135deg, rgba(245, 166, 35, 0.12) 0%, rgba(168, 224, 99, 0.05) 100%); border: 1px solid rgba(245, 166, 35, 0.3); border-radius: var(--radius-md); padding: 22px 18px; text-align: center; }
.side-promo .promo-emoji { font-size: 42px; margin-bottom: 10px; }
.side-promo h4 { font-family: 'Exo 2', sans-serif; font-size: 16px; text-transform: uppercase; margin-bottom: 6px; }
.side-promo p { font-size: 13px; color: var(--text-secondary); margin-bottom: 14px; }
.side-promo .btn { width: 100%; }
.pop-slot { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.pop-slot:last-child { border-bottom: none; }
.pop-slot-icon { width: 40px; height: 40px; border-radius: var(--radius-sm); background: var(--bg-card); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.pop-slot-name { font-size: 13px; font-weight: 500; color: var(--text-primary); }
.pop-slot-prov { font-size: 11px; color: var(--text-muted); }

/* FOOTER */
.footer { background: var(--bg-surface); border-top: 1px solid var(--border-color); padding: 36px 0 16px; position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 24px; }
.footer-logo-text { font-family: 'Exo 2', sans-serif; font-size: 20px; font-weight: 800; text-transform: uppercase; background: var(--gradient-fresh); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 10px; }
.footer-brand p { font-size: 12px; color: var(--text-muted); line-height: 1.6; }
.footer-col h4 { font-family: 'Exo 2', sans-serif; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-secondary); margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 7px; }
.footer-col ul li a { color: var(--text-muted); font-size: 13px; }
.footer-col ul li a:hover { color: var(--fresh-orange-light); }
.footer-payments { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; justify-content: center; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); padding: 18px 0; margin-bottom: 20px; }
.footer-pay { padding: 5px 14px; border-radius: 6px; font-size: 12px; font-weight: 500; background: rgba(255,255,255,0.05); color: var(--text-muted); border: 1px solid rgba(255,255,255,0.08); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-copy { font-size: 12px; color: var(--text-muted); }
.footer-badges { display: flex; gap: 10px; }
.f-badge { padding: 3px 12px; border-radius: 20px; font-size: 11px; background: rgba(255,255,255,0.05); color: var(--text-muted); border: 1px solid rgba(255,255,255,0.08); }

/* SCROLL TOP */
.scroll-top { position: fixed; bottom: 30px; right: 30px; width: 46px; height: 46px; border-radius: 50%; background: var(--gradient-fresh); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3); transition: var(--transition); z-index: 999; opacity: 0; visibility: hidden; }
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-3px); box-shadow: 0 6px 25px rgba(245, 166, 35, 0.5); }
.scroll-top svg { width: 20px; height: 20px; fill: #1a1a18; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .main-layout { grid-template-columns: 1fr; }
    .sidebar { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 768px) {
    .header-nav { display: none; }
    .header-nav.active { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg-header); border-bottom: 1px solid var(--border-color); padding: 8px 20px; gap: 4px; z-index: 999; }
    .header-nav.active a { width: 100%; text-align: center; padding: 12px; }
    .mobile-menu-btn { display: flex; }
    .hero-card { flex-direction: column; padding: 30px 20px; text-align: center; }
    .hero-visual { font-size: 80px; }
    .hero-btns { justify-content: center; }
    .promo-strip { grid-template-columns: repeat(2, 1fr); }
    .slots-grid { grid-template-columns: repeat(2, 1fr); }
    .toc ul { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 20px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .info-table td:first-child { width: auto; }
}
@media (max-width: 480px) {
    .promo-strip { grid-template-columns: 1fr; }
    .hero h1 { font-size: 22px; }
    .header-actions .btn-dark { display: none; }
}