/* ============================================
   PREMIUM BETTING SITE — FULL REDESIGN
   ============================================ */

/* ===== ROOT ===== */
:root {
    --gold: #f5b042;
    --gold-dark: #c88a2e;
    --gold-light: #f7d44a;
    --gold-glow: rgba(245, 176, 66, 0.25);
    
    --bg-deep: #080e15;
    --bg-card: #111d2b;
    --bg-card-hover: #172837;
    --bg-input: #0a141f;
    
    --text-white: #f0f4f8;
    --text-light: #b0c4db;
    --text-muted: #6a7f9b;
    
    --border-subtle: rgba(255, 255, 255, 0.05);
    --border-gold: rgba(245, 176, 66, 0.2);
    
    --shadow-xl: 0 25px 60px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 60px rgba(245, 176, 66, 0.06);
    
    --radius: 14px;
    --radius-xl: 20px;
}

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 800; line-height: 1.2; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 1.5vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; }

p { color: var(--text-light); line-height: 1.7; }

.gold-text { color: var(--gold); }
.gold-gradient { 
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0a141f;
    box-shadow: 0 4px 30px rgba(245, 176, 66, 0.25);
}

.btn-gold:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 50px rgba(245, 176, 66, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.12);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-white);
}

.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-lg { padding: 18px 44px; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: all 0.4s ease;
    background: rgba(8, 14, 21, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.header.scrolled {
    background: rgba(8, 14, 21, 0.92);
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    max-width: 1240px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--text-white);
    flex-shrink: 0;
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-badge {
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    background: rgba(245, 176, 66, 0.12);
    padding: 2px 10px;
    border-radius: 4px;
    border: 1px solid rgba(245, 176, 66, 0.1);
    margin-left: 4px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav a {
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.04);
}

.nav a.active {
    color: var(--gold);
    background: rgba(245, 176, 66, 0.08);
}

.nav a i { margin-right: 6px; font-size: 0.8rem; }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 16px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 28px;
    height: 2.5px;
    background: var(--text-white);
    border-radius: 2px;
    transition: all 0.35s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
}

.hero-bg .orb-1 {
    width: 500px;
    height: 500px;
    top: -15%;
    right: -8%;
    background: radial-gradient(circle, rgba(245, 176, 66, 0.2), transparent 70%);
    animation: orbFloat 8s ease-in-out infinite alternate;
}

.hero-bg .orb-2 {
    width: 400px;
    height: 400px;
    bottom: -10%;
    left: -5%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08), transparent 70%);
    animation: orbFloat 12s ease-in-out infinite alternate-reverse;
}

.hero-bg .orb-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    left: 50%;
    background: radial-gradient(circle, rgba(245, 176, 66, 0.06), transparent 70%);
    animation: orbFloat 6s ease-in-out infinite alternate;
}

@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, -30px) scale(1.1); }
}

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

.hero-content .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 176, 66, 0.08);
    border: 1px solid rgba(245, 176, 66, 0.1);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
}

.hero-content .badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.7); }
}

.hero-content h1 {
    margin-bottom: 20px;
}

.hero-content h1 .highlight {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.15rem;
    max-width: 480px;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.6);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 36px;
}

.hero-stat {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius);
    padding: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.hero-stat:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(245, 176, 66, 0.1);
    transform: translateY(-2px);
}

.hero-stat .number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-white);
}

.hero-stat .number .plus {
    color: var(--gold);
}

.hero-stat .label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Hero Visual */
.hero-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.hero-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-xl);
    padding: 28px 24px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(8px);
}

.hero-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(245, 176, 66, 0.1);
    transform: translateY(-6px);
}

.hero-card .icon {
    font-size: 2.6rem;
    margin-bottom: 10px;
    display: block;
}

.hero-card .title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-white);
}

.hero-card .desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.hero-card:nth-child(1) { animation-delay: 0.1s; }
.hero-card:nth-child(2) { animation-delay: 0.2s; }
.hero-card:nth-child(3) { animation-delay: 0.3s; }
.hero-card:nth-child(4) { animation-delay: 0.4s; }

/* ============================================
   SECTION COMMON
   ============================================ */
.section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header .badge {
    display: inline-block;
    background: rgba(245, 176, 66, 0.06);
    border: 1px solid rgba(245, 176, 66, 0.08);
    color: var(--gold);
    padding: 4px 18px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.section-header h2 {
    margin-bottom: 12px;
}

.section-header h2 .gold-text {
    color: var(--gold);
}

.section-header p {
    max-width: 560px;
    margin: 0 auto;
    color: var(--text-muted);
}

.section-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 18px auto 0;
    border-radius: 2px;
}

/* ============================================
   BOOKMAKERS CARDS
   ============================================ */
