/* ===================================
   MOSTBET - Modern Casino & Sports Betting Platform
   Colors: Blue (#1E3A8A, #2563EB) + Orange (#F97316)
   =================================== */

:root {
    /* Primary Colors - Blue Theme */
    --primary-blue: #2563EB;
    --primary-blue-dark: #1E3A8A;
    --primary-blue-light: #3B82F6;
    
    /* Accent Colors */
    --accent-orange: #F97316;
    --accent-orange-dark: #EA580C;
    --accent-orange-light: #FB923C;
    
    /* Success/Action Green */
    --success-green: #22C55E;
    --success-green-dark: #16A34A;
    
    /* Background Colors */
    --bg-dark: #0F172A;
    --bg-secondary: #1E293B;
    --bg-card: #334155;
    --bg-hover: #475569;
    
    /* Text Colors */
    --text-white: #FFFFFF;
    --text-gray: #CBD5E1;
    --text-light-gray: #94A3B8;
    --text-dark-gray: #64748B;
    
    /* Gradients */
    --gradient-blue: linear-gradient(135deg, #1E3A8A 0%, #2563EB 100%);
    --gradient-orange: linear-gradient(135deg, #EA580C 0%, #F97316 100%);
    --gradient-green: linear-gradient(135deg, #16A34A 0%, #22C55E 100%);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ===================================
   HEADER & NAVIGATION
   =================================== */

.header {
    background: var(--bg-secondary);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    border-bottom: 2px solid var(--primary-blue);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: 55px;
    width: auto;
}

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

.nav li a {
    color: var(--text-gray);
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav li a:hover {
    background: var(--bg-hover);
    color: var(--text-white);
}

.nav li a.active {
    background: var(--primary-blue);
    color: var(--text-white);
}

/* Header Buttons */
.header-buttons {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

/* Language Selector */
.language-selector {
    position: relative;
}

.lang-btn {
    background: var(--bg-card);
    color: var(--text-white);
    border: 1px solid var(--primary-blue);
    padding: 0.6rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue-light);
}

.lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--bg-secondary);
    border: 1px solid var(--primary-blue);
    border-radius: 8px;
    min-width: 180px;
    display: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    z-index: 100;
}

.lang-menu.active {
    display: block;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.2s ease;
}

.lang-option:hover {
    background: var(--bg-hover);
    color: var(--text-white);
}

.lang-option.active {
    background: var(--primary-blue);
    color: var(--text-white);
}

.flag {
    font-size: 1.3rem;
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-orange);
    color: var(--text-white);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
    background: var(--gradient-blue);
    color: var(--text-white);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.btn-success {
    background: var(--gradient-green);
    color: var(--text-white);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-success::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-success:hover::before {
    width: 300px;
    height: 300px;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.4);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--text-white);
}

.btn-outline:hover {
    background: var(--primary-blue);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    background: var(--gradient-blue);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249,115,22,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero h1 .highlight {
    color: var(--accent-orange);
}

.hero-intro {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-white) !important;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-orange);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.bonus-badge {
    display: inline-block;
    background: var(--accent-orange);
    color: var(--text-white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}

/* ===================================
   SECTIONS
   =================================== */

.section {
    padding: 4rem 0;
}

.section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 800;
}

.section h2 i {
    margin-right: 0.5rem;
}

.section > p {
    text-align: center;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

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

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Feature Cards */
.feature-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-white);
}

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

/* Game Cards */
.game-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.game-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
}

.game-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: var(--gradient-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.game-info {
    padding: 1rem;
}

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

.game-info p {
    color: var(--text-light-gray);
    font-size: 0.9rem;
}

/* ===================================
   STATISTICS SECTION
   =================================== */

.stats-section {
    background: var(--gradient-blue);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(249,115,22,0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-orange);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(249, 115, 22, 0.5);
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-white);
    font-weight: 500;
}

/* ===================================
   ADVANTAGES SECTION
   =================================== */

.advantages-section {
    background: var(--bg-dark);
}

.advantage-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.advantage-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-orange);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.advantage-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.advantage-card h3 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.advantage-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===================================
   REVIEWS SECTION
   =================================== */

.reviews-section {
    background: var(--bg-secondary);
}

.review-card {
    background: var(--bg-dark);
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid var(--accent-orange);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.review-stars {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review-text {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.review-author strong {
    color: var(--text-white);
    font-size: 1.1rem;
}

.review-author span {
    color: var(--text-light-gray);
    font-size: 0.9rem;
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq-section {
    background: var(--bg-dark);
}

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

.faq-item {
    background: var(--bg-secondary);
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--bg-hover);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-orange);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-white);
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--accent-orange);
    font-size: 0.9rem;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem 3.5rem;
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===================================
   INFO TABLE
   =================================== */

.info-table {
    width: 100%;
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--primary-blue);
    margin: 2rem 0;
}

