/* CSS Variables - Синяя цветовая палитра (темные оттенки) + Золотые акценты */
:root {
    --primary-blue: #0f172a;
    --secondary-blue: #1e3a8a;
    --light-blue: #1e40af;
    --dark-blue: #0a1220;
    --blue-accent: #1e3a8a;
    --white: #ffffff;
    --light-gray: #1e293b;
    --text-dark: #1f2937;
    --text-light: #94a3b8;
    /* Золотые цвета */
    --gold: #FFD700;
    --gold-dark: #DAA520;
    --gold-light: #FFE87C;
    --gold-accent: #FFA500;
    --gold-gradient: linear-gradient(135deg, #FFD700, #FFA500);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--white);
    background-color: #0f172a;
}

body.loaded {
    opacity: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid var(--gold);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: var(--gold);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.logo a:hover {
    color: var(--gold-light);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--gold);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    top: -100%;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 80vh;
    background: var(--primary-blue);
    z-index: 999;
    transition: top 0.3s ease, visibility 0.3s ease, opacity 0.3s ease;
    padding: 2rem;
    overflow-y: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid var(--gold);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.mobile-menu.active {
    top: 0;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-list {
    list-style: none;
    margin-top: 3rem;
}

.mobile-nav-list li {
    margin-bottom: 1.5rem;
}

.mobile-nav-list a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.mobile-nav-list a:hover {
    color: var(--gold);
}

/* Hero Section */
.hero {
    background-image: url('../image/zevshero.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--white);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(10, 18, 32, 0.75));
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.hero-bonus {
    margin: 1.5rem 0 2rem;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid var(--gold);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    animation: fadeInScale 1s ease-out 0.8s both, pulse 2s ease-in-out 2.5s infinite;
}

.hero-bonus .bonus-text {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.hero-bonus .bonus-amount {
    color: var(--gold);
    font-size: 2rem;
    font-weight: bold;
}

.hero-bonus .bonus-subtitle {
    font-size: 1rem;
    color: var(--gold-light);
    font-style: italic;
    margin: 0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-buttons .btn {
    min-width: 150px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--primary-blue);
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FFA500, #FFD700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    color: var(--primary-blue);
}

.btn-secondary {
    background: var(--text-light);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--text-dark);
}

.btn-blue {
    background: linear-gradient(135deg, var(--light-blue), var(--secondary-blue));
    color: var(--white);
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.3);
}

.btn-blue:hover {
    background: linear-gradient(135deg, var(--secondary-blue), var(--light-blue));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.5);
    color: var(--white);
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--primary-blue);
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.btn-gold:hover {
    background: linear-gradient(135deg, #FFA500, #FFD700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    color: var(--primary-blue);
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: #1e293b;
}

/* Mini Game Section */
.mini-game-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    position: relative;
    overflow: hidden;
}

.mini-game-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"><path d="M50 10 L60 40 L90 40 L65 60 L75 90 L50 70 L25 90 L35 60 L10 40 L40 40 Z" fill="rgba(255,215,0,0.05)"/></svg>') repeat;
    opacity: 0.2;
    pointer-events: none;
}

.mini-game-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.mini-game-description {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.game-with-images-wrapper {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.game-image-left,
.game-image-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.game-image-left {
    justify-content: flex-end;
}

.game-image-right {
    justify-content: flex-start;
}

.zeus-side-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 15px;
    border: 3px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.2));
}

.zeus-side-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 215, 0, 0.4);
}

.game-container {
    background: rgba(30, 41, 59, 0.8);
    border-radius: 15px;
    border: 2px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.2);
    padding: 2rem;
    overflow: hidden;
}

.game-header {
    margin-bottom: 1.5rem;
}

.game-stats {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    flex-wrap: wrap;
}

.stat-item {
    background: rgba(15, 23, 42, 0.6);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    text-align: center;
    min-width: 120px;
}

.stat-label {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.stat-value {
    display: block;
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: bold;
}

.game-area {
    position: relative;
    width: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.9));
    border-radius: 10px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.game-start-screen,
.game-end-screen {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.95);
    z-index: 10;
    text-align: center;
    padding: 2rem;
}

.game-start-screen h3,
.game-end-screen h3 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.game-start-screen p,
.game-end-screen p {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.final-score,
.final-level {
    color: var(--gold-light);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.final-score span,
.final-level span {
    color: var(--gold);
    font-weight: bold;
    font-size: 1.5rem;
}

.lightning {
    position: absolute;
    width: 60px;
    height: 60px;
    cursor: pointer;
    user-select: none;
    transition: transform 0.1s ease;
    z-index: 5;
}

.lightning::before {
    content: '⚡';
    font-size: 60px;
    display: block;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
    animation: lightningPulse 0.5s ease-in-out infinite;
}

@keyframes lightningPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 1));
    }
}

