
:root {
    --body-padding: 8vw;
    --primary-color: #1eff00;
    --secondary-color: #00d9ff;
    --accent-color: #ff00ff;
    --tertiary-color: #ffaa00;
    --quaternary-color: #ff0055;
    --dark-bg: #0a0e1a;
    --card-bg: #0f111d;
    --text-primary: #ffffff;
    --text-secondary: #b0d4ff;
    --border-radius: 16px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: linear-gradient(135deg, #0a0e1a 0%, #150d2e 35%, #0a1a2e 70%, #0a0e1a 100%);
    background-attachment: fixed;
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 500;
}

body > * {
    padding: 0 var(--body-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
}

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Cards & Containers */
.card {
    background: linear-gradient(135deg, rgba(15, 17, 29, 0.8), rgba(21, 13, 46, 0.6));
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 2px solid rgba(30, 255, 0, 0.4);
    transition: var(--transition);
    backdrop-filter: blur(12px);
    box-shadow: 0 0 30px rgba(30, 255, 0, 0.2), 0 0 60px rgba(0, 217, 255, 0.1), inset 0 0 30px rgba(30, 255, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(30, 255, 0, 0.1), transparent 40%);
    pointer-events: none;
}

.card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 50px rgba(30, 255, 0, 0.6), 0 15px 40px rgba(30, 255, 0, 0.4), inset 0 0 40px rgba(30, 255, 0, 0.15);
    transform: translateY(-16px) scale(1.02);
}

/* Buttons */
.btn {
    padding: 13px 35px;
    border-radius: var(--border-radius);
    border: none;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: brightness(1.3);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn-primary {
    background: linear-gradient(135deg, #1eff00, #00ff00);
    color: #0a0e1a;
    box-shadow: 0 0 25px rgba(30, 255, 0, 0.7), 0 4px 20px rgba(30, 255, 0, 0.5);
    border: 2px solid rgba(30, 255, 0, 0.9);
    text-align: center;
}

.btn-primary:hover {
    box-shadow: 0 0 50px rgba(30, 255, 0, 1), 0 12px 35px rgba(30, 255, 0, 0.8), inset 0 0 25px rgba(30, 255, 0, 0.3);
    transform: scale(1.1) translateY(-3px);
}

.btn-secondary {
    background: linear-gradient(135deg, #00d9ff, #0099ff);
    color: white;
    box-shadow: 0 0 25px rgba(0, 217, 255, 0.7), 0 4px 20px rgba(0, 217, 255, 0.5);
    border: 2px solid rgba(0, 217, 255, 0.9);
}

.btn-secondary:hover {
    box-shadow: 0 0 50px rgba(0, 217, 255, 1), 0 12px 35px rgba(0, 217, 255, 0.8), inset 0 0 25px rgba(0, 217, 255, 0.3);
    transform: scale(1.1) translateY(-3px);
}

/* Grid System */
.grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
}

.grid-3 > * {
    width: 100%;
    max-width: 350px;
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Section */
section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(90deg, #1eff00, #00d9ff, #ff00ff, #1eff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease-in-out infinite;
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 2.8rem);
}

@keyframes gradientShift {
    0%, 100% {
        background-position: left center;
    }
    50% {
        background-position: right center;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    :root {
        --body-padding: 6vw;
    }

    .grid-4 {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    :root {
        --body-padding: 5vw;
    }

    body > * {
        padding: 0 var(--body-padding);
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .card {
        padding: 1.5rem;
    }

    section {
        padding: 2.5rem 0;
    }
}

@media (max-width: 480px) {
    :root {
        --body-padding: 4vw;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    .card {
        padding: 1rem;
    }

    .btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }

    section {
        padding: 1.5rem 0;
    }
}

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

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 15px rgba(30, 255, 0, 0.8), 0 0 30px rgba(30, 255, 0, 0.5), 0 0 45px rgba(0, 217, 255, 0.3);
    }
    50% {
        text-shadow: 0 0 30px rgba(30, 255, 0, 1), 0 0 60px rgba(30, 255, 0, 0.9), 0 0 90px rgba(30, 255, 0, 0.6), 0 0 120px rgba(0, 217, 255, 0.4);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 240, 255, 0.6), 0 0 60px rgba(0, 240, 255, 0.4);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.glow-text {
    animation: glow 2s ease-in-out infinite;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.98), rgba(15, 17, 29, 0.98));
    border-bottom: 2px solid rgba(30, 255, 0, 0.25);
    backdrop-filter: blur(12px);
    padding: 0.8rem 0;
    box-shadow: 0 4px 30px rgba(30, 255, 0, 0.15);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--body-padding);
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    gap: 1rem;
}

.nav-logo img {
    height: 100px;
    width: auto;
    transition: var(--transition);
}

.nav-logo {
    flex-shrink: 0;
}

.logo-lg {
    display: block;
}

.logo-sm {
    display: none;
}

.nav-menu {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 1rem;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    margin-left: 2rem;
}

.lang-btn {
    padding: 0.6rem 1rem;
    background: transparent;
    border: 2px solid rgba(30, 255, 0, 0.4);
    color: var(--text-primary);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.8rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lang-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 0 15px rgba(30, 255, 0, 0.3);
}

.lang-btn.active {
    background: linear-gradient(135deg, #1eff00, #00ff00);
    color: #0a0e1a;
    border-color: var(--primary-color);
    box-shadow: 0 0 25px rgba(30, 255, 0, 0.7);
}

/* Age Gate */
.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 26, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(8px);
}

.age-gate.hidden {
    display: none;
}

.age-gate-modal {
    background: linear-gradient(135deg, rgba(15, 17, 29, 0.95), rgba(21, 13, 46, 0.8));
    border: 2px solid var(--primary-color);
    border-radius: 24px;
    padding: 3rem;
    max-width: 420px;
    text-align: center;
    box-shadow: 0 20px 70px rgba(30, 255, 0, 0.4), 0 0 50px rgba(0, 217, 255, 0.2);
    animation: slideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.age-gate-modal h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(30, 255, 0, 0.5);
}

.age-gate-modal p {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.age-gate-buttons {
    display: flex;
    gap: 1rem;
}

.age-gate-buttons .btn {
    flex: 1;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3.5rem;
    overflow: hidden;
    padding: 4rem var(--body-padding);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--primary-color);
    top: -300px;
    left: -300px;
    animation: float 24s ease-in-out infinite;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--secondary-color);
    bottom: -250px;
    right: -250px;
    animation: float 18s ease-in-out infinite reverse;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: var(--accent-color);
    top: 50%;
    right: 5%;
    animation: float 28s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    33% {
        transform: translateY(-60px) translateX(30px);
    }
    66% {
        transform: translateY(30px) translateX(-40px);
    }
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
}

.hero-content h1 {
    font-size: clamp(3rem, 10vw, 5.5rem);
    margin-bottom: 1rem;
    font-weight: 900;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.9rem);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Featured games — moving tiles in the hero */
.hero-marquee {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.hero-marquee-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: marquee 32s linear infinite;
}

.hero-marquee:hover .hero-marquee-track {
    animation-play-state: paused;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.hero-tile {
    position: relative;
    flex: 0 0 auto;
    width: 230px;
    height: 155px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(0, 217, 255, 0.25);
    background: var(--card-bg);
    text-decoration: none;
    transition: var(--transition);
}

.hero-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-tile:hover {
    transform: translateY(-8px) scale(1.04);
    border-color: var(--primary-color);
    box-shadow: 0 0 35px rgba(0, 217, 255, 0.55), 0 12px 30px rgba(0, 217, 255, 0.35);
}

.hero-tile:hover img {
    transform: scale(1.1);
}

.hero-tile-name {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.6rem 0.8rem;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    color: #fff;
    text-align: left;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
}

@media (max-width: 600px) {
    .hero-tile { width: 170px; height: 120px; }
    .hero { gap: 2.5rem; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-marquee-track { animation: none; flex-wrap: wrap; justify-content: center; }
}

/* Games Section */
.games-section {
    background: linear-gradient(180deg, transparent, rgba(30, 255, 0, 0.08));
}

.game-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: var(--transition);
    padding: 0;
}

.game-card-link {
    transition: var(--transition) !important;
}

.game-card-link:hover {
    transform: translateY(-16px) scale(1.03);
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 60px rgba(0, 255, 255, 0.6), 0 15px 45px rgba(0, 255, 255, 0.4), inset 0 0 40px rgba(0, 255, 255, 0.12) !important;
}

.game-image {
    width: 100%;
    max-height: 250px;
    overflow: hidden;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-content {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    flex: 1;
}

.game-image img {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
    transition: var(--transition);
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-card h3 {
    color: var(--accent-color);
    margin: 0 0 0.75rem 0;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    min-height: 2.8em;
    display: flex;
    align-items: center;
    font-weight: 800;
}

.game-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0 0 1rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
    min-height: 4.5em;
}

.game-details-btn {
    padding: 10px 24px;
    font-size: 0.85rem;
    margin-top: auto;
    text-align: center;
    display: block;
    width: 100%;
    background: linear-gradient(135deg, var(--accent-color), #ffed00);
    color: #0a0e1a;
    border-radius: var(--border-radius);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(255, 255, 0, 0.4);
}

.game-card-link:hover .game-details-btn {
    background: var(--secondary-color);
    color: white;
    box-shadow: 0 0 30px rgba(255, 0, 107, 0.6);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
    margin-top: auto;
    text-align: center;
}

/* Products Section */
.products-section {
    background: linear-gradient(180deg, rgba(30, 255, 0, 0.08), rgba(255, 0, 85, 0.08));
}

.product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

.product-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.15), rgba(255, 0, 107, 0.12));
    transition: top 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.product-card:hover::before {
    top: 0;
}

.product-icon {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.product-icon img {
    max-width: 80%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.4));
    transition: var(--transition);
}

.product-card:hover .product-icon img {
    filter: drop-shadow(0 0 35px rgba(0, 255, 255, 0.7)) drop-shadow(0 0 15px rgba(255, 0, 107, 0.3));
    transform: scale(1.15);
}

.product-card h3 {
    color: var(--accent-color);
    position: relative;
    z-index: 1;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 800;
}

.product-card p {
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* About Section */
.about-section {
    background: linear-gradient(180deg, transparent, rgba(255, 170, 0, 0.05));
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.about-content p {
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(180deg, rgba(255, 170, 0, 0.05), transparent);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    min-width: 40px;
}

.contact-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    background: rgba(15, 17, 29, 0.7);
    border: 2px solid rgba(30, 255, 0, 0.2);
    border-radius: var(--border-radius);
    padding: 1rem;
    color: var(--text-primary);
    font-family: inherit;
    transition: var(--transition);
    font-weight: 500;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-secondary);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(30, 255, 0, 0.35), inset 0 0 15px rgba(30, 255, 0, 0.1);
    background: rgba(15, 17, 29, 0.9);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.98), rgba(15, 17, 29, 0.98));
    border-top: 2px solid rgba(30, 255, 0, 0.2);
    padding: 4rem var(--body-padding) 2rem;
    margin-top: 4rem;
    box-shadow: 0 -4px 30px rgba(30, 255, 0, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 2rem;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a,
.social-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover,
.social-link:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    color: var(--text-secondary);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .logo-lg {
        display: none;
    }

    .logo-sm {
        display: block;
    }

    .nav-container {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .nav-menu {
        gap: 1.5rem;
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }

    .language-switcher {
        order: 2;
        margin-left: auto;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 0.3rem 0.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

    .age-gate-modal {
        padding: 2rem;
        margin: 1rem;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.75rem;
    }

    .game-image {
        max-height: 250px;
    }
}

@media (max-width: 480px) {
    :root {
        --body-padding: 3vw;
    }

    .nav-container {
        padding: 0 1rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .nav-logo img {
        height: 40px;
    }

    .nav-menu {
        gap: 0.8rem;
        font-size: 0.8rem;
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .language-switcher {
        order: 2;
        gap: 0.3rem;
        margin-left: auto;
    }

    .lang-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.7rem;
    }

    .hero {
        min-height: 80vh;
        padding: 2rem 1rem;
    }

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

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .age-gate-modal {
        padding: 1.5rem;
        max-width: 90%;
    }

    .age-gate-modal h2 {
        font-size: 1.3rem;
    }

    .age-gate-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .section-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .card {
        padding: 1rem;
    }

    .game-image {
        max-height: 200px;
        margin-bottom: 1rem;
    }

    .btn-sm {
        padding: 8px 16px;
        font-size: 0.8rem;
        width: 100%;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-form {
        gap: 1rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.6rem;
        font-size: 0.9rem;
    }

    .footer {
        padding: 1.5rem 1rem;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    section {
        padding: 1.5rem 0 !important;
    }
}


/* FAQ Section */
.faq-section {
    max-width: 900px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 0 1.25rem;
    transition: var(--transition);
}

.faq-item[open] {
    border-color: var(--primary-color);
    box-shadow: 0 0 25px rgba(0, 217, 255, 0.18);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.1rem 2rem 1.1rem 0;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-primary);
    position: relative;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item[open] summary::after { content: '−'; }

.faq-item summary:hover { color: var(--primary-color); }

.faq-item p {
    margin: 0;
    padding: 0 0 1.1rem 0;
    color: var(--text-secondary);
    line-height: 1.6;
}
