/* CSS Custom Properties */
:root {
    --neon-indigo: #1A0D6B;
    --electric-fuchsia: #FF007A;
    --cyber-lime: #00FF66;
    --holo-blue: #4DA8FF;
    --void-black: #0A0A0F;
    --amber-pulse: #FFAA00;
    
    --gradient-primary: linear-gradient(135deg, var(--neon-indigo) 0%, var(--void-black) 100%);
    --gradient-secondary: linear-gradient(45deg, var(--electric-fuchsia) 0%, var(--holo-blue) 100%);
    --gradient-accent: linear-gradient(90deg, var(--cyber-lime) 0%, var(--electric-fuchsia) 100%);
    
    --glow-primary: 0 0 20px var(--electric-fuchsia);
    --glow-secondary: 0 0 15px var(--cyber-lime);
    --glow-tertiary: 0 0 10px var(--holo-blue);
    
    --font-heading: 'Exo 2', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Orbitron', monospace;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--gradient-primary);
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--void-black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease-out;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 2px solid var(--holo-blue);
    border-top: 2px solid var(--electric-fuchsia);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.loading-text {
    font-family: var(--font-accent);
    color: var(--cyber-lime);
    font-size: 1.2em;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--electric-fuchsia);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
}

.nav-logo {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.logo-svg {
    width: 180px;
    height: 50px;
}

.logo-cube {
    animation: glitch 2s linear infinite;
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    10% { transform: translate(-2px, -2px); }
    20% { transform: translate(2px, 2px); }
    30% { transform: translate(-2px, 2px); }
    40% { transform: translate(2px, -2px); }
    50% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    70% { transform: translate(-2px, 2px); }
    80% { transform: translate(2px, -2px); }
    90% { transform: translate(-2px, -2px); }
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--cyber-lime);
    text-shadow: var(--glow-secondary);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--electric-fuchsia);
    margin: 2px 0;
    transition: 0.3s;
    box-shadow: var(--glow-primary);
}

/* Banner Section */
.banner-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://i.pinimg.com/1200x/a5/c4/4a/a5c44ac5d8345d3dbb2928b7172fd625.jpg') center/cover;
    filter: brightness(0.4) contrast(1.2);
    z-index: -2;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.8;
    z-index: -1;
}

.banner-content {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.banner-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: var(--glow-primary);
    animation: textGlow 2s ease-in-out infinite alternate;
}

.banner-title .highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: neonFlicker 1.5s ease-in-out infinite alternate;
}

.banner-tagline {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: var(--holo-blue);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    position: relative;
    background: transparent;
    border: 2px solid var(--cyber-lime);
    color: var(--cyber-lime);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: var(--cyber-lime);
    color: var(--void-black);
    box-shadow: var(--glow-secondary);
    transform: translateY(-2px);
}

.button-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 102, 0.3) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.3s ease;
}

.cta-button:hover .button-glow {
    transform: scale(1);
}

/* Parallax Elements */
.parallax-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: var(--electric-fuchsia);
    opacity: 0.3;
    animation: circuitFlow 4s ease-in-out infinite;
}

.circuit-1 {
    width: 200px;
    height: 2px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.circuit-2 {
    width: 150px;
    height: 2px;
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.circuit-3 {
    width: 2px;
    height: 100px;
    top: 30%;
    right: 20%;
    animation-delay: 2s;
}

.floating-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--cyber-lime);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    box-shadow: var(--glow-secondary);
}

.particle-1 {
    top: 25%;
    left: 20%;
    animation-delay: 0s;
}

.particle-2 {
    top: 45%;
    right: 25%;
    animation-delay: 2s;
}

.particle-3 {
    top: 75%;
    left: 30%;
    animation-delay: 4s;
}

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

@keyframes textGlow {
    from { text-shadow: 0 0 20px var(--electric-fuchsia); }
    to { text-shadow: 0 0 30px var(--electric-fuchsia), 0 0 40px var(--electric-fuchsia); }
}

@keyframes neonFlicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes circuitFlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

/* Section Styles */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: var(--gradient-accent);
    margin: 0 auto 1rem;
    border-radius: 2px;
    animation: expandContract 2s ease-in-out infinite;
}

.section-subtitle {
    color: var(--holo-blue);
    font-size: 1.2rem;
    opacity: 0.9;
}

@keyframes expandContract {
    0%, 100% { width: 100px; }
    50% { width: 150px; }
}

/* About Section */
.about-section {
    position: relative;
    background: rgba(26, 13, 107, 0.1);
    backdrop-filter: blur(5px);
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://i.pinimg.com/1200x/1c/79/19/1c7919b7c66cf8e538c384235bd9a98a.jpg') center/cover;
    opacity: 0.1;
    z-index: -1;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--electric-fuchsia);
    border-radius: 8px;
    background: rgba(255, 0, 122, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--glow-primary);
}

.feature-icon {
    font-size: 2rem;
    filter: hue-rotate(180deg);
}

.feature-text {
    font-weight: 600;
    color: var(--cyber-lime);
}

/* Games Section */
.games-section {
    background: var(--void-black);
    position: relative;
}