.lightning:hover {
    transform: scale(1.2);
}

.lightning.clicked {
    animation: lightningHit 0.3s ease-out forwards;
}

@keyframes lightningHit {
    0% {
        transform: scale(1.5);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.game-controls {
    text-align: center;
}

.game-controls .btn {
    margin: 0 0.5rem;
}

/* Demo Section */
.demo-section {
    padding: 5rem 0;
    background-image: url('../image/Oyunu Deneyin.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.demo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(10, 18, 32, 0.75));
    pointer-events: none;
    z-index: 1;
}

.demo-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.demo-content {
    color: var(--white);
}

.demo-content .section-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.demo-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.demo-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.demo-feature-item {
    background: rgba(30, 41, 59, 0.6);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.demo-feature-item:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    transform: translateY(-5px);
}

.demo-icon {
    display: none;
}

.demo-feature-item h3 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.demo-feature-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.demo-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.demo-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-icon {
    display: none;
}

.demo-info {
    background: rgba(30, 41, 59, 0.5);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.demo-info p {
    margin-bottom: 0.5rem;
    color: var(--white);
    font-size: 0.95rem;
}

.demo-info p:last-child {
    margin-bottom: 0;
}

.demo-info strong {
    color: var(--gold);
}

.demo-preview {
    position: relative;
}

.demo-image-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.8));
    border-radius: 15px;
    border: 3px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.demo-image-placeholder:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 215, 0, 0.4);
}

.demo-image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.demo-image-content {
    text-align: center;
    z-index: 1;
    position: relative;
}

.demo-play-icon {
    font-size: 4rem;
    color: var(--gold);
    display: block;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.demo-image-content p {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 500;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--gold);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #1e293b;
    color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid transparent;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
    border-color: var(--gold);
}

.feature-card h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.feature-image {
    width: 100%;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
}

.feature-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover .feature-img {
    transform: scale(1.05);
    border-color: var(--gold);
}

/* Page Header */
.page-header {
    background-image: url('../image/zevsfon1.webp');
    background-size: 40% auto;
    background-position: right center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
    border-bottom: 3px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, 
        rgba(15, 23, 42, 1) 0%, 
        rgba(15, 23, 42, 0.98) 30%, 
        rgba(15, 23, 42, 0.95) 45%, 
        rgba(15, 23, 42, 0.85) 55%, 
        rgba(15, 23, 42, 0.7) 60%, 
        rgba(15, 23, 42, 0.5) 65%, 
        rgba(15, 23, 42, 0.3) 70%, 
        rgba(15, 23, 42, 0.15) 75%, 
        rgba(15, 23, 42, 0.05) 80%, 
        transparent 85%);
    z-index: 1;
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.9) 0%, 
        rgba(10, 18, 32, 0.8) 100%);
    mask-image: linear-gradient(to right, 
        black 0%, 
        black 50%, 
        rgba(0,0,0,0.9) 55%, 
        rgba(0,0,0,0.7) 60%, 
        rgba(0,0,0,0.5) 65%, 
        rgba(0,0,0,0.3) 70%, 
        rgba(0,0,0,0.15) 75%, 
        rgba(0,0,0,0.05) 80%, 
        transparent 85%);
    -webkit-mask-image: linear-gradient(to right, 
        black 0%, 
        black 50%, 
        rgba(0,0,0,0.9) 55%, 
        rgba(0,0,0,0.7) 60%, 
        rgba(0,0,0,0.5) 65%, 
        rgba(0,0,0,0.3) 70%, 
        rgba(0,0,0,0.15) 75%, 
        rgba(0,0,0,0.05) 80%, 
        transparent 85%);
    z-index: 1;
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--white), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.page-header-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* About Content */
.about-content,
.legal-content {
    padding: 4rem 0;
    background: #0f172a;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    color: var(--white);
}

.content-wrapper h2 {
    color: var(--gold);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-wrapper p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--white);
}

.content-wrapper ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.content-wrapper ul li {
    color: var(--white);
}

/* Accordion Styles */
.accordion-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(30, 41, 59, 0.5);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: var(--gold);
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.2);
}

.accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: rgba(255, 215, 0, 0.1);
}

.accordion-header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--gold);
}

.accordion-icon {
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: bold;
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
    position: relative;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    padding: 0 1.5rem 1.5rem 1.5rem;
    background-image: url('../image/Oyunu Deneyin.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 300px;
    background-attachment: local;
}

.accordion-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--white);
}

