﻿/* ==================== 
   1xBet Website Styles 
   ==================== */

:root {
    --primary-blue: #1E3A5F;
    --primary-blue-dark: #0F1F3E;
    --primary-blue-light: #2D4E73;
    --accent-green: #8DC63F;
    --accent-green-hover: #7AB82F;
    --accent-gold: #FFB81C;
    --text-primary: #FFFFFF;
    --text-secondary: #E0E6ED;
    --text-muted: #8B9AA8;
    --bg-dark: #0A1628;
    --bg-section: #1A2C47;
    --bg-card: #253752;
    --border-color: #2D4E73;
    --success: #27AE60;
    --danger: #E74C3C;
    --warning: #F39C12;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

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

html {
    width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-blue-dark) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    max-width: 100%;
    width: 100%;
}

/* Предотвращение выхода элементов за границы экрана */
img, video, iframe {
    max-width: 100%;
    height: auto;
}

section {
    overflow-x: hidden;
}

table {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header */
header {
    background: var(--primary-blue-dark);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--accent-green);
}

.auth-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    text-transform: uppercase;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.btn-login {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--accent-green);
}

.btn-login:hover {
    background: var(--accent-green);
}

.btn-register {
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-hover) 100%);
    color: var(--text-primary);
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-green);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-hover) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon i {
    color: var(--text-primary);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.btn-cta {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-hover) 100%);
    color: var(--text-primary);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(141, 198, 63, 0.4);
}

/* Sections */
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle, .section-intro {
    text-align: center;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.seo-text-block {
    background: #0e1e3c;
    padding: 3rem 0;
}

.seo-text-block p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* Bonus Section */
.bonus-section-new {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-blue-dark) 100%);
}

.bonus-header-new {
    text-align: center;
    margin-bottom: 4rem;
}

