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

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #E8E8E8;
    background: linear-gradient(135deg, #0F0F23 0%, #1A1A3A 25%, #2D1B69 50%, #0F0F23 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 119, 198, 0.05) 0%, transparent 50%);
    background-size: 300px 300px, 250px 250px, 400px 400px;
    animation: cosmicBackground 30s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes cosmicBackground {
    0% { background-position: 0 0, 100% 100%, 50% 50%; }
    100% { background-position: 300px 300px, -250px -250px, -400px -400px; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.95) 0%, rgba(26, 26, 58, 0.95) 100%);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 2px solid rgba(120, 119, 198, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #7877C6 25%, 
        #A855F7 50%, 
        #06B6D4 75%, 
        transparent 100%);
    animation: stellarPulse 3s ease-in-out infinite alternate;
}

@keyframes stellarPulse {
    from { 
        box-shadow: 0 0 5px rgba(120, 119, 198, 0.3);
        opacity: 0.7;
    }
    to { 
        box-shadow: 0 0 15px rgba(168, 85, 247, 0.6);
        opacity: 1;
    }
}

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

.nav-logo {
    margin-right: auto;
}

.nav-logo h1 {
    font-size: 2rem;
    color: #FFFFFF;
    font-weight: bold;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.7),
        0 0 10px rgba(120, 119, 198, 0.8),
        0 0 20px rgba(168, 85, 247, 0.6);
    animation: cosmicGlow 2s ease-in-out infinite alternate;
    font-family: 'Arial', sans-serif;
}

@keyframes cosmicGlow {
    from {
        text-shadow: 
            2px 2px 4px rgba(0, 0, 0, 0.7),
            0 0 10px rgba(120, 119, 198, 0.8),
            0 0 20px rgba(168, 85, 247, 0.6);
    }
    to {
        text-shadow: 
            2px 2px 4px rgba(0, 0, 0, 0.7),
            0 0 15px rgba(120, 119, 198, 1),
            0 0 25px rgba(168, 85, 247, 0.8),
            0 0 35px rgba(6, 182, 212, 0.6);
    }
}

.logo-tagline {
    font-size: 0.8rem;
    color: #A855F7;
    font-weight: 600;
    display: block;
    margin-top: -5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    font-family: 'Arial', sans-serif;
    font-style: italic;
}

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

