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

:root {
    /* Colors */
    --neon-pink: #FF00FF;
    --cyber-blue: #00FFFF;
    --arcade-yellow: #FFFF00;
    --retro-purple: #6A0DAD;
    --digital-green: #00FF00;
    --power-red: #FF0000;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --tech-gray: #1a1a1a;
    
    /* Fonts */
    --font-arcade: 'Press Start 2P', monospace;
    --font-tech: 'Orbitron', monospace;
}

body {
    font-family: var(--font-tech);
    background: var(--dark-bg);
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid var(--cyber-blue);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-family: var(--font-arcade);
    font-size: 1.2rem;
}

.logo-q {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink);
    margin-right: 5px;
    animation: glow-pulse 2s ease-in-out infinite alternate;
}

.logo-text {
    color: var(--cyber-blue);
    text-shadow: 0 0 10px var(--cyber-blue);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 8px 16px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--cyber-blue);
    border-color: var(--cyber-blue);
    text-shadow: 0 0 10px var(--cyber-blue);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

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

.bar {
    width: 25px;
    height: 3px;
    background: var(--cyber-blue);
    margin: 3px 0;
    transition: 0.3s;
    box-shadow: 0 0 5px var(--cyber-blue);
}

/* Sections */
.section {
    min-height: 100vh;
    padding: 100px 0 50px;
    display: none;
}

.section.active {
    display: block;
}

.section-title {
    font-family: var(--font-arcade);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--neon-pink);
    text-shadow: 0 0 20px var(--neon-pink);
}

.neon-text {
    animation: glow-pulse 3s ease-in-out infinite alternate;
}

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

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, var(--retro-purple) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, var(--cyber-blue) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, var(--neon-pink) 0%, transparent 50%),
        linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    opacity: 0.8;
}

.scanlines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 255, 0.03) 2px,
        rgba(0, 255, 255, 0.03) 4px
    );
    pointer-events: none;
    animation: scanline-move 2s linear infinite;
}

.banner-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    position: relative;
}

.banner-title {
    font-family: var(--font-arcade);
    font-size: 5rem;
    color: var(--neon-pink);
    text-shadow: 
        0 0 20px var(--neon-pink),
        0 0 40px var(--neon-pink),
        0 0 60px var(--neon-pink),
        0 0 80px var(--neon-pink);
    margin-bottom: 20px;
    animation: title-glow 2s ease-in-out infinite alternate;
    position: relative;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 2px solid var(--neon-pink);
}

.banner-subtitle {
    font-family: var(--font-arcade);
    font-size: 1.2rem;
    color: var(--cyber-blue);
    text-shadow: 0 0 10px var(--cyber-blue);
    margin-bottom: 20px;
    animation: subtitle-flash 3s ease-in-out infinite;
}

.banner-text {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Glitch Effect */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 0.5s infinite;
    color: var(--power-red);
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 0.5s infinite;
    color: var(--cyber-blue);
    z-index: -2;
}

/* Neon Button */
.neon-button {
    position: relative;
    background: transparent;
    border: 2px solid var(--arcade-yellow);
    color: var(--arcade-yellow);
    font-family: var(--font-arcade);
    font-size: 1rem;
    padding: 15px 30px;
    cursor: pointer;
    text-transform: uppercase;
    overflow: hidden;
    transition: all 0.3s ease;
}

.neon-button:hover {
    color: var(--dark-bg);
    text-shadow: none;
    box-shadow: 
        0 0 20px var(--arcade-yellow),
        inset 0 0 20px var(--arcade-yellow);
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--arcade-yellow), transparent);
    transition: left 0.5s;
}

.neon-button:hover .button-glow {
    left: 100%;
}

.button-text {
    position: relative;
    z-index: 2;
}

/* Banner Effects */
.banner-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.pixel-art {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 50px;
    height: 50px;
    background: var(--digital-green);
    box-shadow: 
        0 0 0 2px var(--dark-bg),
        0 0 0 4px var(--digital-green);
    animation: pixel-float 4s ease-in-out infinite;
}

.tech-grid {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: 
        linear-gradient(90deg, transparent 49%, var(--cyber-blue) 50%, transparent 51%),
        linear-gradient(0deg, transparent 49%, var(--cyber-blue) 50%, transparent 51%);
    background-size: 40px 40px;
    opacity: 0.1;
    animation: grid-move 10s linear infinite;
}

/* Neon Banner */
.neon-banner {
    position: relative;
    margin: 50px 0;
    height: 400px;
    overflow: hidden;
}

.banner-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.2) saturate(1.5);
}

.neon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(255, 0, 255, 0.1) 0%,
        transparent 25%,
        transparent 75%,
        rgba(0, 255, 255, 0.1) 100%
    );
    mix-blend-mode: screen;
}

.glow-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.glow-circle {
    position: absolute;
    border-radius: 50%;
    animation: glow-float 6s ease-in-out infinite;
}

.glow-1 {
    top: 20%;
    left: 20%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--neon-pink) 0%, transparent 70%);
    animation-delay: 0s;
}

.glow-2 {
    top: 60%;
    right: 30%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--cyber-blue) 0%, transparent 70%);
    animation-delay: 2s;
}

