* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f172a;
            color: #e2e8f0;
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #60a5fa;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #93c5fd;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #1e293b;
            padding: 1rem 0;
            border-bottom: 2px solid #334155;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(90deg, #60a5fa, #a78bfa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            opacity: 0.9;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            flex-grow: 1;
            max-width: 400px;
            margin: 0 1rem;
        }
        .search-form input {
            flex: 1;
            padding: 0.5rem 1rem;
            border: 1px solid #475569;
            border-radius: 25px;
            background-color: #334155;
            color: #e2e8f0;
            outline: none;
        }
        .search-form input:focus {
            border-color: #60a5fa;
        }
        .search-form button {
            padding: 0.5rem 1.5rem;
            border: none;
            border-radius: 25px;
            background-color: #3b82f6;
            color: white;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .search-form button:hover {
            background-color: #2563eb;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #e2e8f0;
            font-size: 1.5rem;
            cursor: pointer;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
        .nav-links a {
            font-weight: 500;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #60a5fa;
            transition: width 0.3s;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .breadcrumb {
            margin-top: 1rem;
            font-size: 0.9rem;
            color: #94a3b8;
        }
        .breadcrumb a {
            color: #94a3b8;
        }
        .breadcrumb a:hover {
            color: #e2e8f0;
        }
        main {
            flex: 1;
            padding: 2rem 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #334155;
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            color: #f8fafc;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 1rem;
            font-size: 0.9rem;
            color: #94a3b8;
            flex-wrap: wrap;
        }
        .article-meta i {
            margin-right: 0.3rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: #1e293b;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }
        .article-content h2 {
            font-size: 2rem;
            margin: 2rem 0 1rem;
            color: #cbd5e1;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #475569;
        }
        .article-content h3 {
            font-size: 1.6rem;
            margin: 1.5rem 0 0.8rem;
            color: #d1d5db;
        }
        .article-content h4 {
            font-size: 1.3rem;
            margin: 1.2rem 0 0.6rem;
            color: #d1d5db;
        }
        .article-content p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .article-content strong {
            color: #fbbf24;
            font-weight: 600;
        }
        .article-content em {
            color: #a78bfa;
            font-style: italic;
        }
        .highlight-box {
            background-color: #334155;
            border-left: 4px solid #60a5fa;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .game-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 10px;
            margin: 1.5rem auto;
            display: block;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .sidebar-widget {
            background-color: #1e293b;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        .sidebar-widget h3 {
            margin-bottom: 1rem;
            color: #cbd5e1;
            font-size: 1.4rem;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .rating-stars .star {
            color: #475569;
            transition: color 0.2s;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: #fbbf24;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-group label {
            font-weight: 500;
        }
        .form-group input,
        .form-group textarea {
            padding: 0.8rem;
            border: 1px solid #475569;
            border-radius: 8px;
            background-color: #334155;
            color: #e2e8f0;
            outline: none;
            resize: vertical;
        }
        .form-group textarea {
            min-height: 120px;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #60a5fa;
        }
        .btn-submit {
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 8px;
            background-color: #3b82f6;
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
            align-self: flex-start;
        }
        .btn-submit:hover {
            background-color: #2563eb;
        }
        .related-links {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            padding-left: 1rem;
            border-left: 3px solid #475569;
            transition: border-color 0.3s;
        }
        .related-links li:hover {
            border-color: #60a5fa;
        }
        .related-links a {
            display: block;
            padding: 0.3rem 0;
        }
        footer {
            background-color: #1e293b;
            padding: 2rem 0;
            border-top: 2px solid #334155;
            margin-top: 2rem;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            margin-bottom: 1rem;
            color: #cbd5e1;
        }
        friend-link {
            display: block;
            margin-bottom: 0.5rem;
            color: #94a3b8;
        }
        friend-link a {
            color: #94a3b8;
        }
        friend-link a:hover {
            color: #60a5fa;
        }
        .copyright {
            text-align: center;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid #334155;
            color: #94a3b8;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                gap: 1rem;
                align-items: stretch;
            }
            .search-form {
                max-width: 100%;
                margin: 0;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1rem;
                right: 20px;
            }
            nav {
                flex-direction: column;
                align-items: stretch;
                display: none;
            }
            nav.active {
                display: flex;
            }
            .nav-links {
                flex-direction: column;
                gap: 0.5rem;
                padding: 1rem 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            .article-content {
                padding: 1.5rem;
            }
            .article-content h2 {
                font-size: 1.8rem;
            }
            .article-content h3 {
                font-size: 1.5rem;
            }
        }
