* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
            color: #ffffff;
            overflow-x: hidden;
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .header {
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            padding: 15px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #ff6b35;
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 28px;
            font-weight: bold;
            background: linear-gradient(45deg, #ff6b35, #f7931e, #ffff00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
            cursor: pointer;
        }

        .nav-center {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover, .nav-links a.active {
            color: #ff6b35;
            text-shadow: 0 0 10px rgba(255, 107, 53, 0.8);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(45deg, #ff6b35, #f7931e);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after, .nav-links a.active::after {
            width: 100%;
        }

        .age-badge {
            background: linear-gradient(45deg, #ff6b35, #f7931e);
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
        }

        /* Mobile Navigation */
        .mobile-nav {
            display: none;
            align-items: center;
            gap: 15px;
        }

        .burger-menu {
            width: 30px;
            height: 24px;
            cursor: pointer;
            position: relative;
        }

        .burger-line {
            width: 100%;
            height: 3px;
            background: #ff6b35;
            margin: 6px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .burger-menu.active .burger-line:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .burger-menu.active .burger-line:nth-child(2) {
            opacity: 0;
        }

        .burger-menu.active .burger-line:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        .mobile-menu {
            position: fixed;
            top: 73px;
            left: -100%;
            width: 100%;
            height: calc(100vh - 73px);
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            transition: left 0.3s ease;
            z-index: 999;
        }

        .mobile-menu.active {
            left: 0;
        }

        .mobile-menu-list {
            list-style: none;
            padding: 50px 20px;
        }

        .mobile-menu-list li {
            margin-bottom: 30px;
        }

        .mobile-menu-list a {
            color: #ffffff;
            text-decoration: none;
            font-size: 24px;
            font-weight: bold;
            display: block;
            padding: 15px;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .mobile-menu-list a:hover {
            background: rgba(255, 107, 53, 0.1);
            color: #ff6b35;
        }

        /* Breadcrumbs */
        .breadcrumbs {
            margin-top: 80px;
            padding: 20px 0 10px;
        }

        .breadcrumb-list {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: #cccccc;
        }

        .breadcrumb-list a {
            color: #ff6b35;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .breadcrumb-list a:hover {
            text-shadow: 0 0 10px rgba(255, 107, 53, 0.8);
        }

        .breadcrumb-separator {
            color: #666;
        }

        /* Main Content */
        .main-content {
            padding: 20px 0;
        }

        .game-layout {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 30px;
            margin-bottom: 40px;
        }

        .game-main {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 30px;
            border: 1px solid rgba(255, 107, 53, 0.2);
            box-shadow: 0 20px 40px rgba(255, 107, 53, 0.1);
        }

        .game-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 15px;
            background: linear-gradient(45deg, #ff6b35, #f7931e, #ffff00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .game-subtitle {
            color: #cccccc;
            font-size: 1.1rem;
            margin-bottom: 25px;
        }

        .game-iframe-container {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 70%;
            background: #000;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 25px;
            border: 2px solid #ff6b35;
        }

        .game-iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 13px;
        }

        .play-controls {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
        }

        .play-btn {
            background: linear-gradient(45deg, #ff6b35, #f7931e);
            color: white;
            padding: 12px 25px;
            border: none;
            border-radius: 25px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .play-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
        }

        .demo-btn {
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            padding: 12px 25px;
            border: 1px solid rgba(255, 107, 53, 0.3);
            border-radius: 25px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .demo-btn:hover {
            background: rgba(255, 107, 53, 0.2);
            border-color: #ff6b35;
        }

        .game-sidebar {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .info-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 25px;
            border: 1px solid rgba(255, 107, 53, 0.2);
        }

        .info-title {
            font-size: 1.3rem;
            color: #ff6b35;
            margin-bottom: 20px;
            font-weight: bold;
        }

        .info-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 107, 53, 0.1);
        }

        .info-item:last-child {
            border-bottom: none;
        }

        .info-label {
            color: #cccccc;
            font-weight: 500;
        }

        .info-value {
            color: #ff6b35;
            font-weight: bold;
        }

        .rating-section {
            text-align: center;
        }

        .rating-score {
            font-size: 3rem;
            font-weight: bold;
            color: #ff6b35;
            margin-bottom: 10px;
        }

        .rating-stars {
            font-size: 1.5rem;
            color: #f7931e;
            margin-bottom: 10px;
        }

        .rating-text {
            color: #cccccc;
            font-size: 0.9rem;
        }

        .features-list {
            list-style: none;
        }

        .features-list li {
            color: #cccccc;
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
        }

        .features-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #ff6b35;
            font-weight: bold;
        }

        .description-section {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 30px;
            border: 1px solid rgba(255, 107, 53, 0.2);
        }

        .section-title {
            font-size: 1.8rem;
            color: #ff6b35;
            margin-bottom: 20px;
            font-weight: bold;
        }

        .description-text {
            color: #cccccc;
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .highlight {
            color: #ff6b35;
            font-weight: bold;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .feature-card {
            background: rgba(255, 107, 53, 0.1);
            border: 1px solid rgba(255, 107, 53, 0.3);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
        }

        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            display: block;
        }

        .feature-title {
            font-size: 1.1rem;
            font-weight: bold;
            color: #ff6b35;
            margin-bottom: 10px;
        }

        .feature-desc {
            color: #cccccc;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        /* Back Button */
        .back-button {
            background: linear-gradient(45deg, #ff6b35, #f7931e);
            color: white;
            padding: 12px 25px;
            border: none;
            border-radius: 25px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            text-decoration: none;
            display: inline-block;
        }

        .back-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
        }

        /* Footer */
        .footer {
            background: rgba(0, 0, 0, 0.8);
            padding: 50px 0 30px;
            border-top: 2px solid #ff6b35;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            margin-bottom: 20px;
        }

        .footer-links a {
            color: #cccccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #ff6b35;
        }

        .footer-disclaimer {
            text-align: center;
            color: #cccccc;
            font-size: 14px;
            margin-bottom: 20px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .footer-badge {
            text-align: center;
            margin-bottom: 20px;
        }

        .badge-18 {
            background: linear-gradient(45deg, #ff6b35, #f7931e);
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: bold;
            display: inline-block;
            margin-bottom: 10px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 107, 53, 0.3);
            padding-top: 20px;
            text-align: center;
            color: #cccccc;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-center {
                display: none;
            }
            
            .mobile-nav {
                display: flex;
            }

            .game-layout {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .game-title {
                font-size: 2rem;
            }

            .game-main, .description-section {
                padding: 20px;
            }

            .play-controls {
                flex-direction: column;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }
        }
    


                            @keyframes aurora {
                                0%, 100% { opacity: 0.6; transform: translateY(0px); }
                                50% { opacity: 0.9; transform: translateY(-5px); }
                            }
                            @keyframes glow {
                                0%, 100% { text-shadow: 0 0 10px rgba(255,215,0,0.5); }
                                50% { text-shadow: 0 0 20px rgba(255,215,0,1), 0 0 30px rgba(135,206,235,0.5); }
                            }