* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #fff;
    background: #000;
    overflow-x: hidden;
}

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

/* Age Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-modal-content {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    border: 2px solid #333;
}

.age-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 30px;
}

.age-modal-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.age-modal-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #ccc;
}

.age-btn {
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    margin: 0 10px;
    min-width: 120px;
    transition: all 0.3s ease;
}

.enter-btn {
    background: #ffc107;
    color: #000;
}

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

.leave-btn {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.leave-btn:hover {
    background: #fff;
    color: #000;
}

/* Under 18 Screen */
.under18-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.under18-content {
    text-align: center;
    padding: 40px;
}

.under18-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #fff;
}

.under18-content p {
    font-size: 18px;
    color: #ccc;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.cookie-modal-content {
    background: #2a2a2a;
    padding: 30px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    text-align: center;
}

.cookie-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.cookie-modal-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
}

.cookie-modal-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #ccc;
}

.cookie-buttons {
    margin-top: 25px;
}

.cookie-btn {
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    margin: 5px;
    transition: all 0.3s ease;
}

.accept-btn {
    background: #ffc107;
    color: #000;
}

.accept-btn:hover {
    background: #ffca28;
}

.info-btn {
    background: transparent;
    color: #ccc;
    border: 1px solid #666;
}

.info-btn:hover {
    background: #666;
    color: #fff;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

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

.nav-brand a {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.nav-pill {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 20px;
    backdrop-filter: blur(10px);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.nav-list a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 0;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.nav-list a:hover {
    opacity: 1;
    color: #ffc107;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 65vh;
    background:  url('./assets/bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    padding-bottom: 60px;
}

.disclaimer-notice {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 15px 25px;
    margin-bottom: 50px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;


    border-radius: 16px;
border: 1px solid #FFF;
background: #1B1917;
box-shadow: 0 0 12px 0 rgba(255, 255, 255, 0.40);
}

.disclaimer-icon {
    background: #fff;
    color: #000;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.disclaimer-icon svg {
    width: 16px;
    height: 16px;
}

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

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.cta-button {
    background: #000;
    color: #fff;
    border: 2px solid #fff;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-decoration: none;
}

.cta-button:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: #1a1a1a;
}

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

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: linear-gradient(135deg, #B8610A, #CD853F);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(184, 97, 10, 0.3);
}

.benefit-icon {
    color: #FFB74D;
    margin-bottom: 20px;
    display: block;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.benefit-card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #000;
}

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

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

.service-card {
    background: linear-gradient(135deg, #4A2C17, #8B4513);
    padding: 30px;
    border-radius: 16px;
    border: 2px solid #CD853F;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #FFB74D;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.service-card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* About Section */
.about {
    padding: 100px 0;
    background: #1a1a1a;
}

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

.about-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
}

.about-text > p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #ccc;
}

.about-features {
    margin-bottom: 40px;
}

.about-feature {
    background: linear-gradient(135deg, #4A2C17, #8B4513);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 2px solid #CD853F;
}

.about-feature h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.about-feature p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

/* Games Section */
.games {
    padding: 100px 0;
    background: linear-gradient(135deg, #B8610A, #CD853F);
}

.games h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
    text-transform: uppercase;
}

.games > .container > p {
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 50px;
    color: #fff;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}

.game-showcase {
    display: flex;
    justify-content: center;
}

.game-frame {
    background: linear-gradient(135deg, #DEB887, #F4E4BC);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 100%;
}

.game-content {
    position: relative;
    text-align: center;
}

.game-content img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 20px;
}

.play-now-btn {
    background: #FFD700;
    color: #000;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-now-btn:hover {
    background: #FFC107;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: #000;
}

.reviews h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.reviews > .container > p {
    text-align: center;
    font-size: 16px;
    margin-bottom: 50px;
    color: #ccc;
}

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

.review-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 193, 7, 0.1);
}

.reviewer-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid #CD853F;
}

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

.reviewer-details h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
}

.stars {
    font-size: 14px;
    color: #FFD700;
}

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

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('./assets/contact-bg.jpg');
    background-size: cover;
    background-position: center;
}

.contact h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #fff;
}

.contact-form-wrapper {
    max-width: 500px;
    margin: 0 auto 50px;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 16px;
}

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

.contact-form input {
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    color: #333;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
}

.contact-form input::placeholder {
    color: #999;
}

.contact-form input:focus {
    outline: none;
    border-color: #CD853F;
    box-shadow: 0 0 0 2px rgba(205, 133, 63, 0.2);
}

.contact-form button {
    background: #000;
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: #333;
    transform: translateY(-2px);
}

.contact-info {
    text-align: center;
    color: #ccc;
    margin-bottom: 50px;
}

.contact-item {
    margin-bottom: 10px;
    font-size: 14px;
}

.disclaimer-box {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    margin-top: 50px;
}

.disclaimer-badge {
    background: #fff;
    color: #000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.disclaimer-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
    background: #000;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr ;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}
.footer-nav{
    border-radius: 16px;
border: 1px solid #FFF;
background: rgba(255, 255, 255, 0.20);
box-shadow: 0 0 12px 0 rgba(255, 255, 255, 0.40);
}

.footer-nav .nav-pill {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 20px;
    backdrop-filter: blur(10px);
}

.footer-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    opacity: 0.9;
}

.footer-nav a:hover {
    opacity: 1;
    color: #CD853F;
}

.app-badges {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.app-badge {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.app-badge.age {
    background: #fff;
    color: #000;
}

.app-badge:hover {
    background: #555;
    transform: translateY(-2px);
}

.app-badge.age:hover {
    background: #f0f0f0;
}

.footer-partners {
    text-align: center;
    margin-bottom: 40px;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;


    border-radius: 12px;
}


.partner-logos img:hover {
    opacity: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 14px;
    color: #666;
}

.footer-links {
    display: flex;
    gap: 25px;
}

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

.footer-links a:hover {
    color: #CD853F;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .benefits h2,
    .services h2,
    .games h2,
    .reviews h2,
    .contact h2 {
        font-size: 28px;
    }
    
    .benefits-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-image {
        order: 1;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-nav ul {
        justify-content: center;
    }
    
    .app-badges {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .disclaimer-box {
        flex-direction: column;
        text-align: center;
    }
    
    .disclaimer-notice {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .age-modal-content {
        padding: 30px 20px;
    }
    
    .age-btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
    
    .cookie-modal-content {
        padding: 25px 20px;
    }
    
    .cookie-btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .benefit-card,
    .service-card {
        padding: 25px 20px;
    }
    
    .contact-form-wrapper {
        padding: 25px 20px;
    }
    
    .game-frame {
        padding: 20px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

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

/* Hidden class for modals */
.hidden {
    display: none !important;
}

/* Navigation mobile styles */
.nav.mobile-open {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
}

.nav.mobile-open .nav-pill {
    background: transparent;
    border: none;
    padding: 0;
}

.nav.mobile-open .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

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

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

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

/* Animation classes */
.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}