.nav-link {
    color: #E8E8E8;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1.5rem;
    border: 2px solid transparent;
    border-radius: 25px;
    white-space: nowrap;
    position: relative;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, rgba(120, 119, 198, 0.1), rgba(168, 85, 247, 0.1));
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #A855F7;
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-link:hover {
    color: #0F0F23;
    text-shadow: none;
    transform: translateY(-2px) scale(1.05);
    background: linear-gradient(135deg, #A855F7, #06B6D4);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
}

.nav-link:hover::before {
    opacity: 1;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: rgba(120, 119, 198, 0.2);
    border: 2px solid #A855F7;
    border-radius: 8px;
    padding: 12px;
    backdrop-filter: blur(10px);
    z-index: 1600;
}

.burger span {
    width: 25px;
    height: 3px;
    background: #A855F7;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(168, 85, 247, 0.5);
}

/* Hero Section */
.hero-section {
    display: grid;
    place-items: center;
    min-height: 100vh;
    padding-top: 8rem;
    position: relative;
    overflow: hidden;
}

/* Cosmic Background Elements */
.stars-field {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #FFFFFF;
    border-radius: 50%;
    animation: starTwinkle 3s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

.star-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 2s;
}

.star-2 {
    top: 20%;
    right: 15%;
    animation-delay: 0.5s;
    animation-duration: 3s;
}

.star-3 {
    top: 40%;
    left: 20%;
    animation-delay: 1s;
    animation-duration: 2.5s;
}

.star-4 {
    top: 60%;
    right: 25%;
    animation-delay: 1.5s;
    animation-duration: 3.5s;
}

.star-5 {
    top: 80%;
    left: 30%;
    animation-delay: 2s;
    animation-duration: 2.8s;
}

.star-6 {
    top: 30%;
    left: 70%;
    animation-delay: 0.3s;
    animation-duration: 3.2s;
}

.star-7 {
    top: 70%;
    right: 10%;
    animation-delay: 1.8s;
    animation-duration: 2.3s;
}

.star-8 {
    top: 50%;
    left: 50%;
    animation-delay: 0.8s;
    animation-duration: 4s;
}

@keyframes starTwinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

.cosmic-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.planet {
    position: absolute;
    border-radius: 50%;
    animation: planetOrbit 20s linear infinite;
}

.planet-1 {
    top: 15%;
    right: 10%;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7877C6, #A855F7);
    box-shadow: 
        0 0 20px rgba(120, 119, 198, 0.5),
        inset -10px -10px 20px rgba(0, 0, 0, 0.3);
    animation-duration: 25s;
}

.planet-2 {
    bottom: 20%;
    left: 8%;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #06B6D4, #3B82F6);
    box-shadow: 
        0 0 15px rgba(6, 182, 212, 0.5),
        inset -8px -8px 15px rgba(0, 0, 0, 0.3);
    animation-duration: 30s;
    animation-direction: reverse;
}

.asteroid {
    position: absolute;
    background: linear-gradient(135deg, #6B7280, #374151);
    border-radius: 30% 70% 70% 30%;
    animation: asteroidFloat 15s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(107, 114, 128, 0.3);
}

.asteroid-1 {
    top: 25%;
    left: 5%;
    width: 25px;
    height: 25px;
    animation-delay: 0s;
}

.asteroid-2 {
    bottom: 30%;
    right: 15%;
    width: 35px;
    height: 35px;
    animation-delay: 3s;
}

.nebula {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, transparent 70%);
    animation: nebulaPulse 8s ease-in-out infinite;
}

.nebula-1 {
    top: 50%;
    right: 20%;
    width: 200px;
    height: 200px;
    animation-delay: 1s;
}

@keyframes planetOrbit {
    from {
        transform: rotate(0deg) translateX(50px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translateX(50px) rotate(-360deg);
    }
}

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

@keyframes nebulaPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

/* Spaceship */
.spaceship {
    position: absolute;
    bottom: 15%;
    right: 10%;
    width: 80px;
    height: 100px;
    animation: spaceshipHover 4s ease-in-out infinite;
    z-index: 2;
}

.spaceship-body {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 60px;
    background: linear-gradient(135deg, #E5E7EB, #9CA3AF);
    border-radius: 50% 50% 10px 10px;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.6);
}

.spaceship-wings {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    background: linear-gradient(135deg, #6B7280, #374151);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(107, 114, 128, 0.5);
}

.spaceship-engine {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 20px;
    background: linear-gradient(135deg, #06B6D4, #3B82F6);
    border-radius: 0 0 50% 50%;
    animation: engineFlame 0.5s ease-in-out infinite alternate;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.8);
}

@keyframes spaceshipHover {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

@keyframes engineFlame {
    from {
        height: 20px;
        box-shadow: 0 0 10px rgba(6, 182, 212, 0.8);
    }
    to {
        height: 30px;
        box-shadow: 0 0 15px rgba(6, 182, 212, 1);
    }
}

.hero-content {
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
    z-index: 2;
    padding: 0 2rem;
    position: relative;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    text-shadow: 
        3px 3px 6px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(120, 119, 198, 0.8),
        0 0 25px rgba(168, 85, 247, 0.6),
        0 0 35px rgba(6, 182, 212, 0.4);
    animation: heroGlow 3s ease-in-out infinite alternate;
    font-family: 'Arial', sans-serif;
    letter-spacing: 2px;
}

@keyframes heroGlow {
    from {
        text-shadow: 
            3px 3px 6px rgba(0, 0, 0, 0.8),
            0 0 15px rgba(120, 119, 198, 0.8),
            0 0 25px rgba(168, 85, 247, 0.6),
            0 0 35px rgba(6, 182, 212, 0.4);
    }
    to {
        text-shadow: 
            3px 3px 6px rgba(0, 0, 0, 0.8),
            0 0 20px rgba(120, 119, 198, 1),
            0 0 30px rgba(168, 85, 247, 0.8),
            0 0 40px rgba(6, 182, 212, 0.6),
            0 0 50px rgba(59, 130, 246, 0.4);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #E8E8E8;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-weight: 400;
    font-family: 'Arial', sans-serif;
    line-height: 1.8;
}

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

/* Buttons */
.btn {
    padding: 1rem 2.5rem;
    border: 2px solid;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #7877C6, #A855F7);
    color: #FFFFFF;
    border-color: #06B6D4;
    box-shadow: 0 8px 25px rgba(120, 119, 198, 0.4);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(168, 85, 247, 0.6);
    background: linear-gradient(135deg, #A855F7, #06B6D4);
    border-color: #3B82F6;
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.8), rgba(59, 130, 246, 0.8));
    color: #FFFFFF;
    border-color: #7877C6;
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 1), rgba(99, 102, 241, 1));
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(6, 182, 212, 0.5);
    border-color: #A855F7;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
}

/* Games Section */
.games-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.4) 0%, rgba(26, 26, 58, 0.4) 100%);
    position: relative;
    z-index: 2;
}

