/* ===== БАЗОВЫЕ СТИЛИ ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6b35;
    --primary-dark: #e55a2b;
    --secondary-color: #1e3c72;
    --secondary-dark: #152a5c;
    --accent-color: #ffd700;
    --success-color: #4CAF50;
    --warning-color: #ff9800;
    --danger-color: #f44336;
    
    --text-primary: #333;
    --text-secondary: #666;
    --text-light: #999;
    --text-white: #fff;
    
    --bg-primary: #fff;
    --bg-secondary: #f8f9fa;
    --bg-dark: #1a1a1a;
    --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    
    --border-color: #e0e0e0;
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 5px 20px rgba(0,0,0,0.15);
    --shadow-heavy: 0 10px 30px rgba(0,0,0,0.2);
    
    --border-radius: 12px;
    --border-radius-large: 20px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== КНОПКИ ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* ===== ШАПКА ===== */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

/* Top Navigation */
.top-nav {
    background: rgba(15, 23, 42, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.top-nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-selectors {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-nav-info {
    display: flex;
    align-items: center;
    gap: 2rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

/* Language & City Selectors */
.language-selector, .city-selector {
    position: relative;
}

.language-btn, .city-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.language-btn:hover, .city-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.flag-icon, .location-icon {
    flex-shrink: 0;
}

.arrow-icon {
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.language-btn.active .arrow-icon,
.city-btn.active .arrow-icon {
    transform: rotate(180deg);
}

.language-dropdown, .city-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    min-width: 160px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    margin-top: 0.5rem;
}

.language-dropdown.show, .city-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option, .city-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    color: white;
    text-decoration: none;
    transition: background-color 0.2s ease;
    font-size: 0.875rem;
}

.language-option:hover, .city-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.language-option:first-child, .city-option:first-child {
    border-radius: 8px 8px 0 0;
}

.language-option:last-child, .city-option:last-child {
    border-radius: 0 0 8px 8px;
}

/* Main Navigation */
.main-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
}

.logo-text {
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    gap: 15px;
}

/* ===== ГЕРОЙ СЕКЦИЯ ===== */
/* ===== КАЗИНОШНАЯ HERO СЕКЦИЯ ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    opacity: 0.9;
}

/* Анимированные частицы */
.casino-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { left: 70%; animation-delay: 2s; }
.particle:nth-child(4) { left: 80%; animation-delay: 3s; }
.particle:nth-child(5) { left: 90%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10%, 90% { opacity: 1; }
    50% { transform: translateY(-10vh) rotate(180deg); }
}

/* Казиношные символы */
.casino-symbols {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.casino-symbols .symbol {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: symbolFloat 8s ease-in-out infinite;
}

.casino-symbols .symbol:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.casino-symbols .symbol:nth-child(2) { top: 20%; right: 10%; animation-delay: 1s; }
.casino-symbols .symbol:nth-child(3) { top: 60%; left: 8%; animation-delay: 2s; }
.casino-symbols .symbol:nth-child(4) { top: 70%; right: 15%; animation-delay: 3s; }
.casino-symbols .symbol:nth-child(5) { top: 30%; left: 15%; animation-delay: 4s; }
.casino-symbols .symbol:nth-child(6) { top: 80%; left: 20%; animation-delay: 5s; }
.casino-symbols .symbol:nth-child(7) { top: 40%; right: 5%; animation-delay: 6s; }
.casino-symbols .symbol:nth-child(8) { top: 90%; right: 25%; animation-delay: 7s; }

@keyframes symbolFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 100px 0 50px;
}

/* Бейдж */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a2e;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

.badge-icon {
    font-size: 1.1rem;
}

.hero-title {
    margin-bottom: 20px;
}

.title-highlight {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: textGlow 3s ease-in-out infinite;
}

.title-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-top: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@keyframes textGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Бонус-баннер */
.bonus-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 2px solid #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    animation: bonusPulse 2s ease-in-out infinite;
}

@keyframes bonusPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.6); }
}

.bonus-amount {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
}

.amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.bonus-text {
    flex: 1;
}

.bonus-title {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
}

.bonus-subtitle {
    font-size: 0.9rem;
    color: #ffd700;
    font-weight: 600;
}

.bonus-timer {
    text-align: center;
}

.timer-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
}