.bookmakers-grid {
    display: grid;
    gap: 16px;
}

.bookmaker-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    gap: 20px;
    align-items: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.bookmaker-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: all 0.4s ease;
}

.bookmaker-card:hover {
    border-color: rgba(245, 176, 66, 0.1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    background: var(--bg-card-hover);
}

.bookmaker-card:hover::before {
    opacity: 1;
}

.bookmaker-card.featured {
    border-color: rgba(245, 176, 66, 0.15);
    background: linear-gradient(135deg, var(--bg-card), rgba(245, 176, 66, 0.03));
}

.bookmaker-card .rank-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.bookmaker-card .rank-num {
    font-size: 1.8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.06);
    min-width: 36px;
}

.bookmaker-card .logo-box {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(245, 176, 66, 0.1), rgba(245, 176, 66, 0.02));
    border: 1px solid rgba(245, 176, 66, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--gold);
    flex-shrink: 0;
}

.bookmaker-card .info h3 {
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.bookmaker-card .info .rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.bookmaker-card .info .stars {
    color: var(--gold);
    letter-spacing: 2px;
}

.bookmaker-card .features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.bookmaker-card .features .item {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.bookmaker-card .features .item strong {
    color: var(--text-white);
}

.bookmaker-card .actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bookmaker-card .actions .btn {
    font-size: 0.82rem;
    padding: 10px 16px;
}

/* ============================================
   BONUSES
   ============================================ */
.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.bonus-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-xl);
    padding: 28px;
    transition: all 0.4s ease;
    position: relative;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0;
    transition: all 0.4s ease;
}

.bonus-card:hover {
    border-color: rgba(245, 176, 66, 0.08);
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}

.bonus-card:hover::before {
    opacity: 1;
}

.bonus-card .tag {
    display: inline-block;
    background: rgba(245, 176, 66, 0.06);
    border: 1px solid rgba(245, 176, 66, 0.06);
    color: var(--gold);
    padding: 2px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}

.bonus-card h3 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.bonus-card .bookmaker {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.bonus-card .amount {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 10px;
}

.bonus-card .desc {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 14px;
}

.bonus-card .details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    margin-bottom: 14px;
}

.bonus-card .details span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.bonus-card .details i {
    color: var(--gold);
    margin-right: 4px;
}

.bonus-card .promo {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.2);
    padding: 8px 14px;
    border-radius: var(--radius);
    margin-bottom: 14px;
    border: 1px solid rgba(245, 176, 66, 0.04);
}

.bonus-card .promo code {
    font-family: 'Inter', monospace;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.bonus-card .promo .copy-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.bonus-card .promo .copy-btn:hover {
    color: var(--gold);
    background: rgba(245, 176, 66, 0.06);
}

/* ============================================
   STRATEGIES
   ============================================ */
.strategies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.strategy-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-xl);
    padding: 28px;
    transition: all 0.4s ease;
    position: relative;
}

.strategy-card:hover {
    border-color: rgba(245, 176, 66, 0.08);
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}

.strategy-card .icon {
    font-size: 2.6rem;
    margin-bottom: 12px;
    display: block;
}

.strategy-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.strategy-card p {
    font-size: 0.9rem;
    margin-bottom: 14px;
    color: var(--text-light);
}

.strategy-card .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.78rem;
    color: var(--text-muted);
}

.strategy-card .meta i {
    color: var(--gold);
    margin-right: 4px;
}

/* ============================================
   NEWS
   ============================================ */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.news-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.4s ease;
}

.news-card:hover {
    border-color: rgba(245, 176, 66, 0.08);
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}

.news-card .img {
    height: 180px;
    background: linear-gradient(135deg, var(--bg-card-hover), var(--bg-deep));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.04);
    position: relative;
}

.news-card .img .category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--gold);
    letter-spacing: 0.04em;
}

.news-card .body {
    padding: 20px 24px 24px;
}

.news-card .body .date {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 6px;
}

.news-card .body h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.news-card .body p {
    font-size: 0.9rem;
    margin-bottom: 14px;
    color: var(--text-light);
}

.news-card .body .read-more {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.news-card .body .read-more:hover {
    gap: 12px;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.06);
}

.faq-item .q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.faq-item .q:hover {
    background: rgba(255, 255, 255, 0.01);
}

.faq-item .q h4 {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--text-white);
    margin: 0;
}

.faq-item .q .icon {
    color: var(--gold);
    font-size: 1.2rem;
    transition: all 0.4s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .q .icon {
    transform: rotate(45deg);
}

.faq-item .a {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    padding: 0 24px;
}

.faq-item.active .a {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-item .a p {
    font-size: 0.92rem;
    color: var(--text-light);
}

/* ============================================
   CTA
   ============================================ */
.cta-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section .bg-glow {
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 176, 66, 0.06), transparent 70%);
    pointer-events: none;
}