.games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(120, 119, 198, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #A855F7;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 0 0 15px rgba(168, 85, 247, 0.6);
    animation: titlePulse 2s ease-in-out infinite alternate;
    font-family: 'Arial', sans-serif;
    letter-spacing: 2px;
    font-weight: bold;
}

@keyframes titlePulse {
    from {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 0 0 15px rgba(168, 85, 247, 0.6);
    }
    to {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 0 0 20px rgba(168, 85, 247, 0.9), 0 0 30px rgba(6, 182, 212, 0.5);
    }
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #E8E8E8;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Arial', sans-serif;
    line-height: 1.8;
    font-weight: 400;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.game-card {
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.9) 0%, rgba(26, 26, 58, 0.9) 100%);
    border: 2px solid rgba(120, 119, 198, 0.3);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(120, 119, 198, 0.1), rgba(168, 85, 247, 0.1));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(168, 85, 247, 0.3);
    border-color: #A855F7;
}

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

.game-image {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: linear-gradient(45deg, rgba(15, 15, 35, 0.5), rgba(26, 26, 58, 0.5));
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    filter: brightness(1.1) saturate(1.2);
}

.game-card:hover .game-image img {
    transform: scale(1.05);
    filter: brightness(1.2) saturate(1.3);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(120, 119, 198, 0.9), rgba(168, 85, 247, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.play-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(228, 228, 231, 0.95));
    color: #7877C6;
    padding: 1rem 2rem;
    border: 2px solid #A855F7;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-shadow: none;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.play-btn:hover {
    background: linear-gradient(135deg, #A855F7, #7877C6);
    color: #FFFFFF;
    transform: scale(1.05);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.game-info {
    padding: 1.5rem;
    background: rgba(15, 15, 35, 0.8);
    position: relative;
    z-index: 1;
}

.game-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #A855F7;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.game-info p {
    color: #E8E8E8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
}

/* Rating System */
.game-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.rating-label {
    font-size: 0.9rem;
    color: #06B6D4;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.star {
    font-size: 1.2rem;
    color: #6B7280;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    text-shadow: 0 0 5px rgba(107, 114, 128, 0.5);
    filter: grayscale(0.5);
}

.star:hover,
.star.active {
    color: #06B6D4;
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.8), 0 0 15px rgba(168, 85, 247, 0.6);
    transform: scale(1.2);
    filter: grayscale(0);
}

.rating-value {
    font-size: 0.9rem;
    color: #06B6D4;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
}

/* Newsletter Section */
.newsletter-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(26, 26, 58, 0.6) 0%, rgba(45, 27, 105, 0.6) 100%);
    position: relative;
    z-index: 2;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(6, 182, 212, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #A855F7;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 0 0 15px rgba(168, 85, 247, 0.6);
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    letter-spacing: 2px;
}

.newsletter-content p {
    font-size: 1.1rem;
    color: #E8E8E8;
    margin-bottom: 3rem;
    font-family: 'Arial', sans-serif;
    line-height: 1.7;
    font-weight: 400;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
}

.form-group input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(120, 119, 198, 0.3);
    border-radius: 25px;
    background: rgba(15, 15, 35, 0.8);
    color: #E8E8E8;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.form-group input:focus {
    outline: none;
    border-color: #A855F7;
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.2), inset 0 2px 5px rgba(0, 0, 0, 0.3);
    background: rgba(15, 15, 35, 0.9);
    transform: scale(1.02);
}

.form-group input::placeholder {
    color: #9CA3AF;
    font-family: 'Arial', sans-serif;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 25px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    font-family: 'Arial', sans-serif;
}

.form-message.success {
    background: rgba(6, 182, 212, 0.9);
    color: #FFFFFF;
    border: 2px solid #06B6D4;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.9);
    color: #FFFFFF;
    border: 2px solid #EF4444;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0F0F23 0%, #1A1A3A 100%);
    padding: 4rem 0 2rem;
    border-top: 3px solid rgba(120, 119, 198, 0.3);
    position: relative;
    z-index: 2;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #7877C6 25%, 
        #A855F7 50%, 
        #06B6D4 75%, 
        transparent 100%);
    animation: footerGlow 4s ease-in-out infinite alternate;
}

@keyframes footerGlow {
    from {
        box-shadow: 0 0 10px rgba(120, 119, 198, 0.5);
    }
    to {
        box-shadow: 0 0 20px rgba(168, 85, 247, 0.8);
    }
}

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