.timer {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffd700;
    font-family: 'Courier New', monospace;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.4);
    padding: 12px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    color: white;
    font-weight: 600;
}

.feature-item:hover {
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 215, 0, 0.6);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 1.2rem;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

/* Кнопки */
.btn-jackpot {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border: 2px solid #ffd700;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 30px;
    position: relative;
    overflow: hidden;
}

.btn-jackpot::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.btn-demo {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 30px;
}

.btn-icon {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.btn-text {
    font-weight: 700;
    font-size: 1rem;
}

.btn-subtext {
    font-size: 0.8rem;
    opacity: 0.8;
}

.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Статистика */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.hero-stats .stat-item {
    text-align: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.hero-stats .stat-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    color: white;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Визуальная часть */
.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

/* Слот-машина */
.slot-machine {
    background: linear-gradient(145deg, #2c2c54, #1a1a2e);
    border-radius: 20px;
    padding: 20px;
    border: 3px solid #ffd700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.slot-screen {
    background: #000;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
}

.slot-reels {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.reel {
    width: 80px;
    height: 120px;
    background: #1a1a2e;
    border: 2px solid #ffd700;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.reel .symbol {
    font-size: 2rem;
    padding: 10px;
    animation: reelSpin 3s ease-in-out infinite;
}

@keyframes reelSpin {
    0%, 90%, 100% { transform: translateY(0); }
    30%, 60% { transform: translateY(-20px); }
}

.jackpot-display {
    text-align: center;
    margin-bottom: 15px;
}

.jackpot-label {
    color: #ffd700;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.jackpot-amount {
    color: white;
    font-size: 1.5rem;
    font-weight: 900;
    font-family: 'Courier New', monospace;
    animation: jackpotGlow 2s ease-in-out infinite;
}

@keyframes jackpotGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
    50% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.8); }
}

.slot-controls {
    text-align: center;
}

.spin-btn {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    border: 2px solid #ffd700;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.spin-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* Превью игр */
.hero-games-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 400px;
}

.game-preview-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: slideInUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
    position: relative;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.game-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.game-image {
    position: relative;
    overflow: hidden;
    height: 120px;
}

.game-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.slot-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    animation: pulse 2s ease-in-out infinite;
}

.slot-symbols {
    display: flex;
    gap: 5px;
}

.slot-symbols span {
    font-size: 1.2rem;
    animation: reelSpin 2s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.2s);
}

.slot-symbols span:nth-child(1) { --i: 0; }
.slot-symbols span:nth-child(2) { --i: 1; }
.slot-symbols span:nth-child(3) { --i: 2; }

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-preview-card:hover .game-overlay {
    opacity: 1;
}

.play-btn {
    background: #ffd700;
    color: #1a1a2e;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.1);
}

.game-info {
    padding: 15px;
}

.game-info h4 {
    color: white;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

.game-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
}

.rating {
    color: #ffd700;
}

.rtp {
    color: rgba(255, 255, 255, 0.7);
}

.jackpot-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    animation: pulse 2s ease-in-out infinite;
}

.hero-language-info {
    margin-top: 15px;
    text-align: center;
}