.bonus-label {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--primary-blue-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.bonus-lead {
    color: var(--text-secondary);
    max-width: 800px;
    margin: 1rem auto 0;
    font-size: 1.1rem;
}

.bonus-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.bonus-main-card {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.bonus-visual {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(141, 198, 63, 0.1) 0%, rgba(122, 184, 47, 0.05) 100%);
    border-radius: 12px;
    margin-bottom: 2rem;
    position: relative;
}

.bonus-amount-display {
    position: relative;
    z-index: 1;
}

.amount-prefix {
    color: var(--accent-green);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.amount-value {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0.5rem 0;
}

.currency {
    font-size: 2rem;
}

.amount-plus {
    color: var(--accent-gold);
    font-size: 1.3rem;
    font-weight: 700;
}

.bonus-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(141, 198, 63, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.bonus-offer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.offer-block {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-section);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.offer-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-hover) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.offer-details h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.offer-details p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.bonus-breakdown h3 {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.breakdown-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.breakdown-item {
    background: var(--bg-section);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.breakdown-item:hover {
    border-color: var(--accent-green);
    transform: translateY(-3px);
}

.breakdown-item.featured {
    border-color: var(--accent-gold);
    background: linear-gradient(135deg, rgba(255, 184, 28, 0.1) 0%, transparent 100%);
}

.breakdown-badge {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: 900;
    font-size: 1.5rem;
}

.breakdown-badge.first { background: linear-gradient(135deg, #3498DB 0%, #2980B9 100%); }
.breakdown-badge.second { background: linear-gradient(135deg, #9B59B6 0%, #8E44AD 100%); }
.breakdown-badge.third { background: linear-gradient(135deg, #E67E22 0%, #D35400 100%); }
.breakdown-badge.fourth { background: linear-gradient(135deg, var(--accent-gold) 0%, #F39C12 100%); }

.breakdown-percent {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-green);
    margin-bottom: 0.3rem;
}

.breakdown-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.breakdown-bonus {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1rem;
}

.featured-label {
    background: var(--accent-gold);
    color: var(--primary-blue-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-top: 0.5rem;
    display: inline-block;
}

.bonus-activation {
    background: var(--bg-section);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.activation-steps {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
}

.step-line {
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border-color);
    z-index: 0;
}

.activation-step {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.step-num {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-hover) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: 900;
    font-size: 1.2rem;
}

.activation-step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.btn-bonus-claim {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-hover) 100%);
    color: var(--text-primary);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: var(--transition);
    text-decoration: none;
}

.btn-bonus-claim:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(141, 198, 63, 0.4);
}

.btn-arrow {
    font-size: 1.5rem;
    transition: var(--transition);
}

.btn-bonus-claim:hover .btn-arrow {
    transform: translateX(5px);
}

.bonus-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bonus-info-card {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.bonus-info-card.highlight {
    border-color: var(--accent-green);
    background: linear-gradient(135deg, rgba(141, 198, 63, 0.1) 0%, transparent 100%);
}

.bonus-info-card.success {
    border-color: var(--success);
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.1) 0%, transparent 100%);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-hover) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto;
}

.bonus-info-card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.bonus-info-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.bonus-promo-code {
    background: var(--bg-section);
    padding: 1.5rem;
    border-radius: 10px;
}

.promo-label {
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.promo-input-wrapper {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
}

.promo-input {
    flex: 1;
    padding: 0.8rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 1rem;
}

.promo-btn {
    padding: 0.8rem 1.5rem;
    background: var(--accent-green);
    border: none;
    border-radius: 6px;
    color: var(--text-primary);
    font-weight: 700;
    cursor: pointer;
}

.promo-hint {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.bonus-terms {
    margin-top: 2rem;
}

.terms-dropdown {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0;
}

.terms-dropdown summary {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 700;
    list-style: none;
}

.terms-dropdown summary::-webkit-details-marker {
    display: none;
}

.terms-content {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.term-item strong {
    display: block;
    color: var(--accent-green);
    margin-bottom: 0.5rem;
}

.term-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.terms-note {
    background: var(--bg-section);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid var(--accent-gold);
}

/* Mirror Section */
.mirror-section-compact {
    padding: 4rem 0;
    background: var(--bg-section);
}

.mirror-compact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.mirror-left h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.mirror-desc {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.mirror-advantages {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.adv-item {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.adv-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-hover) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.adv-item strong {
    display: block;
    margin-bottom: 0.2rem;
}

.adv-item span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.mirror-warning-compact {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(243, 156, 18, 0.1);
    border: 1px solid var(--warning);
    border-radius: 10px;
}

.warn-icon {
    color: var(--warning);
}

.mirror-access-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.access-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.status-badge.online {
    background: rgba(39, 174, 96, 0.2);
    color: var(--success);
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.access-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.method-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-section);
    border-radius: 8px;
}

.method-icon {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon.telegram { background: linear-gradient(135deg, #0088cc 0%, #0077bb 100%); }
.method-icon.email { background: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%); }
.method-icon.app { background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-hover) 100%); }
.method-icon.support { background: linear-gradient(135deg, #9B59B6 0%, #8E44AD 100%); }

.method-info {
    flex: 1;
}

.method-info strong {
    display: block;
    margin-bottom: 0.2rem;
}

.method-info span {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.method-btn, .method-link {
    padding: 0.5rem 1rem;
    background: var(--accent-green);
    color: var(--text-primary);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    font-size: 0.85rem;
}

.quick-faq {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-mini {
    padding: 1rem;
    background: var(--bg-section);
    border-radius: 6px;
}

.faq-mini strong {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--accent-green);
}

.faq-mini span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Sports Section */
.sports-section {
    padding: 5rem 0;
}

.sports-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.sport-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
}

.sport-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-green);
}

.sport-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-hover) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto;
}

.sport-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.sport-card > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.sport-features {
    list-style: none;
}

.sport-features li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.sport-features li:first-child {
    border-top: none;
}

.live-betting {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.live-betting h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.live-betting > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.live-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.live-feature {
    padding: 1.5rem;
    background: var(--bg-section);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.live-feature:hover {
    border-color: var(--accent-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 213, 115, 0.15);
}

.live-feature strong {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-green);
    font-size: 1.05rem;
}

.live-feature strong i {
    width: 24px;
    height: 24px;
    color: var(--accent-green);
}

.live-feature p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Auth Section - NEW STYLES */
.auth-section {
    padding: 5rem 0;
    background: var(--bg-section);
}

.auth-instruction-block {
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    margin-bottom: 3rem;
    overflow: hidden;
}

.instruction-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--bg-section) 0%, var(--bg-card) 100%);
    border-bottom: 1px solid var(--border-color);
}

.instruction-icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.instruction-icon.register-icon {
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-hover) 100%);
}

.instruction-icon.login-icon {
    background: linear-gradient(135deg, #3498DB 0%, #2980B9 100%);
}

.instruction-icon i {
    width: 35px;
    height: 35px;
}

.instruction-title-group h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.instruction-title-group p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.instruction-content {
    padding: 2.5rem;
}

.instruction-intro {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.auth-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.method-card {
    background: var(--bg-section);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.method-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.method-number {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-hover) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.method-badges {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    align-items: flex-end;
}

.step-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

.step-badge.fast {
    background: rgba(39, 174, 96, 0.2);
    color: var(--success);
}

.step-badge.reliable {
    background: rgba(52, 152, 219, 0.2);
    color: #3498DB;
}

.step-badge.convenient {
    background: rgba(155, 89, 182, 0.2);
    color: #9B59B6;
}

.step-badge.time {
    background: rgba(141, 198, 63, 0.2);
    color: var(--accent-green);
}

.method-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.method-card > p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.method-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.method-features span {
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.important-note {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-section);
    border-radius: 12px;
    border-left: 4px solid var(--warning);
    margin-bottom: 2rem;
}

.note-icon {
    width: 50px;
    height: 50px;
    background: rgba(243, 156, 18, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--warning);
}

.note-content h4 {
    margin-bottom: 1rem;
    color: var(--warning);
}

.note-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.note-content li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
}

.note-content li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 900;
}

.login-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.login-method-card {
    background: var(--bg-section);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.login-method-card:hover {
    border-color: var(--accent-green);
    transform: translateY(-3px);
}

.login-method-card.highlighted {
    border-color: var(--accent-green);
    background: linear-gradient(135deg, rgba(141, 198, 63, 0.05) 0%, transparent 100%);
}

.login-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-hover) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.login-method-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.login-method-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.method-note {
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--accent-green);
    display: inline-block;
}

.login-troubleshooting {
    background: var(--bg-section);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.login-troubleshooting h4 {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
}

.troubleshooting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.trouble-item {
    display: flex;
    gap: 1rem;
}

.trouble-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.trouble-content strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--accent-green);
}

.trouble-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.cta-block {
    text-align: center;
}

.btn-cta-large, .btn-cta-secondary {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
    text-decoration: none;
}

.btn-cta-large {
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-hover) 100%);
    color: var(--text-primary);
}

.btn-cta-secondary {
    background: linear-gradient(135deg, #3498DB 0%, #2980B9 100%);
    color: var(--text-primary);
}

.btn-cta-large:hover, .btn-cta-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(141, 198, 63, 0.4);
}

/* Payment Section */
.payment-section {
    padding: 5rem 0;
}

.payment-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.payment-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align:center;
}

.payment-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-green);
    box-shadow: var(--shadow-lg);
}