.footer-section h3,
.footer-section h4 {
    color: #A855F7;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.footer-section p,
.footer-section li {
    color: #E8E8E8;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
}

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

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

.footer-section ul li a {
    color: #E8E8E8;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.footer-section ul li a:hover {
    color: #A855F7;
    text-shadow: 0 0 5px rgba(168, 85, 247, 0.8);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(120, 119, 198, 0.3);
    color: #9CA3AF;
    font-family: 'Arial', sans-serif;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 400px;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.98) 0%, rgba(26, 26, 58, 0.95) 100%);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    z-index: 2000;
    border: 2px solid rgba(120, 119, 198, 0.3);
    border-radius: 20px;
    transform: translateX(120%);
    transition: transform 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.cookie-banner.show {
    transform: translateX(0);
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    color: #E8E8E8;
    font-size: 0.9rem;
    line-height: 1.4;
    font-family: 'Arial', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: 15px;
}

.cookie-buttons .btn-primary {
    background: linear-gradient(135deg, #A855F7, #06B6D4);
    color: #FFFFFF;
    border-color: #7877C6;
}

.cookie-buttons .btn-secondary {
    background: linear-gradient(135deg, rgba(107, 114, 128, 0.9), rgba(75, 85, 99, 0.9));
    border: 2px solid rgba(120, 119, 198, 0.3);
    color: #E8E8E8;
}

.cookie-link {
    color: #A855F7;
    text-decoration: none;
    font-size: 0.9rem;
    font-family: 'Arial', sans-serif;
}

.cookie-link:hover {
    text-decoration: underline;
    text-shadow: 0 0 5px rgba(168, 85, 247, 0.8);
}

/* Policy Pages */
.policy-section {
    padding: 8rem 2rem 4rem;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.4) 0%, rgba(26, 26, 58, 0.4) 100%);
    position: relative;
    z-index: 2;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.95) 0%, rgba(26, 26, 58, 0.95) 100%);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(120, 119, 198, 0.3);
    backdrop-filter: blur(15px);
}

.policy-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #A855F7;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 0 0 15px rgba(168, 85, 247, 0.6);
    font-family: 'Arial', sans-serif;
    letter-spacing: 2px;
    font-weight: bold;
}

.policy-date {
    text-align: center;
    color: #06B6D4;
    margin-bottom: 3rem;
    font-style: italic;
    font-family: 'Arial', sans-serif;
}

.policy-text h2 {
    color: #A855F7;
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem 0;
    border-bottom: 2px solid rgba(168, 85, 247, 0.3);
    padding-bottom: 0.5rem;
    font-family: 'Arial', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.policy-text h3 {
    color: #06B6D4;
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
    font-family: 'Arial', sans-serif;
}

.policy-text p {
    color: #E8E8E8;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-family: 'Arial', sans-serif;
}

.policy-text ul {
    color: #E8E8E8;
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.policy-text li {
    margin-bottom: 0.5rem;
    font-family: 'Arial', sans-serif;
}

.policy-footer {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(45deg, rgba(120, 119, 198, 0.2), rgba(168, 85, 247, 0.2));
    border-radius: 20px;
    border: 1px solid rgba(120, 119, 198, 0.3);
    text-align: center;
    font-weight: 600;
    color: #A855F7;
    font-family: 'Arial', sans-serif;
}

/* Responsive Design */
@media (max-width: 1200px) and (min-width: 901px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .game-image {
        height: 160px;
    }
    
    .game-info {
        padding: 1.25rem;
    }
}

@media (max-width: 900px) {
    .burger {
        display: flex !important;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        max-width: 400px;
        background: linear-gradient(135deg, rgba(15, 15, 35, 0.98) 0%, rgba(26, 26, 58, 0.95) 100%);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 1500;
        border-left: 2px solid rgba(120, 119, 198, 0.3);
    }

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

    .nav-menu a {
        color: #E8E8E8 !important;
        display: block;
        padding: 1rem 0.5rem;
        border-bottom: 1px solid rgba(120, 119, 198, 0.2);
        z-index: 10;
        font-size: 1.2rem;
        text-align: center;
        width: 80%;
    }

    .nav-menu a:hover {
        background: rgba(168, 85, 247, 0.1);
        color: #A855F7 !important;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .games-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 400px;
    }

    .newsletter-form {
        max-width: 100%;
    }

    .cookie-banner {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(120%);
    }

    .cookie-banner.show {
        transform: translateY(0);
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-buttons .btn {
        flex: 1;
        min-width: 80px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .hero-section {
        padding-top: 12rem;
    }

    .container {
        padding: 0;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .games-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .game-card {
        margin: 0 1rem;
    }

    .newsletter-content h2 {
        font-size: 2rem;
    }

    .policy-content {
        padding: 1rem;
        margin: 0;
    }

    .policy-title {
        font-size: 2rem;
    }

    .policy-text h2 {
        font-size: 1.5rem;
    }

    .policy-text h3 {
        font-size: 1.2rem;
    }
}
