:root {
    --dark-purple: #1a0000;
    --purple: #2d0000;
    --gray: #2a2a2a;
    --light-gray: #555555;
    --white: #ffffff;
    --green: #b8860b;
    --light-green: #daa520;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--dark-purple);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, var(--dark-purple), var(--purple));
    color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    color: var(--white);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--light-green);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle:hover {
    color: var(--light-green);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 0, 0, 0.98);
    z-index: 9999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
    display: flex;
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
}

.mobile-menu ul li {
    margin: 1.5rem 0;
}

.mobile-menu ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.mobile-menu ul li a:hover {
    color: var(--light-green);
}

.menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-close:hover {
    color: var(--light-green);
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
}

.overlay.active {
    display: block;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(26, 0, 0, 0.4), rgba(45, 0, 0, 0.4)), url('../image/molniya2.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: brightness(1.1);
}

.hero .container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-btn {
    position: absolute;
    bottom: 2rem;
    padding: 1rem 2rem;
    background: var(--light-green);
    color: var(--dark-purple);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.4);
    z-index: 10;
}

.hero-btn:hover {
    background: var(--green);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(218, 165, 32, 0.6);
}

.hero-btn-register {
    left: 2rem;
}

.hero-btn-game {
    right: 2rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
    text-shadow: -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.hero-bonus {
    font-size: 2rem;
    font-weight: bold;
    color: var(--light-green);
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.6);
    border: 3px solid var(--light-green);
    border-radius: 10px;
    display: inline-block;
    animation: fadeInUp 1.2s ease, pulse 2s infinite;
    text-shadow: -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000;
    box-shadow: 0 0 20px rgba(218, 165, 32, 0.5);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(218, 165, 32, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 30px rgba(218, 165, 32, 0.8);
        transform: scale(1.02);
    }
}

/* Registration Form */
.registration-section {
    padding: 4rem 0;
    background: var(--dark-purple);
}

.registration-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
}

.registration-form h2 {
    color: var(--white);
    margin-bottom: 1rem;
    text-align: center;
}

.fs-bonus {
    background: linear-gradient(135deg, var(--green), var(--light-green));
    color: var(--white);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: bold;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--light-gray);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
    background-color: var(--white);
    color: var(--gray);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--light-green);
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--purple), var(--dark-purple));
    color: var(--white);
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45, 27, 61, 0.6);
}

.btn-primary {
    background: linear-gradient(135deg, var(--green), var(--light-green));
}

/* Star Rating */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.3rem;
    margin-top: 0.5rem;
}

.star-rating input[type="radio"] {
    display: none;
}

.star-rating label.star {
    font-size: 2.5rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s, transform 0.2s;
    user-select: none;
    line-height: 1;
}

.star-rating label.star:hover,
.star-rating label.star:hover ~ label.star {
    color: #ffc107;
    transform: scale(1.1);
}

.star-rating input[type="radio"]:checked ~ label.star {
    color: #ffc107;
}

.star-rating input[type="radio"]:checked + label.star {
    color: #ffc107;
    transform: scale(1.15);
}

/* Mini Game Section */
.mini-game-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(26, 0, 0, 0.7), rgba(45, 0, 0, 0.7)), url('../image/molniya1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.mini-game-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mini-game-container h2 {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.game-area {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    min-height: 400px;
}

.game-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.game-time {
    font-size: 1.5rem;
    color: var(--light-green);
    font-weight: bold;
}

.game-board {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.memory-card {
    aspect-ratio: 1;
    position: relative;
    cursor: pointer;
    perspective: 1000px;
}

.memory-card .card-back,
.memory-card .card-front {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: transform 0.6s;
    font-size: 2.5rem;
    border: 2px solid var(--light-green);
}

.memory-card .card-back {
    background: var(--purple);
    color: var(--white);
    transform: rotateY(0deg);
}

.memory-card .card-front {
    background: var(--light-green);
    color: var(--dark-purple);
    transform: rotateY(180deg);
}

.memory-card.flipped .card-back {
    transform: rotateY(180deg);
}

.memory-card.flipped .card-front {
    transform: rotateY(0deg);
}

.memory-card.matched .card-front {
    background: var(--green);
    opacity: 0.7;
}

.memory-card:hover:not(.flipped):not(.matched) .card-back {
    background: var(--light-gray);
    transform: scale(1.05);
}

.game-message {
    color: var(--white);
    font-size: 1.2rem;
    margin: 2rem 0;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    text-align: center;
}

.game-score {
    font-size: 1.5rem;
    color: var(--light-green);
    margin-bottom: 1rem;
    font-weight: bold;
}

.game-button {
    padding: 1rem 2rem;
    background: var(--green);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.game-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.6);
}

/* About Section with Cards */
.about-section {
    padding: 4rem 0;
    background: var(--dark-purple);
}

.about-section h2 {
    text-align: center;
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    color: var(--white);
    font-size: 1.2rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-image {
    text-align: center;
}

.zeus-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 40px 15px rgba(218, 165, 32, 0.4), 
                0 0 80px 30px rgba(0, 0, 0, 0.3),
                inset 0 0 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid rgba(218, 165, 32, 0.2);
    filter: drop-shadow(0 0 20px rgba(218, 165, 32, 0.3));
}