.language-indicator {
    color: var(--text-light);
    font-size: 0.85rem;
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ===== СЕКЦИИ ===== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

/* ===== СЕКЦИЯ СТАТЬИ ===== */
.article-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.article-text h1,
.article-text h2,
.article-text h3,
.article-text h4,
.article-text h5,
.article-text h6 {
    color: var(--secondary-color);
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.article-text h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.article-text h2 {
    font-size: 2rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.article-text h3 {
    font-size: 1.5rem;
}

.article-text p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.article-text ul,
.article-text ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-text li {
    margin-bottom: 0.5rem;
}

.article-text blockquote {
    background: var(--bg-secondary);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    font-style: italic;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.article-text img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    box-shadow: var(--shadow-light);
}

.article-text table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--bg-primary);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.article-text th,
.article-text td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.article-text th {
    background: var(--bg-secondary);
    font-weight: 600;
    color: var(--secondary-color);
}

.article-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.article-text a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.article-text code {
    background: var(--bg-secondary);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.article-text pre {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    overflow-x: auto;
    margin: 2rem 0;
}

.article-text pre code {
    background: none;
    padding: 0;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* ===== СЕКЦИЯ ИГР ===== */
.games-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.games-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 20px;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.game-card {
    background: var(--bg-primary);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.game-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: var(--transition);
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.game-info {
    padding: 20px;
}

.game-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.game-provider {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.game-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
}

.rtp {
    color: var(--success-color);
    font-weight: 600;
}

.volatility {
    color: var(--warning-color);
    font-weight: 600;
}

/* ===== СЕКЦИЯ БОНУСОВ ===== */
.bonuses-section {
    padding: 80px 0;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.bonus-card {
    position: relative;
    background: var(--bg-primary);
    border-radius: var(--border-radius-large);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.bonus-card.featured {
    background: var(--bg-gradient);
    color: var(--text-white);
    transform: scale(1.05);
}

.bonus-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--accent-color);
    color: var(--text-primary);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
}

.bonus-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.bonus-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.bonus-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.bonus-features {
    list-style: none;
    margin: 20px 0;
    text-align: left;
}

.bonus-features li {
    padding: 5px 0;
    font-size: 0.9rem;
}

/* ===== СЕКЦИЯ МОБИЛЬНОГО ПРИЛОЖЕНИЯ ===== */
.mobile-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.mobile-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mobile-features {
    margin: 30px 0;
}

.mobile-feature {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.mobile-feature .feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
}

.mobile-downloads {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.download-btn img {
    height: 50px;
    transition: var(--transition);
}

.download-btn:hover img {
    transform: scale(1.05);
}

.phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    background: #333;
    border-radius: 30px;
    padding: 20px;
    margin: 0 auto;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    border-radius: 20px;
    overflow: hidden;
}

.app-interface {
    padding: 20px;
}

.app-header {
    text-align: center;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.app-games {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.app-game img {
    width: 100%;
    border-radius: 8px;
}

/* ===== СЕКЦИЯ ОТЗЫВОВ ===== */
.reviews-section {
    padding: 80px 0;
}

.reviews-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--bg-primary);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.review-rating {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h4 {
    margin-bottom: 5px;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===== СЕКЦИЯ ЗЕРКАЛ ===== */
.mirrors-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.mirrors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mirror-card {
    background: var(--bg-primary);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.mirror-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.mirror-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--success-color);
    color: var(--text-white);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.mirror-url {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

/* ===== СЕКЦИЯ FAQ ===== */
.faq-section {
    padding: 80px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-primary);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-secondary);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== СЕКЦИЯ РЕГИСТРАЦИИ ===== */
.register-section {
    padding: 80px 0;
    background: var(--bg-gradient);
    color: var(--text-white);
}

.register-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.register-benefits {
    margin: 30px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.benefit-icon {
    font-size: 1.5rem;
}

.register-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-large);
    padding: 40px;
}

.registration-form h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-primary);
}

.form-group input:focus {
    outline: none;
    background: var(--bg-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.3);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

/* ===== ФУТЕР ===== */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--text-white);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-2px);
    background: var(--primary-dark);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}

.footer-warning {
    color: var(--warning-color);
    font-size: 0.9rem;
    margin-top: 10px;
}

/* ===== ПЛАВАЮЩИЕ КНОПКИ ===== */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
}

.chat-btn {
    background: var(--success-color);
    color: var(--text-white);
}

.top-btn {
    background: var(--primary-color);
    color: var(--text-white);
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-heavy);
}

/* ===== АДАПТИВНОСТЬ ===== */
/* ===== ДОПОЛНИТЕЛЬНЫЕ СТИЛИ ДЛЯ СЛОТОВ ===== */
.games-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.games-stats span {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 5px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.game-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a2a3e 0%, #1e1e32 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.placeholder-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    opacity: 0.7;
}

.placeholder-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.placeholder-rating {
    font-size: 0.9rem;
    color: var(--primary-color);
}

.game-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.game-badge.new {
    background: #00ff88;
    color: #000;
}

.game-badge.top {
    background: #ff6b35;
    color: white;
}

.game-badge.jackpot {
    background: #ffd700;
    color: #000;
}

.games-count {
    margin-top: 15px;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== СЕКЦИЯ ПРОВАЙДЕРОВ ===== */
.providers-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.provider-card {
    background: rgba(15, 23, 42, 0.9);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    backdrop-filter: blur(10px);
}

.provider-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.provider-logo {
    margin-bottom: 20px;
}

.provider-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: white;
    margin: 0 auto;
}

.provider-info h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.provider-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.provider-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 15px;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
}

