* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #0a0a2a 0%, #1a1a4a 100%);
            color: #ffffff;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(0, 0, 0, 0.9);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #00ff88;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .logo:hover {
            color: #00cc66;
            transform: scale(1.05);
            transition: all 0.3s ease;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-mobile {
            display: none;
        }
        @media (max-width: 768px) {
            .nav-mobile {
                display: block;
            }
        }
        .nav-link {
            color: #ffffff;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            background: #00ff88;
            color: #000;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #ffffff;
            font-size: 1.5rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.95);
            padding: 1rem;
        }
        .mobile-menu.active {
            display: block;
        }
        .search-form {
            display: flex;
            margin: 1rem 0;
        }
        .search-input {
            flex: 1;
            padding: 0.75rem;
            border: 2px solid #00ff88;
            border-radius: 5px 0 0 5px;
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
        }
        .search-button {
            padding: 0.75rem 1.5rem;
            background: #00ff88;
            border: none;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            color: #000;
            font-weight: bold;
        }
        .search-button:hover {
            background: #00cc66;
        }
        .breadcrumb {
            background: rgba(255, 255, 255, 0.1);
            padding: 1rem;
            border-radius: 5px;
            margin: 6rem 0 2rem 0;
        }
        .breadcrumb a {
            color: #00ff88;
            text-decoration: none;
        }
        .main-content {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
            backdrop-filter: blur(10px);
        }
        h1 {
            color: #00ff88;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            text-align: center;
        }
        h2 {
            color: #00ff88;
            font-size: 2rem;
            margin: 2rem 0 1rem 0;
            border-bottom: 2px solid #00ff88;
            padding-bottom: 0.5rem;
        }
        h3 {
            color: #00cc66;
            font-size: 1.5rem;
            margin: 1.5rem 0 1rem 0;
        }
        p {
            margin-bottom: 1rem;
            text-align: justify;
            line-height: 1.8;
        }
        .highlight {
            background: linear-gradient(135deg, #00ff88, #00cc66);
            color: #000;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            font-weight: bold;
            margin: 1rem 0;
        }
        .game-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 10px;
            margin: 2rem auto;
            display: block;
            box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .rating-system {
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            font-size: 2rem;
            color: #666;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .star:hover,
        .star.active {
            color: #ffd700;
        }
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-width: 500px;
            margin: 0 auto;
        }
        .rating-input {
            padding: 0.75rem;
            border: 2px solid #00ff88;
            border-radius: 5px;
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
        }
        .rating-button {
            padding: 0.75rem;
            background: #00ff88;
            border: none;
            border-radius: 5px;
            color: #000;
            font-weight: bold;
            cursor: pointer;
        }
        .rating-button:hover {
            background: #00cc66;
        }
        .comment-system {
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .comment-form {
            display: grid;
            gap: 1rem;
            margin-bottom: 2rem;
        }
        .comment-input {
            padding: 0.75rem;
            border: 2px solid #00ff88;
            border-radius: 5px;
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
        }
        .comment-button {
            padding: 0.75rem;
            background: #00ff88;
            border: none;
            border-radius: 5px;
            color: #000;
            font-weight: bold;
            cursor: pointer;
        }
        .comment-button:hover {
            background: #00cc66;
        }
        .comments-list {
            display: grid;
            gap: 1rem;
        }
        .comment {
            background: rgba(255, 255, 255, 0.05);
            padding: 1rem;
            border-radius: 5px;
            border-left: 4px solid #00ff88;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.1);
            padding: 1rem;
            border-radius: 5px;
            text-align: center;
        }
        .web-link a {
            color: #00ff88;
            text-decoration: none;
            font-weight: bold;
        }
        .web-link a:hover {
            color: #00cc66;
        }
        footer {
            background: rgba(0, 0, 0, 0.9);
            padding: 2rem 0;
            margin-top: 2rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #333;
            color: #666;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .main-content {
                padding: 1rem;
            }
            .header-content {
                flex-direction: column;
                gap: 1rem;
            }
        }
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .fade-in {
            animation: fadeIn 0.6s ease-out;
        }
        .text-center {
            text-align: center;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