.payment-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-hover) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto;
}

.payment-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.payment-card > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.payment-details {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.detail-item {
    flex: 1;
    text-align: center;
    padding: 1rem;
    background: var(--bg-section);
    border-radius: 8px;
}

.detail-item span {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.detail-item strong {
    color: var(--accent-green);
    font-size: 1rem;
}

.payment-info {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 12px;
}

.payment-info h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.payment-steps {
    list-style: none;
    counter-reset: step-counter;
}

.payment-steps li {
    counter-increment: step-counter;
    padding: 1rem 0 1rem 3rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.7;
}

.payment-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-hover) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.payment-info > p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-top: 2rem;
}

/* App Section */
.app-section {
    padding: 5rem 0;
    background: var(--bg-section);
}

.app-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
}

.app-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.app-feature {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: 12px;
}

.feature-emoji {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-hover) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.app-feature h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.app-feature p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.app-downloads h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition);
}

.download-btn:hover {
    border-color: var(--accent-green);
    transform: translateY(-3px);
}

.btn-icon img {
    width: 40px;
    height: 40px;
}

.btn-text {
    display: flex;
    flex-direction: column;
}

.btn-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.btn-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.app-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(243, 156, 18, 0.1);
    border: 1px solid var(--warning);
    border-radius: 10px;
}