.zeus-image:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px 15px rgba(218, 165, 32, 0.4), 0 0 80px 25px rgba(0, 0, 0, 0.3);
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--purple);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(45, 27, 61, 0.5);
}

.card h3 {
    color: var(--dark-purple);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.card p {
    color: var(--gray);
    line-height: 1.8;
}

.card-icon {
    display: none;
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: var(--dark-purple);
}

.contact-section h2 {
    text-align: center;
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item h3 {
    color: var(--dark-purple);
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: var(--purple);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--green);
}

.map-section {
    padding: 4rem 0;
    background: var(--dark-purple);
}

.map-container {
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

.map-container h2 {
    color: var(--white);
    margin-bottom: 1rem;
    text-align: center;
}

/* Footer */
footer {
    background: var(--gray);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--light-green);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--light-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--light-gray);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gray);
    color: var(--white);
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text a {
    color: var(--light-green);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-buttons button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: transform 0.3s;
}

.cookie-buttons .btn-accept {
    background: var(--green);
    color: var(--white);
}

.cookie-buttons .btn-decline {
    background: var(--light-gray);
    color: var(--white);
}

.cookie-buttons button:hover {
    transform: translateY(-2px);
}

/* Thank You Page */
.thank-you-section {
    padding: 6rem 0;
    text-align: center;
    background: var(--dark-purple);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.thank-you-content h1 {
    color: var(--dark-purple);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.thank-you-content p {
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Document Pages */
.document-section {
    padding: 4rem 0;
    max-width: 900px;
    margin: 0 auto;
    background: var(--dark-purple);
}

.document-section h1 {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.document-section h2 {
    color: var(--light-green);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.document-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--white);
}

.document-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.document-section li {
    margin-bottom: 0.5rem;
    color: var(--white);
}

.document-section a {
    color: var(--light-green);
    text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero {
        min-height: 400px;
        padding: 3rem 0 6rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-bonus {
        font-size: 1.3rem;
        padding: 0.8rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .hero-btn {
        position: relative;
        display: inline-block;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        bottom: auto;
        left: auto;
        right: auto;
        margin: 0.5rem;
    }
    
    .hero-btn-register {
        left: auto;
    }
    
    .hero-btn-game {
        right: auto;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .cards-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .mini-game-container h2 {
        font-size: 2rem;
    }
    
    .game-area {
        min-height: 300px;
    }
    
    .game-board {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
        max-width: 100%;
    }
    
    .memory-card .card-back,
    .memory-card .card-front {
        font-size: 2rem;
    }
    
    .game-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    table {
        font-size: 0.9rem;
    }
    
    table th,
    table td {
        padding: 0.7rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .articles-grid,
    .reviews-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Tables */
.table-container {
    overflow-x: auto;
    margin: 2rem 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

table th {
    background: var(--purple);
    color: var(--white);
    padding: 1rem;
    text-align: left;
    font-weight: bold;
}

table td {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
    color: var(--gray);
}

table tr:last-child td {
    border-bottom: none;
}

table tr:hover {
    background: #f5f5f5;
}

/* Accordion */
.accordion {
    margin: 2rem 0;
}

.accordion-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.games-section .accordion-item {
    background-image: url('../image/zevs3.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.games-section .accordion-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 0;
}

.games-section .accordion-item > * {
    position: relative;
    z-index: 1;
}

.accordion-header {
    background: var(--purple);
    color: var(--white);
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.accordion-header:hover {
    background: var(--dark-purple);
}

.accordion-header.active {
    background: var(--green);
}

.accordion-icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content.active {
    max-height: 1000px;
}

.accordion-body {
    padding: 1.5rem;
    color: var(--gray);
    line-height: 1.8;
}

/* Articles/News Section */
.articles-section {
    padding: 4rem 0;
    background: var(--dark-purple);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.article-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.article-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--purple), var(--green));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
}

.article-content {
    padding: 1.5rem;
}

.article-date {
    color: var(--light-gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.article-title {
    color: var(--dark-purple);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.article-excerpt {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.article-link {
    color: var(--green);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.article-link:hover {
    color: var(--light-green);
}

/* Reviews/Testimonials */
.reviews-section {
    padding: 4rem 0;
    background: var(--dark-purple);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
}

.games-section .review-card {
    background-image: url('../image/zevs3.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.games-section .review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 10px;
    z-index: 0;
}

.games-section .review-card > * {
    position: relative;
    z-index: 1;
}

.review-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--green));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    font-size: 1.2rem;
}

.review-info h4 {
    color: var(--dark-purple);
    margin-bottom: 0.25rem;
}

.review-info p {
    color: var(--light-gray);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: var(--dark-purple);
}

.faq-section h2 {
    text-align: center;
    color: var(--white);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--purple), var(--dark-purple));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    color: var(--white);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--light-green);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background: var(--dark-purple);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 2px solid transparent;
    transition: border-color 0.3s, transform 0.3s;
}

.feature-item:hover {
    border-color: var(--light-green);
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.feature-item h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

