/* ============================================
   Mostbet APK Kazakhstan - Premium Design 2026
   Adaptive Mobile-First CSS Framework
   ============================================ */

/* ===== ЦВЕТОВАЯ СХЕМА ===== */
:root {
    /* Основные цвета бренда */
    --color-primary: #013974;      /* Темно-синий (заголовки H1) */
    --color-secondary: #08519E;    /* Синий (заголовки H2) */
    --color-accent: #FA5C00;       /* Оранжевый (основные кнопки) */
    --color-blue: #4B95E5;         /* Голубой (кнопки входа) */
    
    /* Фоновые цвета */
    --color-bg-light: #E8ECF1;     /* Светло-серый фон */
    --color-white: #FFFFFF;        /* Белый */
    --color-bg-dark: #001F3D;      /* Темный фон для футера */
    
    /* Текстовые цвета */
    --color-text-dark: #1A2332;    /* Основной текст */
    --color-text-gray: #5A6472;    /* Вторичный текст */
    --color-text-light: #8B95A3;   /* Светлый текст */
    
    /* Дополнительные цвета */
    --color-success: #10B981;      /* Зеленый (успех) */
    --color-warning: #F59E0B;      /* Желтый (предупреждение) */
    --color-error: #EF4444;        /* Красный (ошибка) */
    --color-border: #D1D5DB;       /* Границы */
    
    /* Параметры дизайна */
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --border-radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Тени */
    --shadow-sm: 0 2px 8px rgba(1, 57, 116, 0.08);
    --shadow-md: 0 4px 16px rgba(1, 57, 116, 0.12);
    --shadow-lg: 0 8px 32px rgba(1, 57, 116, 0.16);
    --shadow-xl: 0 16px 48px rgba(1, 57, 116, 0.24);
    
    /* Градиенты */
    --gradient-primary: linear-gradient(135deg, #013974 0%, #08519E 100%);
    --gradient-accent: linear-gradient(135deg, #FA5C00 0%, #FF7A33 100%);
    --gradient-blue: linear-gradient(135deg, #4B95E5 0%, #5BA8FF 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(1, 57, 116, 0.9) 0%, rgba(8, 81, 158, 0.95) 100%);
}

/* ===== ГЛОБАЛЬНЫЕ СТИЛИ ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--color-bg-light);
    color: var(--color-text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-sm);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    opacity: 0.85;
}

ul {
    list-style: none;
}

/* ===== ТИПОГРАФИЯ ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--color-primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--color-secondary);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--color-primary);
}

p {
    font-size: 1.05rem;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* ===== КНОПКИ ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--color-white);
}

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

.btn-secondary {
    background: var(--gradient-blue);
    color: var(--color-white);
}

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

.btn-outline {
    background: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    box-shadow: none;
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: #FFFFFF;
    color: var(--color-primary);
    border-color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

/* ===== HEADER (ШАПКА) ===== */
.header {
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--color-accent);
}

.header-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    height: 50px;
    width: auto;
    max-width: 200px;
    border-radius: 0;
    object-fit: contain;
    display: block;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: none; /* Скрываем текст, показываем только логотип */
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-dark);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-accent);
    background: rgba(250, 92, 0, 0.1);
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 4rem 1.5rem;
    background: var(--color-white);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: 2;
}

.hero-container {
    max-width: 1320px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    color: var(--color-white);
    background: linear-gradient(135deg, #FFFFFF 0%, #E8ECF1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

.hero-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ===== PROMO BLOCK ===== */
.promo-block {
    background: var(--gradient-accent);
    color: var(--color-white);
    text-align: center;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    margin: 2rem 0;
    border-radius: var(--border-radius-lg);
}

.promo-code {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    display: inline-block;
    margin: 1rem 0;
    border: 3px dashed rgba(255, 255, 255, 0.5);
}

/* ===== SECTIONS ===== */
.section {
    padding: 5rem 1.5rem;
}

.section-white {
    background: var(--color-white);
}

.section-light {
    background: var(--color-bg-light);
}

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

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

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--color-text-gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== CARDS (КАРТОЧКИ) ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

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

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-image {
    width: 100%;
    height: auto;
    min-height: 220px;
    object-fit: contain;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #E8ECF1 0%, #F9FAFB 100%);
    padding: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.card-image:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.card h3 {
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.card p {
    color: var(--color-text-gray);
    margin-bottom: 1.5rem;
}

/* ===== FEATURES (ПРЕИМУЩЕСТВА) ===== */
.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--color-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-white);
}

.feature-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

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

/* ===== BONUSES (БОНУСЫ) ===== */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.bonus-card {
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
}

.bonus-card:hover {
    transform: scale(1.05);
    border-color: var(--color-accent);
    box-shadow: var(--shadow-xl);
}

.bonus-image {
    width: 100%;
    height: auto;
    min-height: 240px;
    object-fit: contain;
    background: linear-gradient(135deg, #013974 0%, #08519E 100%);
    padding: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.bonus-image:hover {
    transform: scale(1.05);
}

.bonus-content {
    padding: 2rem;
}

.bonus-label {
    display: inline-block;
    background: var(--gradient-accent);
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    margin-bottom: 1rem;
}

.bonus-content h3 {
    margin-bottom: 1rem;
}

.bonus-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-accent);
    margin: 1rem 0;
}

/* ===== STEPS (ШАГИ) ===== */
.steps-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .steps-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .steps-list {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }
}

.step-item {
    text-align: center;
    padding: 2rem;
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
    min-width: 0; /* Предотвращает переполнение */
}

@media (max-width: 768px) {
    .step-item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .step-item {
        padding: 1.25rem;
    }
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--color-white);
    font-size: 2rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
}

