/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Casino Color Palette */
    --primary-gold: #FFD700;
    --primary-red: #DC143C;
    --primary-purple: #8A2BE2;
    --secondary-blue: #1E90FF;
    --accent-green: #32CD32;
    --dark-bg: #0A0A0A;
    --casino-red: #B22222;
    --luxury-gold: #DAA520;
    --neon-pink: #FF1493;
    --bright-orange: #FF6347;

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #FFD700, #FFA500, #FF8C00);
    --gradient-purple: linear-gradient(135deg, #8A2BE2, #9932CC, #BA55D3);
    --gradient-red: linear-gradient(135deg, #DC143C, #B22222, #8B0000);
    --gradient-casino: linear-gradient(135deg, #FFD700, #FF6347, #DC143C);

    /* Typography */
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Roboto', sans-serif;

    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --border-radius: 12px;

    /* Shadows */
    --shadow-light: 0 4px 20px rgba(255, 215, 0, 0.3);
    --shadow-dark: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-neon: 0 0 20px rgba(255, 215, 0, 0.6);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A2E 50%, #16213E 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 4rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
    to { text-shadow: 0 0 40px rgba(255, 215, 0, 0.8); }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

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

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

.btn-primary {
    background: var(--gradient-gold);
    color: #000;
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
}

.btn-secondary {
    background: var(--gradient-purple);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(138, 43, 226, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(138, 43, 226, 0.5);
}

.btn-large {
    padding: 18px 40px;
    font-size: clamp(1rem, 3vw, 1.1rem);
}

.btn-play {
    background: var(--gradient-red);
    color: #ffffff;
    padding: 12px 25px;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.btn-login {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 10px 20px;
}

.btn-login:hover {
    background: var(--primary-gold);
    color: #000;
}

/* Header - УЛУЧШЕННАЯ АДАПТИВНОСТЬ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid var(--primary-gold);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-gold);
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    font-weight: 900;
}

.nav-logo img {
    width: clamp(30px, 8vw, 40px);
    height: clamp(30px, 8vw, 40px);
    margin-right: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: clamp(1rem, 3vw, 2rem);
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - УЛУЧШЕННАЯ АДАПТИВНОСТЬ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center, #1A1A2E 0%, #0A0A0A 100%);
    padding: 120px 0 80px;
}

.hero-background {
    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 1000 1000"><defs><radialGradient id="grad" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:%23FFD700;stop-opacity:0.1"/><stop offset="100%" style="stop-color:%23FFD700;stop-opacity:0"/></radialGradient></defs><circle cx="100" cy="100" r="50" fill="url(%23grad)"><animate attributeName="r" values="20;50;20" dur="4s" repeatCount="indefinite"/></circle><circle cx="300" cy="200" r="30" fill="url(%23grad)"><animate attributeName="r" values="10;30;10" dur="3s" repeatCount="indefinite"/></circle><circle cx="700" cy="150" r="40" fill="url(%23grad)"><animate attributeName="r" values="15;40;15" dur="5s" repeatCount="indefinite"/></circle></svg>');
    animation: float 20s ease-in-out infinite;
}

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

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: 1rem;
    background: var(--gradient-casino);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titlePulse 3s ease-in-out infinite;
    line-height: 1.2;
}

@keyframes titlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 4vw, 2rem);
    margin-bottom: 2rem;
    color: var(--primary-gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.hero-description {
    font-size: clamp(1rem, 3vw, 1.2rem);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    color: #cccccc;
}

.hero-buttons {
    display: flex;
    gap: clamp(1rem, 4vw, 2rem);
    justify-content: center;
    flex-wrap: wrap;
}

/* Advantages Section - УЛУЧШЕННАЯ АДАПТИВНОСТЬ */
.advantages {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
}

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

.advantage-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
    padding: clamp(2rem, 5vw, 3rem);
    border-radius: var(--border-radius);
    text-align: center;
    border: 2px solid transparent;
    background-clip: padding-box;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-gold);
    z-index: -1;
    border-radius: var(--border-radius);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-neon);
}

.advantage-icon {
    font-size: clamp(3rem, 8vw, 4rem);
    margin-bottom: 2rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.advantage-card h3 {
    font-size: clamp(1.3rem, 4vw, 1.8rem);
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
}

.advantage-card p {
    font-size: clamp(1rem, 3vw, 1.1rem);
    line-height: 1.8;
    color: #cccccc;
}

/* Games Section - УЛУЧШЕННАЯ АДАПТИВНОСТЬ */
.games {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A2E 100%);
}

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

.game-card {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(26, 26, 46, 0.9) 100%);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
}

.game-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
    border-color: var(--primary-gold);
}

