        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f1419;
            color: #e0e0e0;
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            color: #ffcc00;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff9900;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1f2e 0%, #0a0e15 100%);
            padding: 15px 0;
            border-bottom: 3px solid #ffcc00;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(90deg, #ffcc00, #ff9900);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .logo a:hover {
            text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffcc00;
        }
        nav {
            display: flex;
            gap: 25px;
        }
        nav a {
            font-size: 1.1rem;
            padding: 8px 15px;
            border-radius: 5px;
            position: relative;
        }
        nav a:hover {
            background-color: rgba(255, 204, 0, 0.1);
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background-color: #ffcc00;
            transition: width 0.3s ease;
        }
        nav a:hover::after {
            width: 80%;
        }
        .breadcrumb {
            margin-top: 15px;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #ffcc00;
        }
        .breadcrumb span {
            margin: 0 5px;
        }
        main {
            padding: 40px 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
        }
        .article-header h1 {
            font-size: 3rem;
            margin-bottom: 15px;
            color: #ffcc00;
            text-shadow: 0 0 15px rgba(255, 204, 0, 0.3);
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 20px;
            color: #aaa;
            font-size: 0.95rem;
        }
        .content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .article-body {
            background-color: #1a1f2e;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .article-body h2 {
            color: #ffcc00;
            margin: 25px 0 15px;
            font-size: 2rem;
            border-left: 5px solid #ff9900;
            padding-left: 15px;
        }
        .article-body h3 {
            color: #ffcc00;
            margin: 20px 0 10px;
            font-size: 1.5rem;
        }
        .article-body p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-body strong {
            color: #ffcc00;
            font-weight: 700;
        }
        .article-body em {
            font-style: italic;
            color: #ff9900;
        }
        .highlight-box {
            background-color: rgba(255, 204, 0, 0.1);
            border-left: 5px solid #ffcc00;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .game-image {
            margin: 30px auto;
            border-radius: 10px;
            overflow: hidden;
            border: 3px solid #ffcc00;
            max-width: 800px;
        }
        .game-image img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .game-image img:hover {
            transform: scale(1.03);
        }
        .feature-list {
            list-style-type: none;
            padding-left: 20px;
        }
        .feature-list li {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
        }
        .feature-list li::before {
            content: '▶';
            color: #ffcc00;
            position: absolute;
            left: 0;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background-color: #1a1f2e;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
        }
        .widget h3 {
            color: #ffcc00;
            margin-bottom: 20px;
            font-size: 1.5rem;
            text-align: center;
            border-bottom: 2px solid #ffcc00;
            padding-bottom: 10px;
        }
        .search-form input {
            width: 100%;
            padding: 12px;
            border-radius: 8px;
            border: 2px solid #ffcc00;
            background-color: #0f1419;
            color: #fff;
            font-size: 1rem;
        }
        .search-form button {
            width: 100%;
            padding: 12px;
            margin-top: 10px;
            background: linear-gradient(90deg, #ffcc00, #ff9900);
            color: #000;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        .search-form button:hover {
            transform: scale(1.05);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 1.8rem;
            color: #ccc;
            cursor: pointer;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: #ffcc00;
        }
        .rating-form input, .comment-form input, .comment-form textarea {
            padding: 12px;
            border-radius: 8px;
            border: 1px solid #555;
            background-color: #0f1419;
            color: #fff;
        }
        .comment-form textarea {
            height: 120px;
            resize: vertical;
        }
        .rating-form button, .comment-form button {
            padding: 12px;
            background: linear-gradient(90deg, #00cc66, #00994d);
            color: #fff;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .rating-form button:hover, .comment-form button:hover {
            background: linear-gradient(90deg, #00994d, #006633);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
            margin: 40px 0;
        }
        .web-link {
            background-color: #1a1f2e;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(255, 204, 0, 0.2);
        }
        .web-link a {
            font-weight: bold;
        }
        footer {
            background-color: #0a0e15;
            padding: 30px 0;
            text-align: center;
            border-top: 2px solid #ffcc00;
        }
        .copyright {
            color: #aaa;
            font-size: 0.9rem;
            margin-top: 20px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #1a1f2e;
                padding: 20px;
                border-top: 2px solid #ffcc00;
            }
            nav.active {
                display: flex;
            }
            .content {
                grid-template-columns: 1fr;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            .web-links {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
        }
