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

body {
    font-family: 'Rajdhani', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* Rain Animation */
.rain-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.rain {
    position: absolute;
    top: -100px;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, rgba(0, 255, 255, 0.1) 50%, transparent);
    animation: rainfall 2s linear infinite;
}

.rain:nth-child(2) {
    animation-delay: 0.7s;
    animation-duration: 2.3s;
}

.rain:nth-child(3) {
    animation-delay: 1.4s;
    animation-duration: 1.8s;
}

@keyframes rainfall {
    0% { transform: translateY(-100vh) rotate(10deg); }
    100% { transform: translateY(100vh) rotate(10deg); }
}

/* Neon Text Effects */
.neon-text {
    color: #00ffff;
    text-shadow: 
        0 0 5px #00ffff,
        0 0 10px #00ffff,
        0 0 15px #00ffff,
        0 0 20px #00ffff;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
}

.neon-flicker {
    animation: flicker 2s infinite alternate;
}

@keyframes flicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        text-shadow: 
            0 0 5px #00ffff,
            0 0 10px #00ffff,
            0 0 15px #00ffff,
            0 0 20px #00ffff;
    }
    20%, 24%, 55% {
        text-shadow: none;
    }
}

/* Navigation - Made Sticky */
.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
    padding: 15px 0;
    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: 0 20px;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo .neon-text {
    font-size: 16px;
    font-weight: 900;
}

.logo .sub-text {
    font-size: 10px;
    color: #ff0080;
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 14px;
}

.nav-link:hover {
    background: rgba(0, 255, 255, 0.1);
    color: #00ffff;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    animation: pixelFlicker 0.5s ease;
}

.nav-link.active {
    background: rgba(0, 255, 255, 0.2);
    color: #00ffff;
}

@keyframes pixelFlicker {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.5) contrast(1.2); }
}

/* Hero Section - Adjusted for sticky nav */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 255, 255, 0.1)),
        linear-gradient(135deg, rgba(255, 0, 128, 0.1), rgba(0, 0, 0, 0.8));
}

.city-skyline {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60%;
    background: 
        linear-gradient(to top, #000 0%, transparent 100%),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 50px,
            rgba(0, 255, 255, 0.1) 51px,
            rgba(0, 255, 255, 0.1) 53px
        );
    animation: cityGlow 4s ease-in-out infinite alternate;
}

@keyframes cityGlow {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

.light-beams {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 20%, rgba(0, 255, 255, 0.1) 21%, transparent 22%),
        linear-gradient(90deg, transparent 40%, rgba(255, 0, 128, 0.1) 41%, transparent 42%),
        linear-gradient(90deg, transparent 60%, rgba(128, 0, 255, 0.1) 61%, transparent 62%),
        linear-gradient(90deg, transparent 80%, rgba(0, 255, 255, 0.1) 81%, transparent 82%);
    animation: beamSweep 6s linear infinite;
}

@keyframes beamSweep {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.hologram-overlay {
    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
        );
    animation: hologramFlicker 3s ease-in-out infinite;
}

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

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

.hero-title {
    margin-bottom: 30px;
}

.main-title {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 10px;
    font-family: 'Orbitron', monospace;
}

.sub-title {
    display: block;
    font-size: 2rem;
    color: #ff0080;
    font-weight: 700;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #ccc;
    line-height: 1.8;
}

.cta-button {
    background: linear-gradient(45deg, #00ffff, #ff0080);
    border: none;
    padding: 20px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    color: #000;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.5);
    animation: glowPulse 1s ease-in-out infinite alternate;
}

@keyframes glowPulse {
    0% { box-shadow: 0 10px 30px rgba(0, 255, 255, 0.5); }
    100% { box-shadow: 0 15px 40px rgba(255, 0, 128, 0.7); }
}

/* Featured Slider */
.featured-slider {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 255, 255, 0.05));
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Orbitron', monospace;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #ccc;
}

.slider-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
    padding: 0 20px;
}

.slider-track {
    display: flex;
    gap: 30px;
    animation: autoSlide 20s linear infinite;
}

@keyframes autoSlide {
    0% { transform: translateX(0); }
    25% { transform: translateX(-25%); }
    50% { transform: translateX(-50%); }
    75% { transform: translateX(-75%); }
    100% { transform: translateX(0); }
}

.game-card {
    min-width: 300px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: #00ffff;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.card-image {
    position: relative;
    height: 00px;
    overflow: hidden;
}

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

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

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 30px 20px 20px;
    color: #fff;
}