.game-image {
    position: relative;
    overflow: hidden;
    height: clamp(200px, 40vw, 250px);
    background: linear-gradient(135deg, #1A1A2E, #16213E);
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-image img {
    width: clamp(120px, 30vw, 180px);
    height: clamp(120px, 30vw, 180px);
    object-fit: contain;
    transition: transform 0.4s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(220, 20, 60, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.game-info {
    padding: clamp(1.5rem, 4vw, 2rem);
}

.game-info h3 {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

.game-info p {
    color: #cccccc;
    line-height: 1.6;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

/* FAQ Section - УЛУЧШЕННАЯ АДАПТИВНОСТЬ */
.faq {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #16213E 0%, #1A1A2E 100%);
}

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

.faq-item {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(1rem, 3vw, 1.5rem);
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 215, 0, 0.1);
}

.faq-question h3 {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: var(--primary-gold);
    flex: 1;
    margin-right: 1rem;
}

.faq-toggle {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    color: var(--primary-gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-answer {
    padding: 0 clamp(1rem, 3vw, 1.5rem);
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 clamp(1rem, 3vw, 1.5rem) clamp(1rem, 3vw, 1.5rem);
    max-height: 200px;
}

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

.faq-answer p {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    color: #cccccc;
    line-height: 1.6;
}

/* Reviews Section - УЛУЧШЕННАЯ АДАПТИВНОСТЬ */
.reviews {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A2E 100%);
}

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

.review-card {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    padding: clamp(2rem, 5vw, 2.5rem);
    border-radius: var(--border-radius);
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.4s ease;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
    border-color: var(--primary-gold);
}

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

.review-avatar {
    width: clamp(50px, 12vw, 60px);
    height: clamp(50px, 12vw, 60px);
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-gold);
    flex-shrink: 0;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-info h4 {
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    font-size: clamp(1rem, 3vw, 1.2rem);
}

.review-rating {
    display: flex;
    gap: 0.2rem;
    flex-wrap: wrap;
}

.star {
    color: var(--primary-gold);
    font-size: clamp(1rem, 3vw, 1.2rem);
    animation: twinkle 1.5s ease-in-out infinite alternate;
}

@keyframes twinkle {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

.review-content p {
    color: #cccccc;
    line-height: 1.7;
    font-style: italic;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

/* Leaderboard Section - УЛУЧШЕННАЯ АДАПТИВНОСТЬ */
.leaderboard {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
}

.podium {
    display: flex;
    justify-content: center;
    align-items: end;
    gap: clamp(1rem, 4vw, 2rem);
    margin-top: 3rem;
    flex-wrap: wrap;
}

.podium-place {
    text-align: center;
    position: relative;
    transition: transform 0.4s ease;
    min-width: 200px;
    max-width: 250px;
}

.podium-place:hover {
    transform: translateY(-10px);
}

.podium-place.first {
    order: 2;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2rem);
    border-radius: var(--border-radius);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.4);
}

.podium-place.second {
    order: 1;
    background: linear-gradient(135deg, #C0C0C0, #A0A0A0);
    padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 2rem);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 25px rgba(192, 192, 192, 0.3);
}

.podium-place.third {
    order: 3;
    background: linear-gradient(135deg, #CD7F32, #B8860B);
    padding: clamp(1.5rem, 4vw, 2rem) clamp(1rem, 3vw, 1.5rem);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 20px rgba(205, 127, 50, 0.3);
}

.place-number {
    font-size: clamp(1.5rem, 5vw, 2rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.crown {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 1rem;
    animation: bounce 2s ease-in-out infinite;
}

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

.player-avatar {
    width: clamp(60px, 15vw, 80px);
    height: clamp(60px, 15vw, 80px);
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 3px solid #fff;
}

.player-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-info h4 {
    margin-bottom: 0.5rem;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-size: clamp(1rem, 3vw, 1.2rem);
}

.player-coins {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.coin-icon {
    font-size: clamp(1rem, 3vw, 1.3rem);
    animation: spin 3s linear infinite;
}

@keyframes spin {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

/* Disclaimer Section - УЛУЧШЕННАЯ ВИДИМОСТЬ КНОПОК */
.disclaimer-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #8B0000 0%, #B22222 100%);
    border-top: 3px solid var(--primary-gold);
}

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

.disclaimer-content h2 {
    color: var(--primary-gold);
    margin-bottom: 2rem;
    font-size: clamp(2rem, 6vw, 2.5rem);
}

.disclaimer-content p {
    font-size: clamp(1rem, 3vw, 1.1rem);
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #ffffff;
}

.responsible-gaming-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(1rem, 4vw, 2rem);
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.responsible-gaming-links img {
    height: clamp(40px, 10vw, 60px);
    transition: transform 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.responsible-gaming-links img:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 1);
}

.age-restriction {
    background: var(--primary-gold);
    color: #000;
    padding: clamp(8px, 2vw, 10px) clamp(15px, 4vw, 20px);
    border-radius: 50px;
    font-weight: 900;
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

/* Footer - УЛУЧШЕННАЯ АДАПТИВНОСТЬ */
.footer {
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A2E 100%);
    padding: clamp(3rem, 8vw, 4rem) 0 clamp(1.5rem, 4vw, 2rem);
    border-top: 3px solid var(--primary-gold);
}

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

.footer-section h3 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-size: clamp(1.2rem, 4vw, 1.5rem);
}

.footer-section h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: clamp(1rem, 3vw, 1.2rem);
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

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

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

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.footer-section ul li a:hover {
    color: var(--primary-gold);
}

.footer-logos {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
}

.footer-logos img {
    height: clamp(30px, 8vw, 40px);
    background: rgba(255, 255, 255, 0.9);
    padding: 5px;
    border-radius: 5px;
}

.footer-logos .age-icon {
    background: var(--primary-gold);
    color: #000;
    padding: clamp(5px, 2vw, 5px) clamp(10px, 3vw, 15px);
    border-radius: 25px;
    font-weight: 900;
    font-size: clamp(1rem, 3vw, 1.2rem);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    padding-top: 2rem;
    text-align: center;
    color: #999;
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
}

/* КРИТИЧНЫЕ МЕДИА-ЗАПРОСЫ ДЛЯ МОБИЛЬНЫХ УСТРОЙСТВ */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 1rem;
        transition: left 0.3s ease;
        gap: 2rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

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

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .advantages-grid,
    .games-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .podium {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .podium-place {
        order: unset !important;
        max-width: 100%;
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .responsible-gaming-links {
        flex-direction: column;
        gap: 1rem;
    }

    .responsible-gaming-links img {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .hero {
        padding: 90px 0 50px;
    }

    .advantage-card,
    .review-card {
        padding: 1.5rem;
    }

    .game-image {
        height: 180px;
    }

    .game-image img {
        width: 100px;
        height: 100px;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .review-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .review-avatar {
        width: 50px;
        height: 50px;
    }

    .podium-place {
        padding: 1.5rem 1rem;
    }

    .player-avatar {
        width: 50px;
        height: 50px;
    }

    .place-number {
        font-size: 1.5rem;
    }

    .crown {
        font-size: 1.5rem;
    }
}

/* Game Rating Section */
.game-rating {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A2E 100%);
}

.rating-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.rating-container p {
    font-size: clamp(1rem, 3vw, 1.2rem);
    margin-bottom: 2rem;
    color: #cccccc;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: clamp(0.5rem, 2vw, 1rem);
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.rating-star {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rating-star:hover,
.rating-star.active {
    color: var(--primary-gold);
    transform: scale(1.2);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

.rating-text {
    font-size: clamp(1rem, 3vw, 1.1rem);
    color: var(--primary-gold);
    font-weight: 600;
}

/* Дополнительные утилиты */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; }
.hidden { display: none; }

/* Попапы и интерактивные элементы */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
    padding: 20px;
}

.popup-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.popup-content {
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
    padding: clamp(2rem, 5vw, 3rem);
    border-radius: var(--border-radius);
    border: 3px solid var(--primary-gold);
    text-align: center;
    max-width: 500px;
    width: 100%;
    box-shadow: var(--shadow-neon);
}

.age-verification h2 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-size: clamp(1.5rem, 5vw, 2rem);
}

.age-verification p {
    margin-bottom: 2rem;
    color: #cccccc;
    font-size: clamp(1rem, 3vw, 1.1rem);
}

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

.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-gold);
    max-width: clamp(300px, 90vw, 400px);
    z-index: 9999;
    box-shadow: var(--shadow-dark);
    transform: translateX(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateX(0);
}

.cookie-content p {
    margin-bottom: 1rem;
    color: #cccccc;
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    padding: 8px 16px;
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
}

.btn-link {
    background: none;
    color: var(--primary-gold);
    text-decoration: underline;
    border: none;
    padding: 8px 0;
}