.cta-box {
    background: linear-gradient(135deg, rgba(245, 176, 66, 0.04), rgba(245, 176, 66, 0.01));
    border: 1px solid rgba(245, 176, 66, 0.06);
    border-radius: var(--radius-xl);
    padding: 56px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box h2 {
    margin-bottom: 12px;
}

.cta-box p {
    max-width: 560px;
    margin: 0 auto 28px;
    color: var(--text-muted);
}

.cta-box .actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   CONTACTS
   ============================================ */
.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item .icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(245, 176, 66, 0.06);
    border: 1px solid rgba(245, 176, 66, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.contact-item p {
    font-size: 0.9rem;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-xl);
    padding: 36px;
}

.contact-form .form-group {
    margin-bottom: 18px;
}

.contact-form label {
    display: block;
    font-weight: 500;
    font-size: 0.85rem;
    margin-bottom: 6px;
    color: var(--text-light);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-input);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(245, 176, 66, 0.15);
    box-shadow: 0 0 0 4px rgba(245, 176, 66, 0.03);
}

.contact-form textarea {
    min-height: 130px;
    resize: vertical;
}

/* ============================================
   404
   ============================================ */
.error-404 {
    text-align: center;
    padding: 120px 0;
}

.error-404 .code {
    font-size: 8rem;
    font-weight: 900;
    color: var(--gold);
    opacity: 0.08;
    line-height: 1;
}

.error-404 h2 {
    margin: 16px 0 8px;
}

.error-404 p {
    max-width: 440px;
    margin: 0 auto 28px;
}

.error-404 .actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 56px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 32px;
}

.footer-brand .logo {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.88rem;
    max-width: 360px;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-social a:hover {
    background: rgba(245, 176, 66, 0.08);
    border-color: rgba(245, 176, 66, 0.1);
    color: var(--gold);
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 14px;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul a {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.footer-col ul a:hover {
    color: var(--gold);
}

.footer-disclaimer {
    background: rgba(231, 76, 60, 0.04);
    border-left: 2px solid rgba(231, 76, 60, 0.2);
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
}

.footer-disclaimer strong {
    color: #e74c3c;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

.age-badge {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    padding: 2px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.75rem;
}

/* ============================================
   FILTERS
   ============================================ */
.filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    justify-content: center;
}

.filter-btn {
    padding: 8px 22px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 50px;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: rgba(255, 255, 255, 0.08);
    color: var(--text-white);
}

.filter-btn.active {
    background: rgba(245, 176, 66, 0.06);
    border-color: rgba(245, 176, 66, 0.1);
    color: var(--gold);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0a141f;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 30px rgba(245, 176, 66, 0.15);
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    pointer-events: none;
}

.back-top.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.back-top:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 50px rgba(245, 176, 66, 0.3);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .bookmaker-card {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px;
    }
    .bookmaker-card .rank-section {
        justify-content: center;
    }
    .bookmaker-card .features {
        justify-content: center;
    }
    .bookmaker-card .actions {
        flex-direction: row;
        justify-content: center;
    }
    .contacts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: var(--bg-deep);
        flex-direction: column;
        padding: 20px 24px 28px;
        gap: 2px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        transform: translateY(-120%);
        opacity: 0;
        transition: all 0.4s ease;
        pointer-events: none;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    }

    .nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav a {
        padding: 12px 16px;
        width: 100%;
        border-radius: var(--radius);
    }

    .nav-actions {
        margin-left: 0;
        margin-top: 8px;
        width: 100%;
    }
    .nav-actions .btn {
        width: 100%;
    }

    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-visual {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .cta-box {
        padding: 36px 24px;
    }

    .bonuses-grid,
    .strategies-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 48px 0;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .hero-stat {
        padding: 12px;
    }
    .hero-stat .number {
        font-size: 1.3rem;
    }
    .hero-visual {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .hero-actions {
        flex-direction: column;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .contact-form {
        padding: 24px 20px;
    }
    .error-404 .code {
        font-size: 5rem;
    }
}
/* ============================================
   FOOTBALL MINI-GAME
   ============================================ */
#footballCanvas {
    display: block;
    width: 100%;
    max-width: 480px;
    height: auto;
    aspect-ratio: 480 / 300;
    cursor: pointer;
    border-radius: 12px;
    background: #1a472a;
}

#footballCanvas:hover {
    box-shadow: 0 0 40px rgba(245, 176, 66, 0.05);
}

#footballRestart {
    transition: all 0.3s ease;
}

#footballRestart:hover {
    color: var(--gold);
}

@media (max-width: 520px) {
    #footballCanvas {
        max-width: 100%;
        border-radius: 8px;
    }
}