.provider-top-game {
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.top-game-label {
    color: rgba(255, 255, 255, 0.85);
}

.top-game-name {
    color: var(--primary-color);
    font-weight: 500;
}

/* ===== СЕКЦИЯ КАЛЬКУЛЯТОРА БОНУСОВ ===== */
.bonus-calculator-section {
    padding: 80px 0 120px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
}

.bonus-calculator-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.5), transparent);
}

.calculator-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
    align-items: start;
}

.calculator-form {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: white;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.calculator-result {
    position: sticky;
    top: 100px;
}

.result-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    padding: 30px;
    color: white;
    text-align: center;
    transition: transform 0.3s ease;
}

.result-card h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.bonus-amount {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.bonus-details {
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 8px 0;
}

.detail-item.total {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 15px;
    padding-top: 15px;
    font-weight: bold;
    font-size: 1.1rem;
}

.detail-label {
    opacity: 0.9;
}

.detail-value {
    font-weight: 600;
}

.bonus-conditions {
    font-size: 0.85rem;
    opacity: 0.8;
    line-height: 1.4;
}

/* ===== СЕКЦИЯ ОБЗОРА ===== */
.casino-review-section {
    padding: 120px 0 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
}

.casino-review-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="casino-pattern" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="1" fill="rgba(255,215,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23casino-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.casino-review-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.5), transparent);
    z-index: 2;
}

.review-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-top: 40px;
    position: relative;
    z-index: 3;
}

.review-rating {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px);
    text-align: center;
}

.rating-score {
    text-align: center;
    margin-bottom: 30px;
}

.score {
    font-size: 4rem;
    font-weight: 900;
    color: #ffd700;
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: pulse 2s ease-in-out infinite;
    margin-bottom: 15px;
}

.stars {
    margin: 10px 0;
    font-size: 1.5rem;
}

.star.filled {
    color: #ffd700;
}

.star.half {
    color: #ffd700;
    opacity: 0.5;
}

.rating-text {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
}

.rating-breakdown {
    space-y: 15px;
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.rating-label {
    color: white;
    min-width: 80px;
    font-size: 0.9rem;
}

.rating-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
    transition: width 0.3s ease;
}

.rating-value {
    color: var(--primary-color);
    font-weight: 600;
    min-width: 30px;
    text-align: right;
    font-size: 0.9rem;
}

.review-text {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.review-text h3 {
    color: #ffd700;
    margin-bottom: 25px;
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.review-text p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.review-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.pros h4,
.cons h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.pros ul,
.cons ul {
    list-style: none;
    padding: 0;
}

.pros li,
.cons li {
    color: var(--text-light);
    margin-bottom: 8px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.review-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.review-card {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.review-card h4 {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.review-stats {
    space-y: 12px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px 0;
}

.stat-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.stat-value {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.payment-methods {
    space-y: 10px;
}

.payment-item {
    color: var(--text-light);
    padding: 8px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
}

.payment-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .mobile-content,
    .register-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .header-nav {
        display: none;
    }
    
    .games-stats {
        gap: 15px;
    }
    
    .games-stats span {
        font-size: 0.8rem;
        padding: 4px 12px;
    }
    
    .providers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .calculator-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .calculator-result {
        position: static;
    }
    
    .review-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .review-pros-cons {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .header-actions {
        gap: 10px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .bonuses-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-slider {
        grid-template-columns: 1fr;
    }
    
    .mirrors-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* Адаптивные стили для селекторов */
    .top-nav-content {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .nav-selectors {
        gap: 1rem;
    }
    
    .top-nav-info {
        gap: 1rem;
        font-size: 0.8rem;
    }
    
    .language-btn, .city-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .language-dropdown, .city-dropdown {
        min-width: 140px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .bonus-card {
        padding: 30px 20px;
    }
    
    .register-form {
        padding: 30px 20px;
    }
}

/* ===== АНИМАЦИИ ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.game-card,
.bonus-card,
.review-card,
.mirror-card {
    animation: fadeInUp 0.6s ease forwards;
}

.btn-primary {
    animation: pulse 2s infinite;
}

/* ===== УТИЛИТЫ ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
