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

body {
    font-family: "Outfit", sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    background: #0F1419;
}

/* Cookie Popup Styles */
.cookie-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.cookie-content {
    background: #2a2a2a;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    margin: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

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

.cookie-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffffff;
}

.cookie-content p {
    margin-bottom: 25px;
    color: #cccccc;
    font-size: 14px;
}

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

/* Age Verification Popup */
.age-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    backdrop-filter: blur(5px);
}

.age-content {
    background: #2a2a2a;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    margin: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

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

.age-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffffff;
}

.age-content p {
    margin-bottom: 25px;
    color: #cccccc;
    font-size: 14px;
}

.age-buttons {
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.btn-primary {
    background: #4FC3F7;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-primary:hover {
    background: #29B6F6;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #4FC3F7;
    border: 2px solid #4FC3F7;
    padding: 13px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-secondary:hover {
    background: #4FC3F7;
    color: white;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0 20px;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 0;
    position: relative;
}

.nav-links-left,
.nav-links-right {
    display: flex;
    list-style: none;
    gap: 40px;
    flex: 1;
}

.nav-links-left {
    justify-content: flex-start;
}

.nav-links-right {
    justify-content: flex-end;
}

.nav-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #4FC3F7;
    white-space: nowrap;
}

.nav-links-left a,
.nav-links-right a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 16px;
}

.nav-links-left a:hover,
.nav-links-right a:hover {
    color: #4FC3F7;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    padding: 120px 20px 50px;
    border-radius: 0 0 50px 50px;
    margin-bottom: 50px;
}

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

.hero-subtitle {
    color: #4FC3F7;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #ffffff;
}

.hero .highlight {
    color: #4FC3F7;
}

.hero-description {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: linear-gradient(45deg, #4FC3F7, #29B6F6);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(79, 195, 247, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(79, 195, 247, 0.4);
}

/* Features Section */
.features {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.features h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
}

.features-subtitle {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: #2d3748;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid #4a5568;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #4FC3F7;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #4FC3F7;
}

.feature-card p {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
}

/* Game Lounge Section */
.game-lounge {
    padding: 100px 20px;
    background: #2d3748;
    border-radius: 50px;
    margin: 50px 20px;
}

.lounge-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lounge-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
}

.lounge-text p {
    color: #cccccc;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.8;
}

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

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

/* Featured Game Section */
.featured-game {
    padding: 100px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-game h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #ffffff;
}

.game-card {
  
    border-radius: 20px;
    padding: 0px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.game-card img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
    width: 100%;
}

/* Stats Section */
.stats {
    padding: 100px 20px;
    text-align: center;
    background: #2d3748;
    margin: 50px 0;
    border-radius: 50px;
}

.stats h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #ffffff;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    background: #1a202c;
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #4FC3F7;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #cccccc;
    font-weight: 500;
}

/* About Section */
.about {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.about-image {
    text-align: center;
    background: linear-gradient(135deg, #4FC3F7, #29B6F6);
    border-radius: 20px;
    padding: 40px;
}

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

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
}

.about-text p {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.8;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 20px;
    background: #2d3748;
    text-align: center;
    border-radius: 50px;
    margin: 50px 20px;
}

.testimonials h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #ffffff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background: #1a202c;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #4a5568;
    text-align: left;
}

.testimonial p {
    color: #cccccc;
    font-style: italic;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.testimonial-author {
    color: #4FC3F7;
    font-weight: 600;
    font-size: 14px;
}

/* Contact Section */
.contact {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.contact-info {
    background: #2d3748;
    padding: 40px;
    border-radius: 20px;
}

.contact-item h3 {
    color: #4FC3F7;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-item p {
    color: #cccccc;
    margin-bottom: 10px;
    font-size: 16px;
}

.contact-form {
    background: #2d3748;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #4a5568;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #4a5568;
    border-radius: 10px;
    background: #1a202c;
    color: #ffffff;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4FC3F7;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #718096;
}

/* Footer */
.footer {
    background: #1a202c;
    padding: 60px 20px 40px;
    border-top: 1px solid #4a5568;
}

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

.footer-links {
    margin-bottom: 40px;
}

.footer-links a {
    color: #4FC3F7;
    text-decoration: none;
    margin: 0 20px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.footer-disclaimer h4 {
    color: #4FC3F7;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-links-left,
    .nav-links-right {
        gap: 25px;
    }
    
    .nav-brand {
        position: static;
        transform: none;
    }
    
    .nav {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav {
        flex-direction: row;
        justify-content: center;
        position: relative;
    }

    .nav-links-left,
    .nav-links-right {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(26, 26, 26, 0.98);
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        gap: 30px;
    }

    .nav-links-left.active,
    .nav-links-right.active {
        left: 0;
    }

    .nav-brand {
        position: static;
        transform: none;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .features h2,
    .featured-game h2,
    .stats h2,
    .about-text h2,
    .testimonials h2,
    .contact h2 {
        font-size: 28px;
    }

    .lounge-content,
    .about-content,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lounge-text h2 {
        font-size: 28px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 40px;
    }

    .stat-number {
        font-size: 36px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .footer-links a {
        display: block;
        margin: 10px 0;
    }

    .cookie-content,
    .age-content {
        padding: 30px 20px;
        margin: 10px;
    }

    .cookie-content h3,
    .age-content h3 {
        font-size: 20px;
    }

    .cookie-buttons,
    .age-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .game-lounge,
    .stats,
    .testimonials {
        margin: 30px 10px;
        border-radius: 30px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 15px 30px;
        border-radius: 0 0 30px 30px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-description {
        font-size: 14px;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 14px;
    }

    .features,
    .featured-game,
    .stats,
    .about,
    .testimonials,
    .contact {
        padding: 60px 15px;
    }

    .game-lounge {
        padding: 60px 15px;
        margin: 20px 5px;
    }

    .footer {
        padding: 40px 15px 30px;
    }

    .feature-card,
    .testimonial,
    .contact-form,
    .contact-info {
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 28px;
    }

    .cookie-content,
    .age-content {
        padding: 25px 15px;
    }

    .features-subtitle {
        text-align: center;
        font-size: 14px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial {
        min-width: auto;
    }
}

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

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

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

.feature-card,
.testimonial,
.stat-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 2px solid #4FC3F7;
    outline-offset: 2px;
}

/* Mobile menu animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

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

/* Additional styling for better visual hierarchy */
.hero {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    position: relative;
    overflow: hidden;
}

.hero::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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

/* Better spacing and typography */
.features-subtitle {
    text-align: justify;
    hyphens: auto;
}

/* Enhanced game card styling */
.game-card {
    position: relative;
    overflow: hidden;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(79, 195, 247, 0.1), rgba(41, 182, 246, 0.1));
    border-radius: 20px;
    pointer-events: none;
}

/* Improved testimonial styling */
.testimonial {
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 48px;
    color: #4FC3F7;
    opacity: 0.3;
    font-family: serif;
}