.info-table table {
    width: 100%;
    border-collapse: collapse;
}

.info-table th {
    background: var(--gradient-blue);
    color: var(--text-white);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 1.05rem;
    border-bottom: 2px solid var(--primary-blue);
}

.info-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
    font-size: 0.95rem;
}

.info-table tr:last-child td {
    border-bottom: none;
}

.info-table td:first-child {
    font-weight: 600;
    color: var(--text-white);
    width: 35%;
}

.info-table td i {
    color: var(--accent-orange);
    margin-right: 0.5rem;
}

.info-table tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* ===================================
   PLANS/ROADMAP SECTION
   =================================== */

.roadmap-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.roadmap-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

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

.roadmap-card {
    background: var(--bg-secondary);
    padding: 1.8rem;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.roadmap-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-orange);
    transition: width 0.3s ease;
}

.roadmap-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.roadmap-card:hover::before {
    width: 100%;
    opacity: 0.1;
}

.roadmap-card h3 {
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.roadmap-card h3 i {
    color: var(--accent-orange);
    font-size: 1.4rem;
}

.roadmap-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.roadmap-card ul li {
    color: var(--text-gray);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
}

.roadmap-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
    font-size: 1.1rem;
}

/* ===================================
   BONUS SECTION ENHANCEMENTS
   =================================== */

.bonus-highlight {
    background: var(--gradient-orange);
    color: var(--text-white);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
    animation: pulse 3s ease-in-out infinite;
}

.bonus-highlight h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.bonus-highlight p {
    font-size: 1rem;
    margin: 0;
}

.bonus-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.bonus-list li {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.2rem;
    margin: 0.8rem 0;
    border-radius: 8px;
    border-left: 4px solid var(--accent-orange);
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.bonus-list li:hover {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: var(--success-green);
    transform: translateX(5px);
}

.bonus-list li strong {
    color: var(--text-white);
    font-size: 1.05rem;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: var(--bg-secondary);
    padding: 3rem 0 2rem;
    border-top: 3px solid var(--primary-blue);
    margin-top: 4rem;
}

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

.info-box {
    background: var(--bg-dark);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: var(--accent-orange);
    box-shadow: 0 5px 20px rgba(249, 115, 22, 0.2);
}

.info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.info-box h4 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.info-box p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--bg-hover);
}

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

.footer-logo {
    flex-shrink: 0;
}

.footer-text {
    flex: 1;
}

