        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f172a;
            color: #e2e8f0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #60a5fa;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #38bdf8;
            transform: translateY(-2px);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, #fbbf24, #f87171);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .desktop-nav ul {
            display: flex;
            gap: 2rem;
            list-style: none;
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
        }
        .desktop-nav a:hover {
            background-color: rgba(96, 165, 250, 0.1);
        }
        .mobile-menu-toggle {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #e2e8f0;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #1e293b;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            border-top: 1px solid #334155;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin: 1rem 0;
        }
        .mobile-nav a {
            display: block;
            padding: 0.8rem;
            border-radius: 0.5rem;
        }
        .breadcrumb {
            background-color: #1e293b;
            padding: 0.8rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #334155;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin: 0 10px;
            color: #94a3b8;
        }
        main {
            padding: 2.5rem 0;
            background-color: #0f172a;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding: 2rem;
            background: linear-gradient(90deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.8));
            border-radius: 1rem;
            border: 1px solid #334155;
        }
        h1 {
            font-size: 3.2rem;
            margin-bottom: 1rem;
            background: linear-gradient(to right, #fbbf24, #60a5fa);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        .article-meta {
            color: #94a3b8;
            font-size: 0.95rem;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        .article-meta i {
            margin-right: 0.5rem;
        }
        .content-section {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-section {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            font-size: 1.125rem;
        }
        .article-content h2 {
            font-size: 2.4rem;
            margin: 2.5rem 0 1.2rem;
            color: #fbbf24;
            border-left: 5px solid #60a5fa;
            padding-left: 1rem;
        }
        .article-content h3 {
            font-size: 1.9rem;
            margin: 2rem 0 1rem;
            color: #38bdf8;
        }
        .article-content h4 {
            font-size: 1.5rem;
            margin: 1.5rem 0 0.8rem;
            color: #a78bfa;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .article-content strong {
            color: #fbbf24;
            font-weight: 700;
        }
        .highlight-box {
            background: linear-gradient(135deg, #1e3a8a, #0c4a6e);
            border-left: 5px solid #fbbf24;
            padding: 1.5rem;
            border-radius: 0 0.5rem 0.5rem 0;
            margin: 2rem 0;
        }
        .game-image {
            width: 100%;
            border-radius: 1rem;
            border: 2px solid #334155;
            margin: 2rem auto;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
            transition: transform 0.4s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #94a3b8;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .sidebar {
            background-color: #1e293b;
            padding: 1.5rem;
            border-radius: 1rem;
            border: 1px solid #334155;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget-title {
            font-size: 1.4rem;
            color: #fbbf24;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #334155;
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            border: 1px solid #475569;
            border-radius: 0.5rem 0 0 0.5rem;
            background-color: #0f172a;
            color: #e2e8f0;
        }
        .search-button {
            background-color: #3b82f6;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 0.5rem 0.5rem 0;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .search-button:hover {
            background-color: #2563eb;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .star {
            color: #475569;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #fbbf24;
        }
        .rating-inputs {
            display: none;
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border-radius: 0.5rem;
            border: 1px solid #475569;
            background-color: #0f172a;
            color: #e2e8f0;
            min-height: 120px;
            margin-bottom: 1rem;
            resize: vertical;
        }
        .submit-button {
            width: 100%;
            padding: 0.8rem;
            background: linear-gradient(to right, #3b82f6, #8b5cf6);
            color: white;
            border: none;
            border-radius: 0.5rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.2s, opacity 0.2s;
        }
        .submit-button:hover {
            transform: translateY(-3px);
            opacity: 0.95;
        }
        .related-links ul {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px dashed #475569;
        }
        .related-links a::before {
            content: '🔗 ';
            margin-right: 0.5rem;
        }
        footer {
            background-color: #1e293b;
            padding: 3rem 0 1.5rem;
            border-top: 3px solid #334155;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: #fbbf24;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
            padding: 0.5rem;
            background-color: rgba(96, 165, 250, 0.1);
            border-radius: 0.3rem;
            transition: background-color 0.3s;
        }
        friend-link:hover {
            background-color: rgba(96, 165, 250, 0.2);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #475569;
            color: #94a3b8;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            .desktop-nav {
                display: none;
            }
            .mobile-menu-toggle {
                display: block;
            }
            .article-header {
                padding: 1.5rem;
            }
            .article-content h2 {
                font-size: 2rem;
            }
            .article-content h3 {
                font-size: 1.6rem;
            }
        }
