        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0a0e17;
            color: #e0e0e0;
            line-height: 1.7;
            background-image: radial-gradient(circle at 10% 20%, rgba(28, 58, 105, 0.1) 0%, transparent 20%), radial-gradient(circle at 90% 80%, rgba(105, 28, 28, 0.1) 0%, transparent 20%);
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #74c0fc;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(to right, #000428, #004e92);
            padding: 1.2rem 0;
            border-bottom: 3px solid #ffd43b;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: #ffd43b;
            text-decoration: none;
            font-family: 'Arial Black', sans-serif;
            text-shadow: 0 0 10px rgba(255, 212, 59, 0.5);
            letter-spacing: 1px;
        }
        .logo a:hover {
            text-decoration: none;
            color: #ffec99;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: #e9ecef;
            font-weight: 600;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
        }
        .nav-desktop a:hover {
            color: #ffd43b;
            border-bottom-color: #ffd43b;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #ffd43b;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #001f3f;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            border-top: 1px solid #004e92;
            box-shadow: 0 10px 15px rgba(0,0,0,0.5);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: #e9ecef;
            padding: 0.8rem 0;
            border-bottom: 1px solid #003366;
            font-weight: 600;
        }
        .nav-mobile a:hover {
            color: #ffd43b;
            padding-left: 10px;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #111827;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        .breadcrumb li {
            margin-right: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
            color: #6c757d;
        }
        .breadcrumb a {
            color: #adb5bd;
        }
        .breadcrumb a:hover {
            color: #ffd43b;
        }
        .main-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2.5rem 0;
        }
        @media (max-width: 992px) {
            .main-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(16, 23, 41, 0.8);
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid #1e293b;
        }
        .article-header {
            margin-bottom: 2.5rem;
            border-bottom: 2px solid #004e92;
            padding-bottom: 1.5rem;
        }
        h1 {
            color: #ffd43b;
            font-size: 2.8rem;
            line-height: 1.2;
            margin-bottom: 1rem;
            text-shadow: 0 2px 5px rgba(0,0,0,0.7);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
        }
        .article-meta {
            color: #94a3b8;
            font-size: 0.95rem;
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        .article-meta span {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        h2 {
            color: #4dabf7;
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px dashed #334155;
        }
        h3 {
            color: #74c0fc;
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(255, 212, 59, 0.1);
            border-left: 4px solid #ffd43b;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight p:last-child {
            margin-bottom: 0;
        }
        .featured-image {
            margin: 2.5rem auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
            border: 3px solid #004e92;
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            color: #94a3b8;
            padding: 0.8rem;
            background-color: rgba(0, 0, 0, 0.3);
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.7rem;
        }
        strong {
            color: #ffd43b;
            font-weight: 700;
        }
        em {
            color: #a5d8ff;
        }
        .inline-link {
            font-weight: 600;
            border-bottom: 1px dotted #4dabf7;
        }
        .inline-link:hover {
            border-bottom-style: solid;
        }
        .game-card {
            display: grid;
            grid-template-columns: 150px 1fr;
            gap: 1.5rem;
            background: rgba(30, 41, 59, 0.6);
            border-radius: 10px;
            padding: 1.5rem;
            margin: 2rem 0;
            border: 1px solid #475569;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .game-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 78, 146, 0.2);
        }
        .game-card img {
            border-radius: 8px;
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .game-card-content h3 {
            margin-top: 0;
        }
        aside {
            background: rgba(16, 23, 41, 0.8);
            border-radius: 12px;
            padding: 2rem;
            align-self: start;
            border: 1px solid #1e293b;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget:last-child {
            margin-bottom: 0;
        }
        .sidebar-widget h4 {
            color: #ffd43b;
            font-size: 1.4rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #334155;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.9rem 1rem;
            border: 1px solid #475569;
            background-color: #1e293b;
            color: #f1f5f9;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: #004e92;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background-color 0.3s ease;
        }
        .search-form button:hover {
            background-color: #0066cc;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.8rem;
            color: #ffd43b;
            margin-bottom: 1rem;
            cursor: pointer;
        }
        .stars i {
            margin: 0 2px;
            transition: color 0.2s;
        }
        .stars i:hover,
        .stars i.active {
            color: #ffc107;
        }
        .rating-form button {
            background-color: #28a745;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            width: 100%;
            transition: background-color 0.3s ease;
        }
        .rating-form button:hover {
            background-color: #218838;
        }
        .related-links ul {
            list-style: none;
            margin-left: 0;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px solid #334155;
        }
        .related-links a {
            display: block;
            padding: 0.5rem;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }
        .related-links a:hover {
            background-color: rgba(255, 212, 59, 0.1);
            text-decoration: none;
            padding-left: 1rem;
        }
        .comment-section {
            margin-top: 3rem;
            padding-top: 2.5rem;
            border-top: 2px solid #004e92;
        }
        .comment-form {
            background: rgba(30, 41, 59, 0.6);
            padding: 2rem;
            border-radius: 10px;
            margin-bottom: 2.5rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #cbd5e1;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.9rem;
            border: 1px solid #475569;
            background-color: #1e293b;
            color: #f1f5f9;
            border-radius: 8px;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background-color: #004e92;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: background-color 0.3s ease;
        }
        .submit-btn:hover {
            background-color: #0066cc;
        }
        .comment-list .comment {
            background: rgba(30, 41, 59, 0.6);
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 1.5rem;
            border-left: 4px solid #004e92;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            color: #94a3b8;
            font-size: 0.95rem;
        }
        .comment-author {
            font-weight: bold;
            color: #ffd43b;
        }
        .footer-links {
            background-color: #111827;
            padding: 2.5rem 0;
            margin-top: 3rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
        }
        @media (max-width: 992px) {
            .web-links-container {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 576px) {
            .web-links-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }
        .web-link:hover {
            background: rgba(255, 212, 59, 0.15);
            transform: translateY(-3px);
        }
        .web-link a {
            color: #cbd5e1;
            font-weight: 600;
        }
        .web-link a:hover {
            color: #ffd43b;
            text-decoration: none;
        }
        .site-footer {
            background-color: #000428;
            color: #94a3b8;
            padding: 2.5rem 0;
            text-align: center;
            border-top: 3px solid #004e92;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .copyright {
            font-size: 0.95rem;
        }
        .social-links {
            display: flex;
            gap: 1.5rem;
            font-size: 1.5rem;
        }
        .social-links a {
            color: #94a3b8;
            transition: color 0.3s ease;
        }
        .social-links a:hover {
            color: #ffd43b;
        }
        .text-center {
            text-align: center;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