.app-note p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.app-note a {
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--bg-section);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    margin-bottom: 1rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--accent-green);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--accent-green);
    transition: var(--transition);
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Footer */
footer {
    background: var(--primary-blue-dark);
    padding: 3rem 0 1.5rem;
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-green);
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--accent-green);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--accent-green);
    transform: translateY(-3px);
}

.footer-license {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 1rem;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.warning-text {
    color: var(--warning);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-card);
    width: 90%;
    max-width: 500px;
    border-radius: 16px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    z-index: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--bg-section);
    color: var(--text-primary);
}

.modal-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-color);
}

.modal-tab {
    flex: 1;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.modal-tab.active {
    color: var(--accent-green);
    border-bottom: 3px solid var(--accent-green);
}

.modal-body {
    padding: 2rem;
}

.modal-panel {
    display: none;
}

.modal-panel.active {
    display: block;
}

.bonus-offer {
    background: linear-gradient(135deg, rgba(141, 198, 63, 0.1) 0%, transparent 100%);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.bonus-offer strong {
    color: var(--accent-green);
}

.register-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.reg-tab {
    flex: 1;
    padding: 0.8rem;
    background: var(--bg-section);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-secondary);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.85rem;
}

.reg-tab.active {
    background: var(--accent-green);
    color: var(--text-primary);
    border-color: var(--accent-green);
}

.reg-content {
    display: none;
}

.reg-content.active {
    display: block;
}

.form-input, .form-select {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    background: var(--bg-section);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
}

.form-input:focus, .form-select:focus {
    outline: none;
    border-color: var(--accent-green);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.forgot-link {
    color: var(--accent-green);
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-hover) 100%);
    color: var(--text-primary);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(141, 198, 63, 0.4);
}

.or-text {
    text-align: center;
    color: var(--text-muted);
    margin: 1.5rem 0 1rem;
}

