<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Responsive Styles */

/* Extra Large Devices (1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Large Devices (992px to 1199px) */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }
}

/* Medium Devices (768px to 991px) */
@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }

    /* Header */
    .nav-menu {
        gap: var(--space-md);
    }

    /* Hero Section */
    .hero-section {
        height: auto;
        padding: 120px 0 80px;
    }

    .hero-section .container {
        flex-direction: column;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: var(--space-xl);
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        width: 80%;
    }

    /* About Section */
    .about-content {
        flex-direction: column;
    }

    .about-text {
        order: 2;
    }

    .about-image {
        order: 1;
        margin-bottom: var(--space-xl);
    }

    /* Games Section */
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Gallery Section */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Features Section */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Disclaimer */
    .age-restriction {
        flex-direction: column;
        text-align: center;
    }

    .age-restriction p {
        text-align: center;
    }

    /* Footer */
    .footer-top .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: var(--space-lg);
    }

    .footer-nav {
        width: 100%;
        justify-content: space-around;
    }

    .social-icons {
        justify-content: center;
    }
}

/* Small Devices (576px to 767px) */
@media (max-width: 767px) {
    .container {
        max-width: 540px;
    }

    /* Header */
    header .container {
        padding: var(--space-xs) var(--space-sm);
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: rgba(13, 2, 33, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: var(--space-lg);
        transition: left var(--transition-medium);
        padding: var(--space-lg) 0;
        z-index: 998;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 999;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

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

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Hero Section */
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-image {
        width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .hero-buttons .btn {
        width: 100%;
    }

    /* Section Headers */
    .section-header h2 {
        font-size: 2rem;
    }

    /* Games Section */
    .games-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    /* Gallery Section */
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    /* Features Section */
    .features-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-nav {
        flex-direction: column;
        gap: var(--space-lg);
    }
}

/* Extra Small Devices (up to 575px) */
@media (max-width: 575px) {
    .container {
        padding: 0 var(--space-sm);
    }

    /* Hero Section */
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-section {
        padding: 100px 0 60px;
    }

    /* Section Headers */
    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    /* About Section */
    .about-text p {
        font-size: 1rem;
    }

    /* Section Padding */
    section {
        padding: var(--space-xl) 0;
    }

    /* Back to Top Button */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}</pre></body></html>