.games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 0, 122, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 102, 0.1) 0%, transparent 50%);
    z-index: -1;
}

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

.game-card {
    background: rgba(26, 13, 107, 0.3);
    border: 1px solid var(--holo-blue);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.game-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--glow-tertiary);
    border-color: var(--cyber-lime);
}

.game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.game-card:hover .game-image {
    filter: brightness(1.2) contrast(1.1);
}

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

.game-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--electric-fuchsia);
    flex-grow: 1;
    display: flex;
    align-items: center;
    text-align: center;
    min-height: 60px;
}

.play-button {
    width: 100%;
    background: var(--gradient-accent);
    border: none;
    color: var(--void-black);
    padding: 0.8rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
}

.play-button:hover {
    transform: scale(1.05);
    box-shadow: var(--glow-secondary);
}

/* Why Choose Us Section */
.why-section {
    background: rgba(77, 168, 255, 0.05);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.why-card {
    background: rgba(26, 13, 107, 0.4);
    border: 1px solid var(--electric-fuchsia);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 122, 0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.3s ease;
}

.why-card:hover::before {
    transform: scale(1);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-primary);
    border-color: var(--cyber-lime);
}

.why-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    color: var(--cyber-lime);
    filter: drop-shadow(var(--glow-secondary));
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--electric-fuchsia);
}

.why-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
    background: var(--void-black);
}

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

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--glow-tertiary);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 0, 122, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    font-size: 3rem;
    color: white;
    text-shadow: var(--glow-primary);
}

/* Contact Section */
.contact-section {
    background: rgba(26, 13, 107, 0.2);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

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

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    color: var(--cyber-lime);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-family: var(--font-accent);
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(10, 10, 15, 0.8);
    border: 1px solid var(--holo-blue);
    border-radius: 6px;
    padding: 1rem;
    color: white;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--electric-fuchsia);
    box-shadow: var(--glow-primary);
}

.input-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width 0.3s ease;
}

.form-group input:focus + .input-glow,
.form-group textarea:focus + .input-glow {
    width: 100%;
}

.submit-button {
    position: relative;
    background: var(--gradient-secondary);
    border: none;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-primary);
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(77, 168, 255, 0.1);
    border: 1px solid var(--holo-blue);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: var(--glow-tertiary);
}

.contact-icon {
    font-size: 2rem;
    color: var(--cyber-lime);
}

.contact-item h4 {
    color: var(--electric-fuchsia);
    margin-bottom: 0.5rem;
}

.form-success {
    display: none;
    text-align: center;
    padding: 2rem;
    background: rgba(0, 255, 102, 0.1);
    border: 1px solid var(--cyber-lime);
    border-radius: 8px;
    animation: slideInUp 0.5s ease;
}

.success-icon {
    font-size: 3rem;
    color: var(--cyber-lime);
    margin-bottom: 1rem;
}

/* Disclaimer Section */
.disclaimer-section {
    background: var(--void-black);
}

.disclaimer-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.disclaimer-content p {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(26, 13, 107, 0.2);
    border-left: 4px solid var(--cyber-lime);
    border-radius: 4px;
}

.disclaimer-content strong {
    color: var(--electric-fuchsia);
}

/* Footer */
.footer {
    background: var(--void-black);
    border-top: 1px solid var(--electric-fuchsia);
    padding: 2rem 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--holo-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--cyber-lime);
    text-shadow: var(--glow-secondary);
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
}

/* Game Modal */
.game-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2000;
}

.game-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--void-black);
    border: 2px solid var(--electric-fuchsia);
    border-radius: 12px;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow: hidden;
    z-index: 2001;
    box-shadow: var(--glow-primary);
}

.modal-header {
    background: var(--gradient-secondary);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-body {
    padding: 0;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(5px);
    z-index: 2000;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 3000;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    z-index: 3001;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
    box-shadow: var(--glow-primary);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 0, 122, 0.8);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.lightbox-close {
    top: -20px;
    right: -20px;
}

.lightbox-prev {
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--electric-fuchsia);
    box-shadow: var(--glow-primary);
    transform: scale(1.1);
}

.lightbox-prev:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 3000;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 10, 15, 0.98);
        flex-direction: column;
        justify-content: start;
        padding-top: 2rem;
        transition: left 0.3s ease;
        backdrop-filter: blur(10px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .section-container {
        padding: 3rem 1rem;
    }
    
    .banner-content {
        padding: 1rem;
    }
    
    .circuit-line,
    .floating-particle {
        display: none;
    }
    
    .modal-content {
        width: 95%;
        max-height: 85vh;
    }
    
    .lightbox-prev,
    .lightbox-next {
        display: none;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }
    
    .logo-svg {
        width: 140px;
        height: 40px;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-tagline {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .why-card,
    .contact-item {
        padding: 1.5rem;
    }
    
    .gallery-item img {
        height: 200px;
    }
}

/* Performance Optimizations */
.game-card,
.why-card,
.gallery-item {
    will-change: transform;
}

.parallax-elements * {
    will-change: transform, opacity;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .parallax-elements {
        display: none;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .game-modal,
    .lightbox,
    .parallax-elements {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section-title {
        color: black;
    }
}