.accordion-content p:last-child {
    margin-bottom: 0;
}

.accordion-item.active .accordion-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.75), rgba(10, 18, 32, 0.65));
    z-index: 0;
    border-radius: 0 0 8px 8px;
}

.accordion-item.active .accordion-content p {
    position: relative;
    z-index: 1;
}

/* Reviews Section */
.reviews-section {
    padding: 4rem 0;
    background: #0f172a;
}

.reviews-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.review-card {
    background: rgba(30, 41, 59, 0.8);
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.review-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(30, 41, 59, 0.8);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.reviewer-details h3 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.reviewer-location {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.review-rating {
    display: flex;
    gap: 0.25rem;
    flex-shrink: 0;
}

.review-rating .star {
    color: var(--gold);
    font-size: 1.2rem;
}

.review-content {
    margin-bottom: 1rem;
}

.review-content p {
    color: var(--white);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

.review-date {
    color: var(--text-light);
    font-size: 0.85rem;
    font-style: italic;
    text-align: right;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

/* Services */
.services {
    padding: 4rem 0;
    background: #0f172a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--gold);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.2);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    border-color: var(--gold-light);
}

.service-card h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.service-image {
    width: 100%;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover .service-img {
    transform: scale(1.05);
    border-color: var(--gold);
}

/* Ratings Section */
.ratings-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
}

.ratings-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
}

.rating-card {
    display: none;
}

.ratings-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(30, 41, 59, 0.6);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--gold);
}

.ratings-table thead {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.ratings-table th {
    padding: 1.25rem 1rem;
    text-align: left;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid rgba(15, 23, 42, 0.3);
}

.ratings-table th:first-child {
    text-align: center;
    width: 60px;
}

.ratings-table tbody tr {
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.ratings-table tbody tr:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: scale(1.01);
}

.ratings-table tbody tr:last-child {
    border-bottom: none;
}

.ratings-table td {
    padding: 1.25rem 1rem;
    color: var(--white);
    font-size: 1rem;
    vertical-align: middle;
}

.ratings-table td:first-child {
    text-align: center;
    font-weight: bold;
    color: var(--gold);
    font-size: 1.2rem;
}

.ratings-table td:nth-child(2) {
    font-weight: 600;
    color: var(--gold-light);
}

.ratings-table td:nth-child(3) {
    color: var(--text-light);
    font-size: 0.95rem;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.rating-stars .star {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.rating-stars .star.filled {
    color: var(--gold);
}

.rating-value {
    margin-left: 0.5rem;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.1rem;
}

.ratings-table td:last-child {
    color: var(--gold-light);
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: #0f172a;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info h2,
.contact-form-wrapper h2 {
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.contact-info {
    color: var(--white);
}

.contact-info p {
    margin-bottom: 1rem;
    color: var(--white);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    padding: 1.5rem;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--gold);
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.contact-item h3 {
    color: var(--gold);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-icon {
    display: none;
}

.contact-item p {
    margin-bottom: 0.5rem;
    color: var(--white);
    line-height: 1.6;
}

.contact-item p a {
    color: var(--gold-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item p a:hover {
    color: var(--gold);
    text-decoration: underline;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light) !important;
    font-style: italic;
    margin-top: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.social-link {
    padding: 0.5rem 1rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--gold);
    border-radius: 5px;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-link:hover {
    background: var(--gold);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form-wrapper {
    color: var(--white);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #334155;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    background: #0f172a;
    color: var(--white);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* Location Section */
.location-section {
    padding: 4rem 0;
    background: #0f172a;
}

.location-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.location-info {
    color: var(--white);
}

.location-info h3 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.location-info p {
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.location-info strong {
    color: var(--gold-light);
}

.location-details {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.05);
    border-left: 3px solid var(--gold);
    border-radius: 5px;
}

.location-details p {
    margin-bottom: 0.75rem;
}

.location-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--gold);
}

/* Contact Map */
.contact-map {
    padding: 2rem 0 4rem;
    background: #1e293b;
}

.contact-map h2 {
    text-align: center;
    color: var(--gold);
    margin-bottom: 2rem;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

/* Thank You Section */
.thank-you-section {
    padding: 6rem 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-section {
    background: #0f172a;
}

.thank-you-content h1 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.thank-you-content p {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--light-blue);
}

/* Footer */
.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 3rem 0 1rem;
    border-top: 2px solid var(--gold);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--light-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e293b;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 2px solid var(--gold);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    color: var(--white);
}

.cookie-content a {
    color: var(--gold);
    text-decoration: underline;
}

.cookie-content a:hover {
    color: var(--gold-light);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

/* Registration Section */
.registration-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e293b, #0f172a);
}

.registration-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.registration-content {
    background: #1e293b;
    color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.registration-content h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.registration-content > p {
    text-align: center;
    color: var(--light-blue);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group select {
    padding: 0.75rem;
    border: 2px solid #334155;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    background: #0f172a;
    color: var(--white);
    transition: border-color 0.3s ease;
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label span {
    color: var(--white);
}

.checkbox-label a {
    color: var(--gold);
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: var(--gold-light);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    width: 100%;
    margin-top: 0.5rem;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    text-align: center;
    border-top: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Page Load Animation */
body {
    opacity: 0;
    transition: opacity 0.5s ease-in;
}

/* Header Animation */
.header {
    animation: fadeInDown 0.8s ease-out;
    opacity: 0;
    animation-fill-mode: forwards;
}

.logo a {
    animation: fadeInScale 1s ease-out 0.2s both;
    opacity: 0;
}

.nav-list {
    animation: fadeInDown 0.8s ease-out 0.3s both;
    opacity: 0;
}

/* Hero Section Animations */
.hero {
    animation: fadeInScale 1.2s ease-out;
    animation-fill-mode: forwards;
    position: relative;
    overflow: hidden;
    opacity: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: shimmer 3s infinite;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    animation: fadeInScale 1.2s ease-out 0.5s both;
    opacity: 0;
}

.hero-content p {
    animation: fadeInUp 1s ease-out 0.7s both;
    opacity: 0;
}

.hero-bonus {
    animation: fadeInScale 1s ease-out 0.8s both, pulse 2s ease-in-out 2.5s infinite;
    opacity: 0;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 1.1s both;
    opacity: 0;
}

.hero-buttons .btn {
    animation: fadeInScale 0.6s ease-out both;
    opacity: 0;
}

.hero-buttons .btn:nth-child(1) {
    animation-delay: 1.1s;
}

.hero-buttons .btn:nth-child(2) {
    animation-delay: 1.3s;
}

.hero-buttons .btn:nth-child(3) {
    animation-delay: 1.5s;
}

/* Features Section Animations */
.features {
    animation: fadeInUp 1s ease-out;
    animation-fill-mode: forwards;
    opacity: 0;
}

.feature-card {
    animation: fadeInUp 0.8s ease-out both;
    opacity: 0;
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Service Cards Animations */
.service-card {
    animation: fadeInScale 0.8s ease-out both;
    opacity: 0;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card:nth-child(5) {
    animation-delay: 0.5s;
}

.service-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* Mini Game Section Animation */
.mini-game-section {
    animation: fadeInUp 1s ease-out;
    animation-fill-mode: forwards;
    opacity: 0;
}

.mini-game-wrapper {
    animation: fadeInUp 1s ease-out 0.2s both;
    opacity: 0;
}

/* Demo Section Animation */
.demo-section {
    animation: fadeInUp 1s ease-out;
    animation-fill-mode: forwards;
    opacity: 0;
}

.demo-wrapper {
    animation: fadeInUp 1s ease-out 0.2s both;
    opacity: 0;
}

.demo-feature-item {
    animation: fadeInScale 0.6s ease-out both;
    opacity: 0;
}

.demo-feature-item:nth-child(1) {
    animation-delay: 0.4s;
}

.demo-feature-item:nth-child(2) {
    animation-delay: 0.5s;
}

.demo-feature-item:nth-child(3) {
    animation-delay: 0.6s;
}

/* Registration Form Animation */
.registration-section {
    animation: fadeInUp 1s ease-out;
    animation-fill-mode: forwards;
    opacity: 0;
}

.registration-content {
    animation: fadeInScale 1s ease-out 0.2s both;
    opacity: 0;
}

.registration-form .form-group {
    animation: slideInLeft 0.6s ease-out both;
    opacity: 0;
}

.registration-form .form-group:nth-child(1) {
    animation-delay: 0.3s;
}

.registration-form .form-group:nth-child(2) {
    animation-delay: 0.4s;
}

.registration-form .form-group:nth-child(3) {
    animation-delay: 0.5s;
}

.registration-form .form-group:nth-child(4) {
    animation-delay: 0.6s;
}

.registration-form .form-group:nth-child(5) {
    animation-delay: 0.7s;
}

.registration-form .form-group:nth-child(6) {
    animation-delay: 0.8s;
}

.registration-form .btn {
    animation: fadeInScale 0.8s ease-out 1s both, pulse 2s ease-in-out 2.5s infinite;
    opacity: 0;
}

/* Location Section Animations */
.location-section {
    animation: fadeInUp 1s ease-out;
    animation-fill-mode: forwards;
    opacity: 0;
}

.location-wrapper {
    animation: fadeInUp 1s ease-out 0.2s both;
    opacity: 0;
}

.location-info {
    animation: slideInLeft 0.8s ease-out 0.3s both;
    opacity: 0;
}

.location-map {
    animation: slideInRight 0.8s ease-out 0.5s both;
    opacity: 0;
}

/* Contact Section Animations */
.contact-wrapper {
    animation: fadeInUp 1s ease-out;
    animation-fill-mode: forwards;
    opacity: 0;
}

.contact-info {
    animation: slideInLeft 0.8s ease-out 0.2s both;
    opacity: 0;
}

.contact-form-wrapper {
    animation: slideInRight 0.8s ease-out 0.4s both;
    opacity: 0;
}

/* Page Header Animation */
.page-header {
    animation: fadeInDown 0.8s ease-out;
    animation-fill-mode: forwards;
    opacity: 0;
}

.page-header h1 {
    animation: fadeInScale 1s ease-out 0.3s both;
    opacity: 0;
}

/* Content Animations */
.content-wrapper {
    animation: fadeInUp 1s ease-out 0.2s both;
    opacity: 0;
}

.content-wrapper h2 {
    animation: fadeInUp 0.8s ease-out 0.4s both;
    opacity: 0;
}

.content-wrapper p {
    animation: fadeInUp 0.8s ease-out 0.6s both;
    opacity: 0;
}

/* Footer Animation */
.footer {
    animation: fadeInUp 1s ease-out;
    animation-fill-mode: forwards;
    opacity: 0;
}

/* Existing fade-in for scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        position: fixed;
        top: 1rem;
        right: 1rem;
        z-index: 1001;
        background: rgba(15, 23, 42, 0.9);
        padding: 0.75rem;
        border-radius: 8px;
        border: 2px solid var(--gold);
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    }

    .mobile-menu-toggle span {
        background: var(--gold);
    }

    .mobile-menu {
        max-height: 80vh;
    }

    .hero {
        background-attachment: scroll;
        background-size: contain;
        background-position: center top;
        min-height: 60vh;
        padding: 3rem 0;
    }
    
    .hero-overlay {
        background: linear-gradient(135deg, rgba(15, 23, 42, 0.7), rgba(10, 18, 32, 0.6));
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
        min-width: auto;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .reviews-wrapper {
        grid-template-columns: 1fr;
    }

    .review-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .review-rating {
        margin-top: 0.5rem;
    }

    .game-with-images-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .game-image-left,
    .game-image-right {
        display: none;
    }

    .game-area {
        min-height: 300px;
    }

    .game-stats {
        flex-direction: column;
        align-items: stretch;
    }

    .stat-item {
        width: 100%;
    }

    .game-start-screen h3,
    .game-end-screen h3 {
        font-size: 1.5rem;
    }

    .lightning {
        width: 50px;
        height: 50px;
    }

    .lightning::before {
        font-size: 50px;
    }

    .demo-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .demo-section {
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
    }

    .demo-content .section-title {
        text-align: center;
    }

    .demo-features {
        grid-template-columns: 1fr;
    }

    .demo-buttons {
        flex-direction: column;
    }

    .demo-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .location-wrapper {
        grid-template-columns: 1fr;
    }

    .location-map {
        order: -1;
    }

    .page-header {
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .map-container iframe {
        height: 300px;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .thank-you-content h1 {
        font-size: 2rem;
    }

    .registration-content {
        padding: 2rem 1.5rem;
    }
    
    .registration-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 0;
    }

    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .ratings-section {
        padding: 2rem 0;
    }

    .ratings-table {
        display: none;
    }

    .ratings-wrapper {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .rating-card {
        display: block;
        background: rgba(30, 41, 59, 0.8);
        border: 2px solid var(--gold);
        border-radius: 10px;
        padding: 1.25rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }

    .rating-card-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    }

    .rating-card-number {
        font-size: 1.5rem;
        font-weight: bold;
        color: var(--gold);
        min-width: 30px;
    }

    .rating-card-title {
        flex: 1;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--gold-light);
        margin-left: 0.75rem;
    }

    .rating-card-info {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .rating-card-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .rating-card-label {
        font-size: 0.9rem;
        color: var(--text-light);
        font-weight: 500;
    }

    .rating-card-value {
        font-size: 0.95rem;
        color: var(--white);
    }

    .rating-card-platform {
        color: var(--text-light);
    }

    .rating-card-rating {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .rating-card-review {
        color: var(--gold-light);
        font-weight: 600;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Body scroll lock when menu is open */
body.menu-open {
    overflow: hidden;
}