.step-item h3 {
    margin-bottom: 1rem;
}

.step-item p {
    color: var(--color-text-gray);
}

/* ===== Современная верстка шагов регистрации ===== */
.steps-list-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.step-card {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFB800 0%, #FF6B00 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 107, 0, 0.15);
    border-color: rgba(255, 184, 0, 0.3);
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFB800 0%, #FF6B00 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
    transition: all 0.4s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.4);
}

.step-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.15) 0%, rgba(255, 107, 0, 0.15) 100%);
    color: #FF6B00;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.step-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 0;
}

.promo-highlight {
    display: inline-block;
    background: linear-gradient(135deg, #FFB800 0%, #FF6B00 100%);
    color: #ffffff;
    padding: 0.2rem 0.8rem;
    border-radius: 6px;
    font-weight: 800;
    font-size: 1.05em;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.amount-highlight {
    color: #FF6B00;
    font-weight: 800;
    font-size: 1.1em;
}

.step-arrow {
    position: absolute;
    top: 50%;
    right: -1.5rem;
    transform: translateY(-50%);
    font-size: 2.5rem;
    color: rgba(255, 184, 0, 0.3);
    font-weight: 300;
    transition: all 0.3s ease;
    z-index: 1;
}

.step-card:hover .step-arrow {
    right: -2rem;
    color: rgba(255, 107, 0, 0.6);
}

.step-checkmark {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
    animation: pulse-checkmark 2s infinite;
}

@keyframes pulse-checkmark {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 30px rgba(76, 175, 80, 0.5);
    }
}

/* Адаптивность для современных шагов */
@media (max-width: 768px) {
    .steps-list-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-card {
        padding: 2rem 1.5rem;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
    }
    
    .step-arrow {
        display: none; /* Скрываем стрелки на мобильных */
    }
    
    .step-checkmark {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .steps-list-modern {
        gap: 1rem;
    }
    
    .step-card {
        padding: 1.5rem 1.25rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .step-card h3 {
        font-size: 1.25rem;
    }
    
    .step-card p {
        font-size: 0.95rem;
    }
}

/* ===== Таймлайн инструкций (Timeline Design) ===== */
.timeline-steps {
    position: relative;
    max-width: 900px;
    margin: 3rem auto;
    padding-left: 80px;
}

.timeline-steps::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #FFB800 0%, #FF6B00 50%, #4CAF50 100%);
    border-radius: 2px;
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }
.timeline-item:nth-child(6) { animation-delay: 0.6s; }
.timeline-item:nth-child(7) { animation-delay: 0.7s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-marker {
    position: absolute;
    left: -80px;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.timeline-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #FFB800 0%, #FF6B00 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.3);
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, #FFB800 0%, #FF6B00 100%);
    border-radius: 18px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.timeline-item:hover .timeline-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 32px rgba(255, 107, 0, 0.5);
}

.timeline-item:hover .timeline-icon::after {
    opacity: 0.3;
    animation: pulse-ring 1.5s ease-in-out infinite;
}

@keyframes pulse-ring {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.15);
        opacity: 0;
    }
}

.timeline-icon-final {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.4);
}

.timeline-icon-final::after {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
}

.timeline-number {
    font-size: 0.75rem;
    font-weight: 800;
    color: #FF6B00;
    background: rgba(255, 184, 0, 0.15);
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    letter-spacing: 0.5px;
}

.timeline-content {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 28px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 12px 10px 0;
    border-color: transparent #ffffff transparent transparent;
    transition: border-color 0.3s ease;
}