.glow-3 {
    bottom: 30%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, var(--arcade-yellow) 0%, transparent 70%);
    animation-delay: 4s;
}

.banner-overlay-text {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.overlay-title {
    font-family: var(--font-arcade);
    font-size: 2rem;
    color: var(--arcade-yellow);
    text-shadow: 
        0 0 10px var(--arcade-yellow),
        0 0 20px var(--arcade-yellow);
    animation: title-pulse 2s ease-in-out infinite;
}

/* Page Disclaimers */
.page-disclaimer {
    margin: 30px 0;
    padding: 0;
}

.disclaimer-banner {
    background: linear-gradient(135deg, var(--tech-gray) 0%, var(--darker-bg) 100%);
    border: 2px solid var(--arcade-yellow);
    border-radius: 8px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.2);
    animation: disclaimer-pulse 3s ease-in-out infinite;
}

.disclaimer-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 5px var(--arcade-yellow));
    flex-shrink: 0;
}

.disclaimer-content p {
    margin: 0;
    font-size: 0.9rem;
    color: #fff;
    font-weight: 600;
}

/* Modal Disclaimer */
.modal-disclaimer {
    background: var(--tech-gray);
    border-top: 2px solid var(--arcade-yellow);
    padding: 15px 20px;
    text-align: center;
}

.modal-disclaimer p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--arcade-yellow);
    font-family: var(--font-arcade);
}

/* Terminal Window */
.terminal-window {
    background: var(--tech-gray);
    border: 2px solid var(--cyber-blue);
    border-radius: 8px;
    box-shadow: 
        0 0 20px rgba(0, 255, 255, 0.3),
        inset 0 0 20px rgba(0, 255, 255, 0.1);
    overflow: hidden;
}

.terminal-header {
    background: var(--darker-bg);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--cyber-blue);
}

.terminal-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red { background: var(--power-red); box-shadow: 0 0 5px var(--power-red); }
.control.yellow { background: var(--arcade-yellow); box-shadow: 0 0 5px var(--arcade-yellow); }
.control.green { background: var(--digital-green); box-shadow: 0 0 5px var(--digital-green); }

.terminal-title {
    color: var(--cyber-blue);
    font-family: var(--font-arcade);
    font-size: 0.8rem;
}

.terminal-content {
    padding: 30px;
}

.typing-text p {
    font-family: monospace;
    color: var(--digital-green);
    margin-bottom: 5px;
    animation: typing 0.5s steps(20) forwards;
}

.typing-text h2 {
    margin: 30px 0 20px;
}

.typing-text p:not(:first-child):not(.typing-text h2 + p) {
    color: #ccc;
    font-family: var(--font-tech);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.game-card {
    background: var(--tech-gray);
    border: 2px solid var(--retro-purple);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.game-card:hover {
    border-color: var(--neon-pink);
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.4);
    transform: translateY(-5px);
}

.game-screen {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

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

.game-card:hover .game-overlay {
    opacity: 1;
}

.play-button {
    background: transparent;
    border: 2px solid var(--arcade-yellow);
    color: var(--arcade-yellow);
    font-family: var(--font-arcade);
    font-size: 0.9rem;
    padding: 10px 20px;
    cursor: pointer;
    text-shadow: 0 0 10px var(--arcade-yellow);
    transition: all 0.3s ease;
}

.play-button:hover {
    background: var(--arcade-yellow);
    color: var(--dark-bg);
    box-shadow: 0 0 20px var(--arcade-yellow);
}

.game-info {
    padding: 20px;
    text-align: center;
}

.game-title {
    font-family: var(--font-arcade);
    font-size: 1rem;
    color: var(--cyber-blue);
    text-shadow: 0 0 10px var(--cyber-blue);
}

/* Game Modal */
.game-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
}

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

.game-modal-content {
    width: 95%;
    max-width: 1200px;
    height: 90%;
    background: var(--tech-gray);
    border: 2px solid var(--cyber-blue);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.game-modal-header {
    background: var(--darker-bg);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--cyber-blue);
}

.modal-title {
    font-family: var(--font-arcade);
    color: var(--cyber-blue);
    font-size: 1.2rem;
}

.close-game {
    background: transparent;
    border: 2px solid var(--power-red);
    color: var(--power-red);
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-game:hover {
    background: var(--power-red);
    color: var(--dark-bg);
    box-shadow: 0 0 15px var(--power-red);
}

.game-frame-container {
    flex: 1;
    padding: 20px;
}

.game-iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--tech-gray);
    border: 2px solid var(--retro-purple);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, var(--cyber-blue), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: rotate 2s linear infinite;
}

.feature-card:hover::before {
    opacity: 0.1;
}

.feature-card:hover {
    border-color: var(--cyber-blue);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.3);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px var(--arcade-yellow));
}

.feature-title {
    font-family: var(--font-arcade);
    font-size: 1.1rem;
    color: var(--neon-pink);
    margin-bottom: 15px;
    text-shadow: 0 0 10px var(--neon-pink);
}

.feature-description {
    color: #ccc;
    line-height: 1.6;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    border: 2px solid var(--retro-purple);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    border-color: var(--cyber-blue);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.4);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

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

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