.social-auth {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-btn {
    padding: 0.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.vk-btn { background: #0077FF; color: white; }
.ok-btn { background: #EE8208; color: white; }
.ya-btn { background: #FF0000; color: white; }
.tg-btn { background: #0088cc; color: white; }
.gl-btn { background: #4285F4; color: white; }

.social-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.social-btn-small {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.85rem;
}

.terms-text {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 1rem;
    line-height: 1.5;
}

/* Casino Page Styles */
.casino-hero-compact {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-blue-dark) 50%, #1A0F2E 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
}

.hero-stats-inline {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.hero-stats-inline span {
    color: var(--text-secondary);
}

.hero-stats-inline strong {
    color: var(--accent-green);
}

.hero-jackpot-display {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.jackpot-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.jackpot-amount {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.jackpot-note {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.categories-compact {
    padding: 5rem 0;
}

.categories-flex {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.cat-item {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.cat-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-green);
}

.cat-item.hot {
    border-color: var(--accent-gold);
    background: linear-gradient(135deg, rgba(255, 184, 28, 0.05) 0%, transparent 100%);
}

.cat-item i {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.cat-item h3 {
    margin-bottom: 0.5rem;
}

.cat-item p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.cat-count {
    display: inline-block;
    background: var(--bg-section);
    padding: 0.3rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    color: var(--accent-green);
    font-weight: 700;
}

.top-games-section {
    padding: 5rem 0;
    background: var(--bg-section);
}

.section-header-flex {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-flex p {
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.games-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.game-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.game-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 1rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.game-badge.new { background: var(--success); color: white; }
.game-badge.hot { background: var(--danger); color: white; }

.game-img-placeholder {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.game-img-placeholder i {
    width: 60px;
    height: 60px;
    color: white;
}

.game-info {
    padding: 1.5rem;
}

.game-info h3 {
    margin-bottom: 0.3rem;
}

.game-provider {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.game-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.game-rtp {
    color: var(--accent-green);
}

.game-players, .game-jackpot {
    color: var(--accent-gold);
}

.game-actions {
    display: flex;
    gap: 0.5rem;
    padding: 0 1.5rem 1.5rem;
}

.btn-game-demo, .btn-game-play {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-game-demo {
    background: var(--bg-section);
    color: var(--text-primary);
}

.btn-game-play {
    background: var(--accent-green);
    color: var(--text-primary);
}

.btn-game-play.wide {
    flex: unset;
    width: 100%;
}

.games-note {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-secondary);
}

.live-block-modern {
    padding: 5rem 0;
}

.live-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.live-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(231, 76, 60, 0.2);
    color: var(--danger);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--danger);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.live-info h2 {
    margin-bottom: 1rem;
}

.live-info > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.live-features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.live-feature-row {
    display: flex;
    gap: 1rem;
}

.live-feature-row i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-hover) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.live-feature-row strong {
    display: block;
    margin-bottom: 0.3rem;
}

.live-feature-row span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.live-games-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.game-tag {
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.live-tables-preview {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.table-card {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.table-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--success);
    font-size: 0.85rem;
}

.table-card h4 {
    margin-bottom: 0.3rem;
}

.table-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.table-limits {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.table-players {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-green);
    font-size: 0.85rem;
}

.providers-quick {
    padding: 5rem 0;
    background: var(--bg-section);
}

.providers-desc {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-secondary);
}

.providers-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.provider-mini {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.provider-mini h3 {
    margin-bottom: 0.8rem;
    color: var(--accent-green);
}

.provider-mini p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.providers-footer {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.bonuses-table-section {
    padding: 5rem 0;
}

.bonus-cards-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.bonus-card-m {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.bonus-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.bonus-tag { background: var(--accent-green); color: white; }
.bonus-tag.weekly { background: #3498DB; color: white; }
.bonus-tag.friday { background: var(--accent-gold); color: var(--primary-blue-dark); }

.bonus-card-m h3 {
    margin-bottom: 0.5rem;
}

.bonus-main-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-green);
    margin-bottom: 1rem;
}

.bonus-card-m > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.mini-bonus-table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
}

.mini-bonus-table td {
    padding: 0.8rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.mini-bonus-table tr.highlight-row {
    background: rgba(141, 198, 63, 0.1);
}

.bonus-benefits {
    list-style: none;
}

.bonus-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.bonus-benefits i {
    color: var(--success);
}

.bonus-example {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--bg-section);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
}

.bonus-terms-small {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.rtp-section-compact {
    padding: 4rem 0;
    background: var(--bg-section);
}

.rtp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.rtp-block {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.rtp-block i {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.rtp-block h3 {
    margin-bottom: 1rem;
}

.rtp-block p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-compact {
    padding: 5rem 0;
}

.faq-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.faq-details {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.faq-details summary {
    cursor: pointer;
    font-weight: 700;
    margin-bottom: 1rem;
    list-style: none;
}

.faq-details p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.responsible-compact {
    padding: 4rem 0;
    background: var(--bg-section);
}

.responsible-box {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 12px;
    border-left: 4px solid var(--warning);
}

.responsible-icon {
    width: 60px;
    height: 60px;
    background: rgba(243, 156, 18, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--warning);
}

.responsible-text h3 {
    margin-bottom: 1rem;
    color: var(--warning);
}

.responsible-text p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Download Page Styles */
.download-hero {
    padding: 4rem 0;
    text-align: center;
}

.hero-subtitle {
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.quick-download {
    display: flex;
    gap: 2rem;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.download-option {
    flex: 1;
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.download-option:hover {
    border-color: var(--accent-green);
}

.os-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

.os-icon.android {
    background: linear-gradient(135deg, #23362b 0%, #2BAF6B 100%);
}

.os-icon.ios {
    background: linear-gradient(135deg, #555555 0%, #333333 100%);
}

.os-icon img {
    width: 50px;
    height: 50px;
}

.os-info h3 {
    margin-bottom: 0.5rem;
}

.os-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.btn-download {
    padding: 0.8rem 2rem;
    background: var(--accent-green);
    color: var(--text-primary);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.app-benefits {
    padding: 5rem 0;
    background: var(--bg-section);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-green);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-hover) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.android-section, .ios-section {
    padding: 5rem 0;
}

.platform-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.platform-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-card);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-icon img {
    width: 50px;
    height: 50px;
}

.platform-subtitle {
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.info-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
}

.info-card h3 {
    margin-bottom: 1.5rem;
}

.tech-specs {
    list-style: none;
}

.tech-specs li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.tech-specs li:last-child {
    border-bottom: none;
}

.download-btn-container {
    margin-top: 2rem;
}

.btn-download-large {
    width: 100%;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
}

.android-btn {
    background: linear-gradient(135deg, #23362b 0%, #2BAF6B 100%);
    color: white;
}

.ios-btn {
    background: linear-gradient(135deg, #555555 0%, #333333 100%);
    color: white;
}

.download-icon {
    font-size: 1.5rem;
}

.installation-guide h3 {
    margin-bottom: 2rem;
}

.ios-notice {
    background: rgba(243, 156, 18, 0.1);
    border: 1px solid var(--warning);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.ios-notice i {
    color: var(--warning);
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
}

.step-number {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-hover) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 900;
    font-size: 1.3rem;
}

.step-content h4 {
    margin-bottom: 0.8rem;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.step-note {
    margin-top: 0.8rem;
    padding: 1rem;
    background: var(--bg-section);
    border-radius: 8px;
}

.step-note p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.troubleshooting {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--bg-section);
    border-radius: 12px;
}

.troubleshooting h4 {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--warning);
}

.problem-item {
    margin-bottom: 1.5rem;
}

.problem-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--accent-green);
}

.problem-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.android-features, .ios-features {
    margin-top: 3rem;
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
}

.android-features h3, .ios-features h3 {
    margin-bottom: 1.5rem;
}

.features-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
}

.feature-check {
    color: var(--success);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-item h4 {
    margin-bottom: 0.3rem;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.desktop-section {
    padding: 5rem 0;
    background: var(--bg-section);
}

.desktop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.desktop-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.desktop-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.desktop-card h3 {
    margin-bottom: 1rem;
}

.desktop-card > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.desktop-features {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
}

.desktop-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    border-top: 1px solid var(--border-color);
}

.btn-secondary {
    padding: 0.8rem 2rem;
    background: var(--bg-section);
    color: var(--text-primary);
    border: 2px solid var(--accent-green);
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--accent-green);
}

.mobile-web-section {
    padding: 5rem 0;
}

.mobile-web-content {
    max-width: 1000px;
    margin: 0 auto;
}

.mobile-web-content > p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.comparison-table-container h3 {
    margin-bottom: 1.5rem;
}

.comparison-table {
    width: 100%;
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border-collapse: collapse;
}

.comparison-table thead {
    background: var(--bg-section);
}

.comparison-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 700;
}

.comparison-table td {
    padding: 1rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.positive { color: var(--success); }
.negative { color: var(--danger); }
.neutral { color: var(--text-secondary); }

.mobile-web-access {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 12px;
}

.mobile-web-access h4 {
    margin-bottom: 1rem;
}

.mobile-web-access p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .bonus-showcase {
        grid-template-columns: 1fr;
    }
    
    .breakdown-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mirror-compact-wrapper,
    .download-content {
        grid-template-columns: 1fr;
    }
    
    .hero-grid,
    .live-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .auth-buttons {
        display: flex;
        gap: 0.5rem;
    }
    
    .auth-buttons .btn {
        padding: 0.6rem 1rem;
        font-size: 12px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .bonus-offer-grid,
    .breakdown-cards {
        grid-template-columns: 1fr;
    }
    
    .terms-grid {
        grid-template-columns: 1fr;
    }
    
    .sports-grid,
    .payment-grid,
    .app-features-grid {
        grid-template-columns: 1fr;
    }
    
    .auth-methods,
    .login-methods-grid {
        grid-template-columns: 1fr;
    }
    
    .troubleshooting-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid-2col {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .quick-download {
        flex-direction: column;
    }
    
    .comparison-table {
        font-size: 0.85rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .navbar {
        gap: 0.5rem;
    }
    
    .auth-buttons {
        gap: 0.3rem;
    }
    
    .auth-buttons .btn {
        padding: 0.5rem 0.8rem;
        font-size: 11px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .section-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .amount-value {
        font-size: 2.5rem;
    }
    
    .bonus-main-card {
        padding: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    /* Кнопки */
    .btn {
        padding: 0.6rem 1rem;
        font-size: 13px;
    }
    
    .btn-cta {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Таблицы */
    .comparison-table {
        font-size: 0.75rem;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.4rem;
        white-space: nowrap;
    }
}

/* Дополнительные стили для очень маленьких экранов */
@media (max-width: 420px) {
    .container {
        padding: 0 10px;
    }
    
    body {
        font-size: 14px;
    }
    
    .logo-img {
        height: 30px;
    }
    
    .navbar {
        gap: 0.3rem;
    }
    
    .auth-buttons {
        gap: 0.25rem;
    }
    
    .auth-buttons .btn {
        padding: 0.4rem 0.6rem;
        font-size: 10px;
    }
    
    .hero h1 {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .amount-value {
        font-size: 2rem;
    }
    
    .amount-prefix,
    .amount-plus {
        font-size: 0.75rem;
    }
    
    .bonus-main-card,
    .benefit-card,
    .sport-card,
    .payment-card {
        padding: 1rem;
    }
    
    .btn {
        padding: 0.5rem 0.8rem;
        font-size: 12px;
    }
    
    .btn-cta {
        padding: 0.7rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .breakdown-percent {
        font-size: 1.5rem;
    }
    
    .breakdown-desc {
        font-size: 0.85rem;
    }
    
    .step-badge {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .feature-card h3 {
        font-size: 1rem;
    }
    
    .feature-card p {
        font-size: 0.85rem;
    }
    
    /* Адаптация длинных слов */
    h1, h2, h3, h4, h5, h6 {
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    p, li, span {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Все grid-элементы на одну колонку */
    .hero-features,
    .sports-grid,
    .live-features,
    .auth-methods,
    .login-methods-grid,
    .troubleshooting-grid,
    .payment-grid,
    .categories-flex,
    .games-grid-modern,
    .providers-grid-compact,
    .bonus-cards-modern,
    .rtp-grid,
    .benefits-grid,
    .features-row,
    .desktop-grid {
        grid-template-columns: 1fr;
    }
    
    /* Таблицы на очень маленьких экранах */
    .comparison-table {
        font-size: 0.7rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.3rem;
    }
    
    /* Модальные окна */
    .modal-content {
        width: 98%;
        padding: 0.5rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .form-input,
    .form-select {
        font-size: 14px;
        padding: 0.7rem;
    }
    
    /* Бонусные карточки */
    .offer-block {
        padding: 1rem;
    }
    
    .bonus-offer-grid {
        gap: 1rem;
    }
    
    /* Методы оплаты */
    .payment-details {
        font-size: 0.85rem;
    }
    
    /* Зеркало */
    .mirror-compact-wrapper,
    .mirror-advantages,
    .access-methods {
        gap: 1rem;
    }
    
    /* Download buttons */
    .download-buttons {
        flex-direction: column;
    }
    
    /* Активационные шаги */
    .activation-steps {
        gap: 1.5rem;
    }
    
    .activation-step {
        font-size: 0.85rem;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease;
}
a {
    text-decoration: none;
}