.footer-text p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-warning {
    color: var(--text-light-gray) !important;
    font-size: 0.85rem !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-warning i {
    color: var(--accent-orange);
}

/* ===================================
   RESPONSIVE DESIGN - Mobile First
   =================================== */

/* Tablet & Small Desktop (до 968px) */
@media (max-width: 968px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header для планшетов */
    .nav {
        display: none;
    }
    
    .header-buttons .btn {
        font-size: 0.85rem;
        padding: 0.5rem 0.8rem;
    }
    
    .header-buttons .btn i {
        font-size: 0.9rem;
    }
    
    /* Hero */
    .hero {
        padding: 3rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-intro {
        font-size: 1rem;
        padding: 0.8rem 1rem;
    }
    
    .hero p {
        font-size: 0.95rem;
    }
    
    /* Sections */
    .section {
        padding: 3rem 0;
    }
    
    .section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    /* Grids */
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Statistics */
    .stat-number {
        font-size: 2.8rem;
    }
    
    /* Footer */
    .footer-info-boxes {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile (до 768px) */
@media (max-width: 768px) {
    /* Header Mobile Fix */
    .header-content {
        gap: 0.5rem;
    }
    
    .logo img {
        height: 45px;
    }
    
    /* Скрываем текст в кнопках, оставляем только иконки на мобильных */
    .header-buttons .btn span {
        display: none;
    }
    
    .header-buttons .btn {
        padding: 0.6rem 0.8rem;
        font-size: 0;
    }
    
    .header-buttons .btn i {
        font-size: 1.1rem;
        margin: 0;
    }
    
    .lang-btn .current-lang {
        font-size: 0.85rem;
    }
    
    /* Hero Mobile */
    .hero h1 {
        font-size: 1.6rem;
        line-height: 1.25;
    }
    
    .bonus-badge {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero-intro {
        font-size: 0.9rem;
        padding: 0.7rem 0.9rem;
        line-height: 1.5;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
        font-size: 0.95rem;
        padding: 0.8rem 1.5rem;
    }
    
    /* Sections Mobile */
    .section {
        padding: 2.5rem 0;
    }
    
    .section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }
    
    .section h2 i {
        font-size: 1.3rem;
    }
    
    /* Feature Cards */
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    /* Statistics */
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.95rem;
    }
    
    /* Reviews */
    .review-text {
        font-size: 0.9rem;
    }
    
    /* FAQ */
    .faq-question {
        font-size: 0.95rem;
    }
    
    .faq-answer {
        font-size: 0.85rem;
    }
    
    /* Info Table Mobile */
    .info-table td {
        font-size: 0.85rem;
        padding: 0.8rem;
    }
    
    .info-table th {
        font-size: 0.95rem;
        padding: 0.8rem;
    }
    
    /* Roadmap Grid Mobile */
    .roadmap-grid {
        grid-template-columns: 1fr;
    }
    
    .roadmap-card {
        padding: 1.5rem;
    }
    
    .roadmap-card h3 {
        font-size: 1.1rem;
    }
    
    .roadmap-card ul li {
        font-size: 0.9rem;
    }
    
    /* Bonus Highlight Mobile */
    .bonus-highlight h3 {
        font-size: 1.2rem;
    }
    
    .bonus-highlight p {
        font-size: 0.9rem;
    }
    
    /* Footer */
    .footer-info-boxes {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .info-box {
        padding: 1.2rem;
    }
    
    .info-icon i {
        font-size: 2.2rem;
    }
}

/* Small Mobile (до 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    /* Header Ultra Mobile */
    .header {
        padding: 0.7rem 0;
    }
    
    .logo img {
        height: 38px;
    }
    
    .header-buttons {
        gap: 0.4rem;
    }
    
    .header-buttons .btn {
        padding: 0.5rem 0.6rem;
    }
    
    .header-buttons .btn i {
        font-size: 1rem;
    }
    
    .lang-btn {
        padding: 0.5rem 0.7rem;
        font-size: 0.8rem;
    }
    
    /* Hero Ultra Mobile */
    .hero {
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 1.35rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
    
    .bonus-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-intro {
        font-size: 0.85rem;
        padding: 0.6rem 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .hero p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .btn-large {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }
    
    /* Sections Ultra Mobile */
    .section {
        padding: 2rem 0;
    }
    
    .section h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .section h2 i {
        font-size: 1.1rem;
    }
    
    .section p {
        font-size: 0.85rem;
    }
    
    /* Cards */
    .feature-card,
    .game-card,
    .review-card,
    .stat-card {
        padding: 1.2rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .feature-card h3 {
        font-size: 1rem;
    }
    
    .feature-card p {
        font-size: 0.85rem;
    }
    
    /* Statistics Ultra Mobile */
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    /* Reviews Ultra Mobile */
    .review-stars {
        font-size: 1rem;
    }
    
    .review-text {
        font-size: 0.85rem;
    }
    
    .review-author {
        font-size: 0.8rem;
    }
    
    /* FAQ Ultra Mobile */
    .faq-question {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
    
    .faq-answer {
        font-size: 0.8rem;
        padding: 0.8rem;
    }
    
    /* Info Table Ultra Mobile */
    .info-table td,
    .info-table th {
        font-size: 0.8rem;
        padding: 0.6rem;
    }
    
    .info-table td:first-child {
        width: 40%;
    }
    
    /* Roadmap Ultra Mobile */
    .roadmap-card {
        padding: 1.2rem;
    }
    
    .roadmap-card h3 {
        font-size: 1rem;
    }
    
    .roadmap-card ul li {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }
    
    /* Bonus Highlight Ultra Mobile */
    .bonus-highlight {
        padding: 1.2rem;
    }
    
    .bonus-highlight h3 {
        font-size: 1.1rem;
        flex-direction: column;
    }
    
    .bonus-highlight p {
        font-size: 0.85rem;
    }
    
    /* Footer Ultra Mobile */
    .info-box {
        padding: 1rem;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
    }
    
    .info-icon i {
        font-size: 1.8rem;
    }
    
    .info-box h4 {
        font-size: 0.95rem;
    }
    
    .info-box p {
        font-size: 0.8rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-logo img {
        height: 28px;
    }
    
    .footer-text p {
        font-size: 0.8rem;
    }
    
    .footer-warning {
        justify-content: center;
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

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

.text-orange {
    color: var(--accent-orange);
}

.text-blue {
    color: var(--primary-blue);
}

.text-green {
    color: var(--success-green);
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