.card-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #00ffff;
    font-family: 'Orbitron', monospace;
}

.card-overlay p {
    font-size: 0.9rem;
    color: #ccc;
}

.play-btn {
    width: 100%;
    background: linear-gradient(45deg, #ff0080, #8000ff);
    border: none;
    padding: 15px;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.play-btn:hover {
    background: linear-gradient(45deg, #8000ff, #00ffff);
    transform: scale(1.05);
}

/* Games Grid */
.games-grid {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.95);
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.game-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.5s ease;
    opacity: 0;
    transform: scale(0.8);
    animation: gameItemAppear 0.8s ease forwards;
}

.game-item:nth-child(1) { animation-delay: 0.1s; }
.game-item:nth-child(2) { animation-delay: 0.2s; }
.game-item:nth-child(3) { animation-delay: 0.3s; }
.game-item:nth-child(4) { animation-delay: 0.4s; }
.game-item:nth-child(5) { animation-delay: 0.5s; }
.game-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes gameItemAppear {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.game-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.8), rgba(255, 0, 128, 0.8));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}

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

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

.game-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
}

.game-overlay p {
    margin-bottom: 20px;
    font-size: 1rem;
}

.play-now-btn {
    background: #000;
    color: #00ffff;
    border: 2px solid #00ffff;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.play-now-btn:hover {
    background: #00ffff;
    color: #000;
    transform: scale(1.1);
}

/* Why Choose Us - Updated with Image Slider */
.why-choose-us {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.1), rgba(0, 255, 255, 0.1));
}

.floating-symbols {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 128, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 40% 40%, rgba(128, 0, 255, 0.1) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 200px 200px;
    animation: floatSymbols 20s linear infinite;
}

@keyframes floatSymbols {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.glitch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 100px,
            rgba(0, 255, 255, 0.03) 100px,
            rgba(0, 255, 255, 0.03) 101px
        );
    animation: glitchMove 3s ease-in-out infinite;
}

@keyframes glitchMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* Image Slider for Why Choose Us */
.image-slider {
    position: relative;
    z-index: 10;
    margin-bottom: 60px;
}

.image-slider-container {
    max-width: 1000px;
    margin: 0 auto;
    overflow: auto;
    border-radius: 20px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.image-slider-track {
    display: flex;
    animation: imageSlide 15s linear infinite;
}

@keyframes imageSlide {
    0% { transform: translateX(0); }
    20% { transform: translateX(-20%); }
    40% { transform: translateX(-40%); }
    60% { transform: translateX(-60%); }
    80% { transform: translateX(-80%); }
    100% { transform: translateX(0); }
}

.slider-image {
    min-width: 50%;
    height: 300px;
    position: relative;
    overflow: hidden;
}

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

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    color: #fff;
    text-align: center;
}

.image-overlay h4 {
    color: #00ffff;
    font-family: 'Orbitron', monospace;
    margin-bottom: 5px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 10;
}

.feature-card {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #00ffff;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #00ffff;
    font-family: 'Orbitron', monospace;
}

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

/* About Section - Restructured */
.about-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.9);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.about-text-row {
    /* display: grid; */
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-left h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-family: 'Orbitron', monospace;
}

.about-left p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.8;
}

.marquee-container {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 10px;
    padding: 20px;
    overflow: hidden;
}

.marquee-text {
    color: #00ffff;
    font-size: 1.2rem;
    font-weight: 700;
    white-space: nowrap;
    animation: marqueeScroll 15s linear infinite;
}

@keyframes marqueeScroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.about-animation-row {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

.animation-container {
    display: flex;
    gap: 30px;
    align-items: center;
}

.character-animation {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #00ffff, #ff0080);
    border-radius: 50%;
    animation: characterFloat 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.character-animation::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: innerGlow 2s ease-in-out infinite alternate;
}

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

@keyframes innerGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.8; }
}

.floating-elements {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.floating-element {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff0080, #8000ff);
    border-radius: 10px;
    animation: floatElement 4s ease-in-out infinite;
}

.floating-element:nth-child(1) { animation-delay: 0s; }
.floating-element:nth-child(2) { animation-delay: 1s; }
.floating-element:nth-child(3) { animation-delay: 2s; }

@keyframes floatElement {
    0%, 100% { transform: translateX(0) scale(1); }
    50% { transform: translateX(20px) scale(1.1); }
}

.pulse-circle {
    width: 100px;
    height: 100px;
    border: 3px solid #00ffff;
    border-radius: 50%;
    animation: pulseCircle 2s ease-in-out infinite;
    position: relative;
}

.pulse-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: #00ffff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: centerPulse 1s ease-in-out infinite alternate;
}

