* {
            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, #1a1a2e 0%, #16213e 100%);
            min-height: 100vh;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #00ff88;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #00ff88;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s ease;
        }
        .logo:hover {
            color: #00cc66;
            transform: scale(1.05);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        .nav-desktop a:hover {
            color: #00ff88;
            background: rgba(0, 255, 136, 0.1);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(0, 0, 0, 0.95);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: #fff;
            text-decoration: none;
            padding: 1rem;
            border-bottom: 1px solid #333;
            transition: background 0.3s ease;
        }
        .nav-mobile a:hover {
            background: rgba(0, 255, 136, 0.1);
        }
        .breadcrumb {
            background: rgba(255, 255, 255, 0.05);
            padding: 1rem 0;
            margin-top: 80px;
            border-bottom: 1px solid #333;
        }
        .breadcrumb a {
            color: #00ff88;
            text-decoration: none;
        }
        .breadcrumb span {
            color: #ccc;
        }
        .search-section {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            text-align: center;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex: 1;
            padding: 1rem;
            border: 2px solid #00ff88;
            border-radius: 5px 0 0 5px;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            font-size: 1rem;
        }
        .search-button {
            background: #00ff88;
            color: #000;
            border: none;
            padding: 1rem 2rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s ease;
        }
        .search-button:hover {
            background: #00cc66;
        }
        main {
            padding: 2rem 0;
            color: #fff;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        .article-header h1 {
            font-size: 3rem;
            color: #00ff88;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        .article-meta {
            color: #ccc;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .content-section {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 10px;
            margin-bottom: 2rem;
            border-left: 4px solid #00ff88;
        }
        .content-section h2 {
            color: #00ff88;
            margin-bottom: 1rem;
            font-size: 2rem;
        }
        .content-section h3 {
            color: #00cc66;
            margin: 1.5rem 0 1rem 0;
            font-size: 1.5rem;
        }
        .content-section p {
            margin-bottom: 1rem;
            line-height: 1.8;
            text-align: justify;
        }
        .highlight {
            background: rgba(0, 255, 136, 0.1);
            padding: 1rem;
            border-left: 4px solid #00ff88;
            margin: 1rem 0;
            border-radius: 0 5px 5px 0;
        }
        .game-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 10px;
            margin: 2rem auto;
            display: block;
            border: 2px solid #00ff88;
        }
        .tip-box {
            background: rgba(255, 193, 7, 0.1);
            border-left: 4px solid #ffc107;
            padding: 1rem;
            margin: 1rem 0;
            border-radius: 0 5px 5px 0;
        }
        .warning-box {
            background: rgba(220, 53, 69, 0.1);
            border-left: 4px solid #dc3545;
            padding: 1rem;
            margin: 1rem 0;
            border-radius: 0 5px 5px 0;
        }
        .rating-section {
            background: rgba(255, 255, 255, 0.05);
            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: #ffc107;
        }
        .rating-form {
            max-width: 500px;
            margin: 0 auto;
        }
        .rating-input {
            width: 100%;
            padding: 1rem;
            margin: 1rem 0;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid #00ff88;
            border-radius: 5px;
            color: #fff;
            resize: vertical;
        }
        .submit-button {
            background: #00ff88;
            color: #000;
            border: none;
            padding: 1rem 2rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s ease;
        }
        .submit-button:hover {
            background: #00cc66;
        }
        .comments-section {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .comment-form {
            margin-bottom: 2rem;
        }
        .comment-input {
            width: 100%;
            padding: 1rem;
            margin: 1rem 0;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid #00ff88;
            border-radius: 5px;
            color: #fff;
            resize: vertical;
        }
        .comment {
            background: rgba(255, 255, 255, 0.05);
            padding: 1rem;
            margin: 1rem 0;
            border-radius: 5px;
            border-left: 4px solid #00ff88;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
            color: #00ff88;
        }
        .footer-links {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            margin: 2rem 0;
            border-radius: 10px;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.1);
            padding: 1rem;
            border-radius: 5px;
            transition: background 0.3s ease;
        }
        .web-link:hover {
            background: rgba(0, 255, 136, 0.2);
        }
        .web-link a {
            color: #00ff88;
            text-decoration: none;
            font-weight: 500;
        }
        footer {
            background: rgba(0, 0, 0, 0.9);
            color: #fff;
            text-align: center;
            padding: 2rem 0;
            margin-top: 2rem;
            border-top: 2px solid #00ff88;
        }
        .footer-content {
            max-width: 800px;
            margin: 0 auto;
        }
        .copyright {
            color: #ccc;
            font-size: 0.9rem;
            margin-top: 1rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            .header-content {
                padding: 0.5rem 0;
            }
            .breadcrumb {
                margin-top: 60px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input {
                border-radius: 5px;
                margin-bottom: 0.5rem;
            }
            .search-button {
                border-radius: 5px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 10px;
            }
            .content-section {
                padding: 1rem;
            }
            .article-header h1 {
                font-size: 1.5rem;
            }
            .stars {
                gap: 0.2rem;
            }
            .star {
                font-size: 1.5rem;
            }
        }
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .fade-in {
            animation: fadeIn 0.6s ease-out;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #1a1a2e;
        }
        ::-webkit-scrollbar-thumb {
            background: #00ff88;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #00cc66;
        }