.gallery-icon {
    font-size: 2rem;
    color: var(--arcade-yellow);
    filter: drop-shadow(0 0 10px var(--arcade-yellow));
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
}

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

.gallery-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.gallery-modal-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    border: 2px solid var(--cyber-blue);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

.gallery-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: 2px solid var(--power-red);
    color: var(--power-red);
    font-size: 2rem;
    width: 50px;
    height: 50px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-close:hover {
    background: var(--power-red);
    color: var(--dark-bg);
    box-shadow: 0 0 15px var(--power-red);
}

/* Disclaimer Section */
.disclaimer-section {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--tech-gray) 100%);
    border-top: 2px solid var(--arcade-yellow);
    border-bottom: 2px solid var(--arcade-yellow);
}

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

.disclaimer-text {
    background: var(--tech-gray);
    border: 2px solid var(--arcade-yellow);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 0 20px rgba(255, 255, 0, 0.2);
}

.disclaimer-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.disclaimer-text p:first-child {
    font-family: var(--font-arcade);
    font-size: 1.2rem;
    color: var(--arcade-yellow);
    text-shadow: 0 0 10px var(--arcade-yellow);
}

.disclaimer-text ul {
    text-align: left;
    margin: 20px 0;
    padding-left: 20px;
}

.disclaimer-text li {
    margin-bottom: 10px;
    color: #ccc;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--tech-gray);
    border: 2px solid var(--retro-purple);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--cyber-blue);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.contact-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px var(--arcade-yellow));
}

.contact-details h3 {
    color: var(--neon-pink);
    font-family: var(--font-arcade);
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-details p {
    color: #ccc;
}

/* Contact Form */
.contact-form {
    background: var(--tech-gray);
    border: 2px solid var(--cyber-blue);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--darker-bg);
    border: 2px solid var(--retro-purple);
    color: #fff;
    padding: 15px;
    font-family: var(--font-tech);
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cyber-blue);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
    font-family: var(--font-arcade);
    font-size: 0.9rem;
}

.submit-button {
    width: 100%;
    margin-top: 20px;
}

/* Legal Content */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    background: var(--tech-gray);
    border: 2px solid var(--retro-purple);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.legal-section:hover {
    border-color: var(--cyber-blue);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.legal-section h3 {
    color: var(--neon-pink);
    font-family: var(--font-arcade);
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-shadow: 0 0 10px var(--neon-pink);
}

.legal-section p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.legal-section li {
    color: #ccc;
    margin-bottom: 8px;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    border-top: 2px solid var(--cyber-blue);
    padding: 40px 0;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-family: var(--font-arcade);
    font-size: 1.2rem;
}

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

.footer-link {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--cyber-blue);
    text-shadow: 0 0 10px var(--cyber-blue);
}

.footer-text {
    color: #888;
    font-size: 0.9rem;
    text-align: center;
}

.footer-disclaimer {
    margin-top: 10px;
    color: var(--arcade-yellow) !important;
    font-family: var(--font-arcade);
    font-size: 0.8rem;
}

/* Animations */
@keyframes glow-pulse {
    0% { text-shadow: 0 0 10px currentColor, 0 0 20px currentColor; }
    100% { text-shadow: 0 0 20px currentColor, 0 0 30px currentColor, 0 0 40px currentColor; }
}

@keyframes title-glow {
    0% { transform: scale(1); }
    100% { transform: scale(1.02); }
}

@keyframes subtitle-flash {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.7; }
}

@keyframes disclaimer-pulse {
    0%, 100% { box-shadow: 0 0 15px rgba(255, 255, 0, 0.2); }
    50% { box-shadow: 0 0 25px rgba(255, 255, 0, 0.4); }
}

@keyframes glitch-1 {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

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

@keyframes scanline-move {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

@keyframes pixel-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

@keyframes glow-float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-20px) scale(1.1); opacity: 1; }
}

@keyframes title-pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: right 0.3s ease;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .banner-title {
        font-size: 3rem;
    }
    
    .banner-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .overlay-title {
        font-size: 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .game-modal-content {
        width: 98%;
        height: 95%;
    }
    
    .banner-text {
        font-size: 1rem;
    }
    
    .neon-button {
        font-size: 0.9rem;
        padding: 12px 24px;
    }

    .disclaimer-banner {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 2.5rem;
        padding: 15px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .feature-title {
        font-size: 0.9rem;
    }
    
    .game-title {
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .terminal-content {
        padding: 20px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .legal-section {
        padding: 20px;
    }
    
    .disclaimer-text {
        padding: 25px;
    }

    .disclaimer-banner {
        padding: 12px 15px;
    }

    .disclaimer-content p {
        font-size: 0.8rem;
    }
}

/* High contrast mode adjustments */
@media (prefers-contrast: high) {
    .banner-bg {
        opacity: 0.5;
    }
    
    .scanlines {
        opacity: 0.5;
    }
    
    .neon-overlay {
        opacity: 0.3;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .scanlines {
        animation: none;
    }
    
    .glitch::before,
    .glitch::after {
        animation: none;
    }
}