@keyframes pulseCircle {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

@keyframes centerPulse {
    0% { transform: translate(-50%, -50%) scale(1); }
    100% { transform: translate(-50%, -50%) scale(1.5); }
}

/* Disclaimer Section */
.disclaimer-section {
    background: rgba(255, 0, 128, 0.1);
    border-top: 2px solid #ff0080;
    border-bottom: 2px solid #ff0080;
    padding: 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.disclaimer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 128, 0.1), transparent);
    animation: disclaimerSweep 3s ease-in-out infinite;
}

@keyframes disclaimerSweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.disclaimer-title {
    font-size: 2rem;
    color: #ff0080;
    font-family: 'Orbitron', monospace;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.disclaimer-text {
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 15px;
}

.disclaimer-highlight {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.disclaimer-highlight p {
    color: #00ffff;
    font-weight: 600;
    margin: 0;
}

/* Footer */
.footer {
    background: #000;
    padding: 40px 0 20px;
}

.glitch-banner {
    background: rgba(255, 0, 128, 0.1);
    border: 1px solid #ff0080;
    padding: 15px;
    margin-bottom: 30px;
    text-align: center;
    overflow: hidden;
}

.glitch-text {
    color: #ff0080;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    animation: textGlitch 2s ease-in-out infinite;
}

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

.footer-content {
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #00ffff;
    text-decoration: none;
    padding: 10px 15px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: scale(1.05);
}

.footer-text {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-title { font-size: 3rem; }
    .sub-title { font-size: 1.5rem; }
    .features-grid { grid-template-columns: 1fr; }
    .about-text-row { grid-template-columns: 1fr; gap: 40px; }
    .animation-container { flex-direction: column; }
}

@media (max-width: 768px) {
    .nav-container { flex-direction: column; gap: 20px; }
    .nav-links { flex-wrap: wrap; justify-content: center; }
    .main-title { font-size: 2.5rem; }
    .sub-title { font-size: 1.2rem; }
    .section-title { font-size: 2rem; }
    .grid { grid-template-columns: 1fr; gap: 30px; }
    .slider-track { gap: 20px; }
    .game-card { min-width: 250px; }
    .footer-links { flex-direction: column; gap: 15px; }
    .floating-nav { padding: 10px 0; }
}

@media (max-width: 480px) {
    .floating-nav { 
        position: sticky;
        top: 0;
    }
    .nav-container {
        padding: 0 10px;
    }
    .hero { height: 80vh; }
    .main-title { font-size: 2rem; }
    .hero-description { font-size: 1rem; }
    .section-title { font-size: 1.5rem; }
    .game-card { min-width: 200px; }
    .disclaimer-title { font-size: 1.5rem; }
    .disclaimer-text { font-size: 1rem; }
}

/* Game Page Styles */
.game-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #000 0%, rgba(0, 255, 255, 0.1) 100%);
    padding: 120px 0 40px;
}

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

.game-header {
    text-align: center;
    margin-bottom: 40px;
}

.game-title {
    font-size: 3rem;
    margin-bottom: 15px;
    font-family: 'Orbitron', monospace;
}

.game-description {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 30px;
}

.back-btn {
    background: linear-gradient(45deg, #00ffff, #ff0080);
    border: none;
    padding: 12px 25px;
    color: #000;
    font-weight: 700;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 40px;
}

.back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.4);
}

.game-frame {
    width: 100%;
    height: 500px;
    border: 2px solid #00ffff;
    border-radius: 15px;
    background: #000;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

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

/* Additional Page Styles */
.page-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #000 0%, rgba(0, 255, 255, 0.05) 100%);
    padding: 120px 0 40px;
}

.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Orbitron', monospace;
}

.content-section {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
}

.content-section h2 {
    color: #00ffff;
    margin-bottom: 20px;
    font-family: 'Orbitron', monospace;
}

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

/* Contact Form */
.contact-form {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 40px;
}

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

.form-group label {
    display: block;
    color: #00ffff;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    padding: 12px 15px;
    color: #fff;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.submit-btn {
    background: linear-gradient(45deg, #00ffff, #ff0080);
    border: none;
    padding: 15px 30px;
    color: #000;
    font-weight: 700;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.4);
}