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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #ffffff;
            background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 50%, #16213e 100%);
            min-height: 100vh;
            overflow-x: hidden;
        }

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

        /* Animated background */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .ripple {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
            animation: ripple 8s infinite ease-in-out;
        }

        .ripple:nth-child(1) {
            width: 300px;
            height: 300px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .ripple:nth-child(2) {
            width: 400px;
            height: 400px;
            top: 60%;
            right: 10%;
            animation-delay: 2s;
        }

        .ripple:nth-child(3) {
            width: 250px;
            height: 250px;
            bottom: 20%;
            left: 30%;
            animation-delay: 4s;
        }

        @keyframes ripple {
            0%, 100% {
                transform: scale(0.8);
                opacity: 0.3;
            }
            50% {
                transform: scale(1.2);
                opacity: 0.1;
            }
        }

        /* Header */
        header {
            padding: 2rem 0;
            position: relative;
            z-index: 10;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.05);
            padding: 1rem 2rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

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

        .logo img {
            height: 50px;
            width: auto;
            max-width: 200px;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

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

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: #3b82f6;
            transform: translateY(-2px);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(45deg, #3b82f6, #8b5cf6);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Game Title Section */
        .game-title {
            text-align: center;
            padding: 4rem 0 2rem;
        }

        .game-title h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #3b82f6, #8b5cf6, #ec4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
        }

        .game-subtitle {
            font-size: 1.3rem;
            color: #94a3b8;
            margin-bottom: 2rem;
        }

        .game-logo {
            margin-bottom: 2rem;
        }

        .game-logo img {
            max-width: 300px;
            width: 100%;
            height: auto;
            object-fit: contain;
            filter: drop-shadow(0 10px 30px rgba(59, 130, 246, 0.3));
            transition: transform 0.3s ease;
        }

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

        /* Game Info Grid */
        .game-info {
            display: flex;
            flex-direction: column;
            gap: 3rem;
            margin: 4rem 0;
        }

        /* Game Description */
        .game-description {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            max-width: 1000px;
            margin: 0 auto;
        }

        .game-description h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, #3b82f6, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .game-description h3 {
            font-size: 1.4rem;
            margin: 2rem 0 1rem;
            color: #3b82f6;
        }

        .game-description p {
            color: #94a3b8;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .game-description ul {
            color: #94a3b8;
            margin-left: 1.5rem;
            margin-bottom: 1rem;
        }

        .game-description li {
            margin-bottom: 0.5rem;
        }

        /* Video Trailer Section */
        .video-trailer {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            max-width: 1000px;
            margin: 0 auto;
        }

        .video-trailer h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, #3b82f6, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-align: center;
        }

        .video-container {
		width: 100%;
		border-radius: 15px;
		overflow: hidden;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
		}

		.video-container video {
		width: 100%;
		height: auto;
		display: block;
		border-radius: 15px;
		}

        /* Screenshot Carousel */
        .screenshot-section {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            max-width: 1000px;
            margin: 0 auto;
        }

        .screenshot-section h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, #3b82f6, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-align: center;
        }

        .carousel-container {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .carousel {
            display: flex;
            transition: transform 0.5s ease;
        }

        .carousel img {
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: cover;
            flex-shrink: 0;
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(59, 130, 246, 0.8);
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .carousel-btn:hover {
            background: rgba(59, 130, 246, 1);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn.prev {
            left: 1rem;
        }

        .carousel-btn.next {
            right: 1rem;
        }

        .carousel-indicators {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: #3b82f6;
            transform: scale(1.2);
        }

        /* Store Links Section */
        .store-links {
            margin: 4rem 0;
            text-align: center;
        }

        .store-links h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            background: linear-gradient(45deg, #3b82f6, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .store-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .store-button {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            text-decoration: none;
            color: white;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .store-button:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
        }

        .store-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .steam { color: #1b2838; }
        .epic { color: #0078f2; }
        .flathub { color: #4a90e2; }
        .itch { color: #fa5c5c; }

        .store-button h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .store-button p {
            font-size: 0.9rem;
            color: #94a3b8;
            text-align: center;
        }

        .price-tag {
            background: linear-gradient(45deg, #10b981, #059669);
            color: white;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-top: 0.5rem;
        }

        /* Documentation Section */
        .documentation {
            margin: 4rem 0;
            background: rgba(255, 255, 255, 0.02);
            padding: 3rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .documentation h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            text-align: center;
            background: linear-gradient(45deg, #3b82f6, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

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

        .doc-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .doc-card:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }

        .doc-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #3b82f6;
        }

        .doc-card p {
            color: #94a3b8;
            margin-bottom: 1.5rem;
        }

        .doc-links {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .doc-link {
            color: #3b82f6;
            text-decoration: none;
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(59, 130, 246, 0.2);
            transition: all 0.3s ease;
        }

        .doc-link:hover {
            color: #8b5cf6;
            padding-left: 1rem;
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 2rem 0;
            color: #64748b;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 2rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .game-title h1 {
                font-size: 2.5rem;
            }
            
            .store-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .doc-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .game-title h1 {
                font-size: 2rem;
            }
            
            .store-grid {
                grid-template-columns: 1fr;
            }
        }

        @keyframes clickRipple {
            0% {
                transform: translate(-50%, -50%) scale(0);
                opacity: 1;
            }
            100% {
                transform: translate(-50%, -50%) scale(4);
                opacity: 0;
            }
        }
        
        .countdown-container {
            background: rgba(255, 255, 255, 0.05);
            padding: 3rem 2rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            max-width: 800px;
            margin: 0 auto 4rem;
            box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
        }

        .countdown-title {
            font-size: 2rem;
            margin-bottom: 2rem;
            background: linear-gradient(45deg, #3b82f6, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-align: center;
        }

        .countdown-timer {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .time-unit {
            display: flex;
            flex-direction: column;
            align-items: center;
            background: rgba(59, 130, 246, 0.1);
            padding: 1.5rem;
            border-radius: 15px;
            border: 1px solid rgba(59, 130, 246, 0.3);
            min-width: 120px;
            transition: all 0.3s ease;
        }

        .time-unit:hover {
            background: rgba(59, 130, 246, 0.15);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
        }

        .time-value {
            font-size: 3rem;
            font-weight: bold;
            color: #ffffff;
            text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
            margin-bottom: 0.5rem;
            line-height: 1;
        }

        .time-label {
            font-size: 1rem;
            color: #94a3b8;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .countdown-message {
            text-align: center;
            margin-top: 2rem;
            font-size: 1.2rem;
            color: #94a3b8;
            font-style: italic;
        }