.timeline-item:hover .timeline-content {
    border-color: rgba(255, 184, 0, 0.3);
    box-shadow: 0 8px 32px rgba(255, 107, 0, 0.12);
    transform: translateX(4px);
}

.timeline-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.timeline-content p {
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.timeline-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.1) 0%, rgba(255, 107, 0, 0.1) 100%);
    color: #FF6B00;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 184, 0, 0.3);
}

.timeline-success {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
    margin-top: 1rem;
    animation: slideInRight 0.6s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Выделение текста */
.site-highlight {
    color: #FF6B00;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(255, 107, 0, 0.3);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.file-highlight {
    display: inline-block;
    background: rgba(255, 184, 0, 0.15);
    color: #FF6B00;
    padding: 0.15rem 0.6rem;
    border-radius: 6px;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    font-size: 0.95em;
    border: 1px solid rgba(255, 184, 0, 0.3);
}

.button-highlight {
    display: inline-block;
    background: linear-gradient(135deg, #FFB800 0%, #FF6B00 100%);
    color: #ffffff;
    padding: 0.2rem 0.8rem;
    border-radius: 6px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255, 107, 0, 0.25);
}

.size-badge, .time-badge {
    display: inline-block;
    background: rgba(33, 150, 243, 0.15);
    color: #2196F3;
    padding: 0.2rem 0.7rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9em;
    border: 1px solid rgba(33, 150, 243, 0.3);
}

.path-step {
    display: inline-block;
    background: rgba(156, 39, 176, 0.1);
    color: #9C27B0;
    padding: 0.15rem 0.6rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95em;
    border: 1px solid rgba(156, 39, 176, 0.2);
}

.app-name {
    display: inline-block;
    background: rgba(33, 150, 243, 0.1);
    color: #2196F3;
    padding: 0.15rem 0.6rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95em;
}

.promo-highlight {
    display: inline-block;
    background: linear-gradient(135deg, #FFB800 0%, #FF6B00 100%);
    color: #ffffff;
    padding: 0.3rem 1rem;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.1em;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.bonus-highlight {
    color: #4CAF50;
    font-weight: 800;
    font-size: 1.15em;
    text-shadow: 0 2px 4px rgba(76, 175, 80, 0.2);
}

.timeline-item-final .timeline-content {
    border: 2px solid rgba(76, 175, 80, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f1f8f4 100%);
}

code {
    background: rgba(33, 33, 33, 0.05);
    color: #212121;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    border: 1px solid rgba(33, 33, 33, 0.1);
}

/* Адаптивность таймлайна */
@media (max-width: 768px) {
    .timeline-steps {
        padding-left: 60px;
    }
    
    .timeline-steps::before {
        left: 24px;
    }
    
    .timeline-marker {
        left: -60px;
    }
    
    .timeline-icon {
        width: 52px;
        height: 52px;
    }
    
    .timeline-icon svg {
        width: 26px;
        height: 26px;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .timeline-content h3 {
        font-size: 1.2rem;
    }
    
    .timeline-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .timeline-steps {
        padding-left: 0;
        padding-top: 1rem;
    }
    
    .timeline-steps::before {
        display: none;
    }
    
    .timeline-marker {
        position: relative;
        left: 0;
        flex-direction: row;
        justify-content: flex-start;
        margin-bottom: 1rem;
    }
    
    .timeline-icon {
        width: 48px;
        height: 48px;
    }
    
    .timeline-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .timeline-content::before {
        display: none;
    }
    
    .timeline-content {
        padding: 1.25rem;
    }
    
    .timeline-content h3 {
        font-size: 1.1rem;
    }
    
    .timeline-tag {
        font-size: 0.8rem;
        padding: 0.3rem 0.7rem;
    }
}

/* ===== iOS Timeline Стили ===== */
.timeline-steps-ios::before {
    background: linear-gradient(180deg, #007AFF 0%, #5AC8FA 50%, #4CAF50 100%);
}

.timeline-icon-ios {
    background: linear-gradient(135deg, #007AFF 0%, #0051D5 100%);
    box-shadow: 0 8px 24px rgba(0, 122, 255, 0.3);
}

.timeline-item:hover .timeline-icon-ios {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 32px rgba(0, 122, 255, 0.5);
}

.timeline-icon-ios::after {
    background: linear-gradient(135deg, #007AFF 0%, #0051D5 100%);
}

.timeline-icon-ios-final {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.3);
}

.timeline-item:hover .timeline-icon-ios-final {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(76, 175, 80, 0.5);
}

.timeline-number-ios {
    background: rgba(0, 122, 255, 0.15);
    color: #007AFF;
    border: 2px solid rgba(0, 122, 255, 0.3);
}

.timeline-tag-ios {
    background: rgba(0, 122, 255, 0.1);
    color: #007AFF;
    padding: 0.4rem 1rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9em;
    margin-top: 0.75rem;
    display: inline-block;
    border: 1px solid rgba(0, 122, 255, 0.2);
}

.timeline-success-ios {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1em;
    margin-top: 1rem;
    display: inline-block;
    box-shadow: 0 4px 16px rgba(76, 175, 80, 0.3);
    animation: pulse-success 2s ease-in-out infinite;
}

@keyframes pulse-success {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 16px rgba(76, 175, 80, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    }
}

.app-name-ios {
    display: inline-block;
    background: rgba(0, 122, 255, 0.1);
    color: #007AFF;
    padding: 0.2rem 0.7rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95em;
    border: 1px solid rgba(0, 122, 255, 0.2);
}

.file-highlight-ios {
    display: inline-block;
    background: rgba(90, 200, 250, 0.15);
    color: #0051D5;
    padding: 0.15rem 0.6rem;
    border-radius: 6px;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    font-size: 0.95em;
    border: 1px solid rgba(90, 200, 250, 0.3);
}

.path-step-ios {
    display: inline-block;
    background: rgba(0, 122, 255, 0.1);
    color: #007AFF;
    padding: 0.15rem 0.6rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95em;
    border: 1px solid rgba(0, 122, 255, 0.2);
    margin: 0 2px;
}

.code-badge {
    display: inline-block;
    background: rgba(255, 149, 0, 0.15);
    color: #FF9500;
    padding: 0.2rem 0.7rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95em;
    border: 1px solid rgba(255, 149, 0, 0.3);
    font-family: 'Courier New', monospace;
}

.warning-badge {
    display: inline-block;
    background: rgba(255, 59, 48, 0.1);
    color: #FF3B30;
    padding: 0.2rem 0.7rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9em;
    border: 1px solid rgba(255, 59, 48, 0.2);
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--border-radius);
    padding: 1.5rem 2rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--color-accent);
    cursor: pointer;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.faq-answer {
    color: var(--color-text-gray);
    margin-top: 1rem;
    line-height: 1.8;
}

/* ===== STATS (СТАТИСТИКА) ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--color-text-gray);
    font-size: 1rem;
}

/* ===== REVIEWS (ОТЗЫВЫ) ===== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--color-success);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
}

.review-author h4 {
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.review-rating {
    color: #FFA500;
    font-size: 1.2rem;
}

.review-text {
    color: var(--color-text-gray);
    line-height: 1.8;
    font-style: italic;
}

/* ===== FOOTER (ПОДВАЛ) ===== */
.footer {
    background: var(--color-bg-dark);
    color: rgba(255, 255, 255, 0.9);
    padding: 4rem 1.5rem 2rem;
}

.footer-container {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

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

.footer-bottom {
    max-width: 1320px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Games List in Footer */
.games-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.games-list li {
    margin-bottom: 0;
}

.game-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.game-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--color-accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-link i {
    font-size: 1.2rem;
    color: var(--color-accent);
    width: 24px;
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.game-link span {
    font-weight: 500;
    font-size: 0.95rem;
}

.game-link:hover {
    background: rgba(250, 92, 0, 0.15);
    color: var(--color-white);
    transform: translateX(5px);
    border-color: rgba(250, 92, 0, 0.3);
}

.game-link:hover::before {
    opacity: 1;
}

.game-link:hover i {
    transform: scale(1.15) rotate(5deg);
    color: var(--color-white);
}

/* Game Icons Specific Colors */
.game-link:nth-child(1) i { color: #FFD700; } /* Aviator - золотой */
.game-link:nth-child(2) i { color: #FF6B6B; } /* JetX - красный */
.game-link:nth-child(3) i { color: #4ECDC4; } /* Spaceman - бирюзовый */
.game-link:nth-child(4) i { color: #9B59B6; } /* Слоты - фиолетовый */
.game-link:nth-child(5) i { color: #3498DB; } /* Live Casino - синий */

/* ===== MOBILE RESPONSIVE (<768px) ===== */
@media (max-width: 768px) {
    /* Typography */
    html {
        font-size: 14px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    /* Header */
    .header-container {
        padding: 1rem;
        gap: 1rem;
    }
    
    .logo img {
        height: 40px;
        width: auto;
        max-width: 150px;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, #FA5C00 0%, #013974 100%);
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 1.5rem 0;
    }
    
    .nav-list li {
        width: 100%;
        opacity: 0;
        transform: translateX(-20px);
    }
    
    .nav.active .nav-list li {
        animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
    
    .nav.active .nav-list li:nth-child(1) { animation-delay: 0.05s; }
    .nav.active .nav-list li:nth-child(2) { animation-delay: 0.1s; }
    .nav.active .nav-list li:nth-child(3) { animation-delay: 0.15s; }
    .nav.active .nav-list li:nth-child(4) { animation-delay: 0.2s; }
    .nav.active .nav-list li:nth-child(5) { animation-delay: 0.25s; }
    
    @keyframes slideIn {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .nav-link {
        width: 100%;
        padding: 1.25rem 1.5rem 1.25rem 2rem;
        border-bottom: 1px solid rgba(1, 57, 116, 0.06);
        border-radius: 0;
        font-size: 1.05rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        color: var(--color-text-dark);
    }
    
    .nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 0;
        background: var(--color-accent);
        transition: height 0.3s ease;
    }
    
    .nav-link::after {
        content: '›';
        font-size: 1.8rem;
        color: var(--color-accent);
        opacity: 0;
        transform: translateX(-10px);
        transition: all 0.3s ease;
        font-weight: 300;
    }
    
    .nav-link:hover::before,
    .nav-link.active::before {
        height: 60%;
    }
    
    .nav-link:hover::after,
    .nav-link.active::after {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-link:hover {
        background: linear-gradient(90deg, rgba(250, 92, 0, 0.04) 0%, transparent 100%);
        padding-left: 2.25rem;
        color: var(--color-accent);
    }
    
    .nav-link.active {
        background: linear-gradient(90deg, rgba(250, 92, 0, 0.08) 0%, rgba(250, 92, 0, 0.02) 100%);
        color: var(--color-accent);
        font-weight: 700;
    }
    
    .mobile-menu-toggle {
        display: flex;
        position: relative;
        z-index: 1001;
        transition: transform 0.3s ease;
    }
    
    .mobile-menu-toggle:active {
        transform: scale(0.9);
    }
    
    .mobile-menu-toggle span {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
        background: var(--color-accent);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
        background: var(--color-accent);
    }
    
    /* Hero */
    .hero {
        min-height: 500px;
        padding: 3rem 1rem;
    }
    
    .hero-secondary {
        padding: 3rem 1rem 2rem;
    }
    
    .hero-secondary .hero-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .hero-secondary .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-secondary .hero-actions,
    .hero-secondary .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .hero-secondary .hero-actions .btn,
    .hero-secondary .hero-buttons .btn {
        width: 90%;
        max-width: 350px;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-content {
        order: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-image {
        order: 1;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-buttons {
        order: -1;
        justify-content: center;
        align-items: center;
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        margin-top: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons .btn {
        width: 90%;
        max-width: 400px;
        text-align: center;
    }
    
    /* Cards */
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    /* Step Items */
    .step-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    /* Bonus Grid */
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    /* Office Cards */
    .offices-grid {
        grid-template-columns: 1fr;
    }
    
    .office-card {
        padding: 1.5rem;
    }
    
    /* Contact Methods */
    .contact-methods-grid {
        grid-template-columns: 1fr;
    }
    
    /* Support Topics */
    .support-topics-grid {
        grid-template-columns: 1fr;
    }
    
    /* Stats Grid */
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    /* Review Card */
    .review-card {
        padding: 1.5rem;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .review-pros-cons {
        grid-template-columns: 1fr;
    }
    
    /* Rating Overview (mobile) */
    .rating-overview {
        flex-direction: column;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .rating-big {
        text-align: center;
    }
    
    .rating-number {
        font-size: 3rem;
    }
    
    .rating-distribution {
        width: 100%;
    }
    
    /* Contact Stats */
    .contact-stats,
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .contact-stat .stat-number,
    .stat-item .stat-number {
        font-size: 2rem;
    }
    
    /* Promo Box */
    .promo-box {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .promo-code {
        font-size: 1.5rem;
        padding: 0.75rem 1.5rem;
    }
    
    /* Payment Methods */
    .payment-methods {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Response Times */
    .response-item {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .response-channel {
        justify-content: center;
    }
    
    .response-time {
        text-align: center;
        font-size: 1.1rem;
    }
    
    /* Satisfaction Stats */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-box {
        padding: 1.5rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    /* Sections */
    .section {
        padding: 3rem 1rem;
    }
    
    /* Reviews Page */
    .rating-overview {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }
    
    .rating-big {
        border-bottom: 1px solid rgba(255,255,255,0.2);
        padding-bottom: 2rem;
    }
    
    /* Contact Stats */
    .contact-stats,
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .contact-stat .stat-number,
    .stat-item .stat-number {
        font-size: 2rem;
    }
    
    /* Cards */
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .card {
        padding: 1.5rem;
        max-width: 100%;
    }
    
    .card-image {
        min-height: 200px;
        padding: 0.5rem;
    }
    
    /* Features */
    .features-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    /* Bonuses */
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* Reviews */
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer {
        padding: 3rem 1rem 2rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Games list mobile optimization */
    .games-list {
        gap: 0.4rem;
    }
    
    .game-link {
        padding: 0.65rem 0.875rem;
        font-size: 0.95rem;
    }
    
    .game-link i {
        font-size: 1.1rem;
        width: 22px;
    }
    
    .game-link span {
        font-size: 0.9rem;
    }
    
    .game-link:hover {
        transform: translateX(3px);
    }
    
    /* Promo */
    .promo-code {
        font-size: 1.5rem;
        padding: 0.75rem 1.5rem;
    }
    
    /* Buttons */
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* ===== TABLET RESPONSIVE (769px - 1024px) ===== */
@media (min-width: 769px) and (max-width: 1024px) {
    .container,
    .header-container,
    .hero-container,
    .footer-container {
        max-width: 95%;
    }
    
    .cards-grid,
    .bonus-grid,
    .features-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

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

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

.bg-gradient-primary {
    background: var(--gradient-primary);
}

.bg-gradient-accent {
    background: var(--gradient-accent);
}

.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; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent);
}

/* ===== ACCESSIBILITY ===== */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Focus styles */
*:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 2px;
    border-radius: var(--border-radius-sm);
}

/* ===== IMAGE LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: zoomIn 0.3s ease;
}

.lightbox-content img {
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: var(--color-white);
    color: var(--color-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.lightbox-close:hover {
    background: var(--color-accent);
    color: var(--color-white);
    transform: rotate(90deg);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { 
        opacity: 0;
        transform: scale(0.8);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

/* Image click hint */
.image-clickable {
    position: relative;
}

.image-clickable::before {
    content: '🔍 Нажмите для увеличения';
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-primary);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.image-clickable:hover::before {
    opacity: 1;
}

@media (max-width: 768px) {
    .image-clickable::before {
        content: '🔍';
        width: 35px;
        height: 35px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 1.2rem;
        opacity: 0.8;
    }
}

@media (max-width: 768px) {
    .lightbox {
        padding: 1rem;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .header,
    .footer,
    .btn,
    .nav {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* ===== ADDITIONAL MOBILE STYLES ===== */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* FAQ answer hidden by default with smooth animation */
.faq-answer {
    display: block;
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    opacity: 0;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease;
    color: var(--color-text-gray);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    opacity: 1;
    padding-top: 1rem;
}

.faq-question {
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '−';
    transform: rotate(180deg);
}

/* Hero Secondary (для всех внутренних страниц) */
.hero-secondary {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    padding: 6rem 0 4rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.03)"/></svg>');
    opacity: 0.5;
}

.hero-secondary .container {
    position: relative;
    z-index: 1;
}

.hero-secondary .hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-secondary .hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--white);
}

.hero-secondary .hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.hero-secondary .hero-actions,
.hero-secondary .hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-secondary .btn {
    min-width: 200px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Contact Stats */
.contact-stats,
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-stat,
.stat-item {
    text-align: center;
}

.contact-stat .stat-number,
.stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contact-stat .stat-label,
.stat-item .stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    color: var(--white);
}

/* Registration Page Styles (убрано дублирование) */

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.95;
}

.breadcrumbs a {
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.3s;
    font-weight: 500;
}

.breadcrumbs a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.breadcrumbs span {
    color: #FFFFFF;
    font-weight: 600;
}

.breadcrumbs .separator {
    opacity: 0.6;
    color: #FFFFFF;
}

.promo-highlight {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.1em;
}

.promo-inline {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-weight: 700;
}

/* Steps Container */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 2rem;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-medium);
    transition: transform 0.3s, box-shadow 0.3s;
}

.step-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--box-shadow-large);
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #FF7A00 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(250, 92, 0, 0.3);
}

.step-content {
    flex: 1;
}

.step-title {
    color: var(--primary-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-text {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.step-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.step-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-list li i {
    color: var(--success-color);
    margin-right: 0.5rem;
}

.step-highlight {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    border-left: 4px solid var(--secondary-color);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.step-highlight i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

.step-warning {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    border-left: 4px solid #FF9800;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.step-warning i {
    color: #FF9800;
    margin-right: 0.5rem;
}

.step-info {
    background: linear-gradient(135deg, #F3E5F5 0%, #E1BEE7 100%);
    border-left: 4px solid #9C27B0;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.step-info i {
    color: #9C27B0;
    margin-right: 0.5rem;
}

.step-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1rem 0;
}

.option-badge {
    background: var(--background-gray);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.option-badge i {
    color: var(--accent-color);
}

.promo-box {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    padding: 2rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin: 1.5rem 0;
    box-shadow: var(--box-shadow-large);
}

.promo-code {
    background: var(--white);
    color: var(--accent-color);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 2px;
    font-family: 'Courier New', monospace;
}

.copy-btn {
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.copy-btn:hover {
    background: #FF7A00;
    transform: translateY(-2px);
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.payment-item {
    background: var(--background-gray);
    padding: 1rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    transition: var(--transition);
}

.payment-item:hover {
    background: var(--white);
    box-shadow: var(--box-shadow-medium);
    transform: translateY(-2px);
}

.payment-item i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.step-image-container {
    margin: 1.5rem 0;
    text-align: center;
}

.step-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-medium);
}

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

.bonus-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow-medium);
    transition: transform 0.3s, box-shadow 0.3s;
}

.bonus-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-large);
}

.bonus-image-container {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.bonus-content {
    padding: 2rem;
}

.bonus-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.bonus-title {
    color: var(--primary-dark);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.bonus-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.bonus-features li {
    padding: 0.75rem 0;
    color: var(--text-primary);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    border-bottom: 1px solid var(--background-gray);
}

.bonus-features li:last-child {
    border-bottom: none;
}

.bonus-features i {
    color: var(--success-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.bonus-example {
    background: var(--background-gray);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-color);
    margin-top: 1.5rem;
}

.info-box {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 3rem;
    border-left: 4px solid var(--success-color);
}

.info-title {
    color: var(--primary-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-title i {
    color: var(--success-color);
}

.info-text {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.info-text:last-child {
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--white);
    text-align: center;
    padding: 4rem 0;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Reviews Page Styles */
.rating-overview {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

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

.rating-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.rating-stars i {
    color: #FFD700;
    font-size: 1.5rem;
}

.rating-count {
    color: var(--white);
    opacity: 0.9;
    font-size: 0.95rem;
}

.rating-distribution {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rating-label {
    color: var(--white);
    min-width: 80px;
    font-size: 0.9rem;
}

.rating-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    border-radius: 4px;
    transition: width 0.3s;
}

.rating-percent {
    color: var(--white);
    min-width: 45px;
    text-align: right;
    font-weight: 600;
}

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

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-medium);
    display: flex;
    gap: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.stat-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #FF7A00 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.stat-info {
    flex: 1;
}

.stat-title {
    color: var(--primary-dark);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.stat-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.stat-score {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.stat-stars {
    display: flex;
    gap: 0.15rem;
}

.stat-stars i {
    color: #FFD700;
    font-size: 1rem;
}

.stat-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Reviews Container */
.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-medium);
    transition: box-shadow 0.3s;
}

.review-card:hover {
    box-shadow: var(--box-shadow-large);
}

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

.review-author {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1.1rem;
}

.author-location {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.author-location i {
    color: var(--accent-color);
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review-rating i {
    color: #FFD700;
    font-size: 1rem;
}

.review-rating .rating-number {
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1.25rem;
    margin-left: 0.5rem;
}

.review-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.review-text {
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.review-text p {
    margin: 0;
}

.review-pros-cons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--background-gray);
    border-radius: var(--border-radius);
}

.review-pros strong,
.review-cons strong {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.review-pros i {
    color: var(--success-color);
}

.review-cons i {
    color: #F44336;
}

.review-pros ul,
.review-cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.review-pros li,
.review-cons li {
    padding: 0.35rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.review-helpful {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--background-gray);
}

.review-helpful span {
    color: var(--text-secondary);
    font-weight: 600;
}

.helpful-btn {
    background: var(--background-gray);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: var(--text-primary);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.helpful-btn:hover {
    background: var(--white);
    box-shadow: var(--box-shadow-small);
}

.helpful-btn i {
    font-size: 0.85rem;
}

/* FAQ Search */
.faq-search {
    margin-top: 2rem;
}

.search-box {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.search-box i {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    opacity: 0.7;
    font-size: 1.2rem;
}

.search-box input {
    width: 100%;
    padding: 1rem 1.5rem 1rem 3.5rem;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.search-box input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* FAQ Categories */
.faq-categories {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

.faq-category {
    background: var(--white);
    border: 2px solid var(--background-gray);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.faq-category:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-small);
}

.faq-category.active {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--white);
    border-color: var(--primary-color);
}

.faq-category i {
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 3rem;
}

.faq-section-title {
    color: var(--primary-dark);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-section-title i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

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

.contact-method-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-medium);
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-method-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-large);
}

.contact-method-card.featured {
    border: 2px solid var(--accent-color);
}

.method-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #FF7A00 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.method-title {
    color: var(--primary-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.method-badge {
    display: inline-block;
    background: var(--success-color);
    color: var(--white);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.method-contact {
    background: var(--background-gray);
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-family: monospace;
    font-size: 1.1rem;
}

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

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

.method-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.method-features i {
    color: var(--success-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.method-action {
    background: var(--background-gray);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-top: 1.5rem;
}

.method-action strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.method-social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.social-btn {
    background: var(--background-gray);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    font-size: 0.9rem;
}

.social-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Office Cards */
.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.office-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-medium);
}

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

.office-title {
    color: var(--primary-dark);
    font-size: 1.3rem;
    font-weight: 700;
}

.office-badge {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.office-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.office-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.office-detail i {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.office-detail strong {
    display: block;
    color: var(--primary-dark);
    margin-bottom: 0.35rem;
}

.office-detail p {
    margin: 0.25rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.office-services {
    margin-top: 1rem;
}

.office-services strong {
    display: block;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.office-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.office-services li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding-left: 1.5rem;
    position: relative;
}

.office-services li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.office-note {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary-color);
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.office-note i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.office-note strong {
    display: block;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

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

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

.topic-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-medium);
    transition: transform 0.3s;
}

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

.topic-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.topic-title {
    color: var(--primary-dark);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.topic-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.topic-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding-left: 1.5rem;
    position: relative;
}

.topic-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Response Times */
.response-times {
    max-width: 800px;
    margin: 3rem auto;
}

.response-item {
    display: grid;
    grid-template-columns: 180px 1fr 150px;
    gap: 1.5rem;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--background-gray);
}

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

.response-channel {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
}

.response-channel i {
    color: var(--accent-color);
    font-size: 1.3rem;
}

.response-bar {
    height: 12px;
    background: var(--background-gray);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.response-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--success-color) 0%, #4CAF50 100%);
    border-radius: 6px;
    transition: width 0.5s ease;
}

.response-time {
    font-weight: 600;
    color: var(--primary-dark);
    text-align: right;
}

/* Satisfaction Stats */
.satisfaction-stats {
    margin-top: 4rem;
    padding: 2rem;
    background: var(--background-gray);
    border-radius: var(--border-radius);
}

.stats-title {
    color: var(--primary-dark);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

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

.stat-box {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow-small);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.text-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.text-link:hover {
    border-bottom-color: var(--secondary-color);
}

/* Hero stats on mobile */
@media (max-width: 768px) {
    .hero-content {
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
}

/* Logo responsive */
@media (max-width: 480px) {
    .logo img {
        height: 38px;
        width: auto;
    }
}

/* Bonus card mobile optimization */
@media (max-width: 768px) {
    .bonus-amount {
        font-size: 2rem;
    }
    
    .bonus-content {
        padding: 1.5rem;
    }
}

/* Button sizing */
.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* Icon spacing in buttons */
.btn i {
    margin-right: 0.5rem;
}

/* Content block for text + image */
.content-block {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 768px) {
    .content-block {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-image {
        order: -1;
    }
}

.content-text ul {
    list-style: none;
    padding-left: 0;
}

.content-text ul li {
    margin-bottom: 0.8rem;
    padding-left: 0;
}

/* Image containers with proper display */
.image-full-width {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: var(--transition);
}

.image-full-width:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.image-contained {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    display: block;
    border-radius: var(--border-radius);
    background: linear-gradient(135deg, #F9FAFB 0%, #E8ECF1 100%);
    padding: 2rem;
}

.image-with-overlay {
    position: relative;
    width: 100%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: var(--transition);
}

.image-with-overlay:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.image-with-overlay img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.image-with-overlay:hover img {
    transform: scale(1.08);
}

.image-with-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(1, 57, 116, 0.8) 0%, transparent 100%);
    pointer-events: none;
    transition: var(--transition);
}

.image-with-overlay:hover::after {
    background: linear-gradient(to top, rgba(1, 57, 116, 0.6) 0%, transparent 100%);
}

/* Promo block responsive */
@media (max-width: 480px) {
    .promo-block {
        padding: 1rem;
    }
    
    .promo-code {
        font-size: 1.5rem;
        padding: 0.75rem 1.5rem;
    }
    
    .promo-block h3 {
        font-size: 1.2rem;
    }
    
    .promo-block p {
        font-size: 0.95rem;
    }
}
