        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f0f1a;
            color: #e0e0ff;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #7aa2f7;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #bb9af7;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1b26 0%, #16161e 100%);
            border-bottom: 2px solid #363b54;
            padding: 1.5rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #7aa2f7, #bb9af7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 6px;
        }
        .nav-desktop a:hover {
            background-color: rgba(122, 162, 247, 0.15);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #7aa2f7;
            cursor: pointer;
            padding: 0.5rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            width: 100%;
            background-color: #1a1b26;
            padding: 1rem;
            border-radius: 8px;
            margin-top: 1rem;
            border: 1px solid #363b54;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 0.8rem;
            border-bottom: 1px solid #2a2c3e;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #a9b1d6;
            background-color: #16161e;
            border-bottom: 1px solid #2a2c3e;
        }
        .breadcrumb a {
            color: #a9b1d6;
        }
        .breadcrumb a:hover {
            color: #7aa2f7;
        }
        .breadcrumb span {
            margin: 0 0.5rem;
        }
        .search-section {
            background: linear-gradient(90deg, #1a1b26, #16161e);
            padding: 2rem 0;
            text-align: center;
            border-bottom: 1px solid #363b54;
        }
        .search-box {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            gap: 0;
        }
        .search-box input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: 2px solid #363b54;
            border-radius: 50px 0 0 50px;
            background-color: #0f0f1a;
            color: #e0e0ff;
            font-size: 1rem;
            outline: none;
        }
        .search-box input:focus {
            border-color: #7aa2f7;
        }
        .search-box button {
            padding: 1rem 2rem;
            background: linear-gradient(90deg, #7aa2f7, #565f89);
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .search-box button:hover {
            background: linear-gradient(90deg, #565f89, #7aa2f7);
            transform: scale(1.03);
        }
        main {
            padding: 2rem 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: #1a1b26;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            border: 1px solid #363b54;
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            color: #bb9af7;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(187, 154, 247, 0.3);
        }
        h2 {
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            color: #7aa2f7;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #363b54;
        }
        h3 {
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
            color: #73daca;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(122, 162, 247, 0.1);
            border-left: 4px solid #7aa2f7;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .game-card {
            display: grid;
            grid-template-columns: 200px 1fr;
            gap: 2rem;
            background: linear-gradient(135deg, #16161e, #1a1b26);
            padding: 2rem;
            border-radius: 12px;
            margin: 2.5rem 0;
            border: 1px solid #363b54;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .game-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
        }
        @media (max-width: 768px) {
            .game-card {
                grid-template-columns: 1fr;
            }
        }
        .game-card img {
            width: 100%;
            object-fit: cover;
            border: 2px solid #565f89;
        }
        .game-info h3 {
            margin-top: 0;
        }
        .rating {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .stars {
            color: #ffcc00;
        }
        .rank-badge {
            display: inline-block;
            background: linear-gradient(90deg, #ff9e64, #ffcc00);
            color: #16161e;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-weight: bold;
            font-size: 0.9rem;
            margin-left: 1rem;
        }
        sidebar {
            background-color: #1a1b26;
            border-radius: 12px;
            padding: 2rem;
            height: fit-content;
            border: 1px solid #363b54;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }
        sidebar h2 {
            font-size: 1.5rem;
            margin-top: 0;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .link-list a {
            display: block;
            padding: 0.8rem 1rem;
            margin-bottom: 0.8rem;
            background-color: #16161e;
            border-radius: 8px;
            border-left: 4px solid #bb9af7;
            transition: all 0.3s ease;
        }
        .link-list a:hover {
            background-color: #24283b;
            transform: translateX(5px);
        }
        .interactive-section {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 2px solid #363b54;
        }
        .rating-widget, .comment-widget {
            background-color: #16161e;
            padding: 2rem;
            border-radius: 12px;
            margin-bottom: 2rem;
            border: 1px solid #363b54;
        }
        .rating-widget h3, .comment-widget h3 {
            margin-top: 0;
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 2rem;
            cursor: pointer;
        }
        .star-rating .star {
            color: #565f89;
            transition: color 0.2s;
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: #ffcc00;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            background-color: #1a1b26;
            border: 1px solid #363b54;
            border-radius: 8px;
            color: #e0e0ff;
            font-size: 1rem;
            resize: vertical;
        }
        .form-group textarea {
            min-height: 150px;
        }
        .submit-btn {
            background: linear-gradient(90deg, #73daca, #2ac3de);
            color: #16161e;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .submit-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(115, 218, 202, 0.4);
        }
        .footer-links {
            background-color: #16161e;
            padding: 3rem 0;
            border-top: 1px solid #363b54;
            border-bottom: 1px solid #363b54;
        }
        .web-link {
            display: inline-block;
            background-color: #1a1b26;
            margin: 0.8rem;
            padding: 0.8rem 1.5rem;
            border-radius: 30px;
            border: 1px solid #363b54;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background-color: #24283b;
            border-color: #7aa2f7;
            transform: translateY(-3px);
        }
        footer {
            text-align: center;
            padding: 2rem 0;
            background-color: #0f0f1a;
            color: #a9b1d6;
            font-size: 0.95rem;
        }
        .footer-links-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            max-width: 1000px;
            margin: 0 auto;
        }
        .copyright {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid #2a2c3e;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .article-content {
                padding: 1.5rem;
            }
            sidebar {
                padding: 1.5rem;
            }
        }
