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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 30px;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
}

/* Age Verification Modal */
.age-modal {
    background: #B63101;
    color: white;
    text-align: center;
}

.age-modal h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
}

.age-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.age-btn {
    background: white;
    color: #B63101;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.age-btn:hover {
    background: #f0f0f0;
}

/* Under 18 Screen */
.under18-screen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    z-index: 10000;
    color: white;
    text-align: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.under18-content h1 {
    font-size: 120px;
    margin-bottom: 20px;
    font-weight: 700;
}

.under18-content p {
    font-size: 24px;
    font-weight: 300;
}

/* Cookie Modal */
.cookie-modal h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.cookie-modal p {
    margin-bottom: 25px;
    color: #666;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    background: #B63101;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.cookie-btn:hover {
    background: #A04D2A;
}

.cookie-btn.refuse {
    background: #666;
}

.cookie-btn.refuse:hover {
    background: #555;
}

/* Header */
.header {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #B63101;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Warning Banner */
.warning-banner {
    background: #B63101;
    padding: 12px 0;
    margin-top: 80px;
}

.warning-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: white;
}

.age-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 16px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.warning-content p {
    font-size: 14px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4)), url('./assets/bg.png');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
    text-align: left;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 35px;
    max-width: 800px;
    line-height: 1.6;
}

.cta-btn {
    background: #B63101;
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

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

/* About Section */
.about {
    padding: 80px 0;
    background: #f8f8f8;
}

.about h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
}

.about-content {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    border-radius: 15px;
}

.about-text {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #B63101;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

/* Advantages Section */
.advantages {
    padding: 80px 0;
    background: #B63101;
    color: white;
}

.advantages h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: left;
}

.advantage-icon {
    font-size: 24px;
    margin-bottom: 15px;
}

.advantage-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.advantage-card p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Games Section */
.games {
    padding: 80px 0;
    background: #f8f8f8;
}

.games h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.game-card {
    background: white;
    border: 2px solid #B63101;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
}

.game-image {
    margin-bottom: 20px;
}

.game-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.game-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #B63101;
}

.game-card p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #666;
}

.game-btn {
    background: #B63101;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    text-decoration: underline;
}

.game-btn:hover {
    background: #A04D2A;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: white;
}

.reviews h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.review-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
}

.review-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.stars {
    font-size: 16px;
    margin-bottom: 15px;
}

.review-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    font-style: italic;
}

/* Contact Section */
.contacts {
    padding: 80px 0;
    background: #B63101;
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-form h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: transparent;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.submit-btn {
    background: white;
    color: #B63101;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.submit-btn:hover {
    background: #f0f0f0;
}

.contact-image img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: white;
    padding: 60px 0 30px;
}

.disclaimer {
    margin-bottom: 40px;
}

.disclaimer h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.disclaimer p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.useful-links h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.links a:hover {
    color: #B63101;
}

.certifications {
    display: flex;
    gap: 20px;
    align-items: center;
}

.certifications img {
    height: 40px;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: 2;
    }
    
    .about-text {
        order: 1;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .certifications {
        justify-content: center;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        padding: 20px;
    }
    
    .age-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .under18-content h1 {
        font-size: 80px;
    }
    
    .under18-content p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 24px;
    }
    
    .hero-content p {
        font-size: 14px;
    }
    
    .about,
    .advantages,
    .games,
    .reviews,
    .contacts {
        padding: 60px 0;
    }
    
    .about h2,
    .advantages h2,
    .games h2,
    .reviews h2 {
        font-size: 28px;
    }
    
    .contact-form h2 {
        font-size: 28px;
    }
    
    .game-card {
        padding: 20px;
    }
    
    .advantage-card {
        padding: 25px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .warning-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .under18-content h1 {
        font-size: 60px;
    }
    
    .under18-content p {
        font-size: 16px;
        padding: 0 20px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Additional animations */
.game-card,
.advantage-card,
.review-card {
    transition: all 0.3s ease;
}

.game-card:hover,
.review-card:hover {
    transform: translateY(-5px);
}

/* Form focus states */
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
}

/* Button active states */
.cta-btn:active,
.game-btn:active,
.submit-btn:active {
    transform: translateY(1px);
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

/* Hide scrollbar but keep functionality */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #B63101;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #A04D2A;
}
.game__wrapper{
    display: flex;
    justify-content: center;
}
iframe{
 
    max-width: 800px;
    width: 100%;
    min-height: 400px;
}