        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f1419;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #74c0fc;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul, ol {
            padding-left: 1.5rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: linear-gradient(135deg, #339af0, #1c7ed6);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            box-shadow: 0 4px 12px rgba(28, 126, 214, 0.3);
        }
        .btn:hover {
            background: linear-gradient(135deg, #4dabf7, #339af0);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(28, 126, 214, 0.4);
        }
        .btn-secondary {
            background: linear-gradient(135deg, #495057, #343a40);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }
        .btn-secondary:hover {
            background: linear-gradient(135deg, #5c636a, #495057);
        }
        .section-padding {
            padding: 80px 0;
        }
        .text-center {
            text-align: center;
        }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mb-3 { margin-bottom: 3rem; }
        .mt-1 { margin-top: 1rem; }
        .mt-2 { margin-top: 2rem; }
        .mt-3 { margin-top: 3rem; }
        header {
            background-color: #1a1f26;
            border-bottom: 2px solid #339af0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: #fff;
            background: linear-gradient(90deg, #339af0, #ff6b6b);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
        }
        .logo a:hover {
            background: linear-gradient(90deg, #4dabf7, #ff8787);
            -webkit-background-clip: text;
            background-clip: text;
        }
        .my-logo {
            font-family: 'Arial Black', sans-serif;
            letter-spacing: 1px;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            color: #ced4da;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 0;
            position: relative;
        }
        .desktop-nav a:hover {
            color: #fff;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #339af0;
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #fff;
            cursor: pointer;
            background: none;
            border: none;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: #1a1f26;
            padding: 20px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
            border-top: 1px solid #333;
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 15px;
        }
        .mobile-nav a {
            color: #ced4da;
            font-weight: 600;
            font-size: 1.1rem;
            display: block;
            padding: 10px 0;
            border-bottom: 1px solid #2d343f;
        }
        .mobile-nav a:hover {
            color: #fff;
            padding-left: 10px;
            border-bottom-color: #339af0;
        }
        .breadcrumb {
            padding: 15px 20px;
            background-color: #1a1f26;
            border-bottom: 1px solid #2d343f;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #adb5bd;
        }
        .breadcrumb a:hover {
            color: #4dabf7;
        }
        .breadcrumb span {
            color: #868e96;
            margin: 0 8px;
        }
        .hero {
            background: linear-gradient(rgba(15, 20, 25, 0.85), rgba(15, 20, 25, 0.95)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            padding: 100px 20px;
            text-align: center;
            border-bottom: 3px solid #339af0;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            color: #fff;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2.5rem;
            color: #ced4da;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 20px;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: #1a1f26;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            border: 1px solid #2d343f;
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #2d343f;
            color: #868e96;
            font-size: 0.95rem;
        }
        .update-time {
            color: #ffa94d;
        }
        .article-content h1 {
            font-size: 2.8rem;
            color: #fff;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        .article-content h2 {
            font-size: 2.2rem;
            color: #4dabf7;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 10px;
            border-bottom: 2px solid #2d343f;
        }
        .article-content h3 {
            font-size: 1.8rem;
            color: #74c0fc;
            margin: 2rem 0 1rem;
        }
        .article-content h4 {
            font-size: 1.4rem;
            color: #a5d8ff;
            margin: 1.5rem 0 0.8rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: #ced4da;
        }
        .article-content strong {
            color: #fff;
            font-weight: 700;
        }
        .article-content em {
            color: #ffd8a8;
            font-style: italic;
        }
        .highlight-box {
            background: linear-gradient(135deg, #1c2330, #2d3748);
            border-left: 5px solid #339af0;
            padding: 25px;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        .specs-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        .specs-table th, .specs-table td {
            padding: 18px 15px;
            text-align: left;
            border-bottom: 1px solid #2d343f;
        }
        .specs-table th {
            background-color: #252b33;
            color: #4dabf7;
            font-weight: 700;
        }
        .specs-table tr:nth-child(even) {
            background-color: #1e242b;
        }
        .specs-table tr:hover {
            background-color: #252b33;
        }
        .game-image {
            width: 100%;
            border-radius: 10px;
            margin: 2.5rem auto;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
            border: 2px solid #339af0;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #868e96;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .internal-link {
            background-color: rgba(51, 154, 240, 0.1);
            padding: 15px;
            border-radius: 8px;
            margin: 1.5rem 0;
            border-left: 4px solid #339af0;
        }
        aside {
            background-color: #1a1f26;
            border-radius: 12px;
            padding: 30px;
            height: fit-content;
            border: 1px solid #2d343f;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }
        .sidebar-widget {
            margin-bottom: 40px;
        }
        .sidebar-widget h3 {
            color: #4dabf7;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #2d343f;
            font-size: 1.4rem;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 14px;
            background-color: #252b33;
            border: 1px solid #2d343f;
            border-right: none;
            border-radius: 8px 0 0 8px;
            color: #fff;
            font-size: 1rem;
        }
        .search-form button {
            padding: 14px 20px;
            background: linear-gradient(135deg, #339af0, #1c7ed6);
            color: white;
            border: none;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .search-form button:hover {
            background: linear-gradient(135deg, #4dabf7, #339af0);
        }
        .quick-links ul {
            list-style: none;
            padding-left: 0;
        }
        .quick-links li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dashed #2d343f;
        }
        .quick-links a {
            color: #ced4da;
            display: flex;
            align-items: center;
            transition: color 0.3s ease, transform 0.3s ease;
        }
        .quick-links a:hover {
            color: #74c0fc;
            transform: translateX(5px);
        }
        .quick-links i {
            margin-right: 10px;
            color: #339af0;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #ffd43b;
            margin: 15px 0;
        }
        .stars i {
            cursor: pointer;
            transition: color 0.2s;
            margin: 0 2px;
        }
        .stars i:hover {
            color: #ffc107;
        }
        .rating-form input, .rating-form textarea {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            background-color: #252b33;
            border: 1px solid #2d343f;
            border-radius: 6px;
            color: #fff;
            font-size: 1rem;
        }
        .rating-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comments-section {
            margin-top: 60px;
            padding-top: 40px;
            border-top: 2px solid #2d343f;
        }
        .comment-form input, .comment-form textarea {
            width: 100%;
            padding: 15px;
            margin-bottom: 20px;
            background-color: #252b33;
            border: 1px solid #2d343f;
            border-radius: 8px;
            color: #fff;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        .comment {
            background-color: #1e242b;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 25px;
            border-left: 4px solid #495057;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-size: 0.9rem;
            color: #868e96;
        }
        .comment-author {
            color: #4dabf7;
            font-weight: bold;
        }
        footer {
            background-color: #14181f;
            padding: 60px 20px 30px;
            margin-top: 80px;
            border-top: 2px solid #339af0;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #fff;
            background: linear-gradient(90deg, #339af0, #ff6b6b);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
            display: block;
        }
        .footer-links h4 {
            color: #ced4da;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links ul {
            list-style: none;
            padding-left: 0;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #868e96;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: #4dabf7;
        }
        friend-link {
            display: block;
            background-color: #1a1f26;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 10px;
            border-left: 4px solid #ff6b6b;
        }
        friend-link a {
            color: #ced4da;
            font-weight: 600;
        }
        friend-link a:hover {
            color: #ff8787;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #2d343f;
            color: #868e96;
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .content-wrapper {
                padding: 20px 15px;
            }
            article {
                padding: 25px;
            }
            .article-content h1 {
                font-size: 2.2rem;
            }
            .article-content h2 {
                font-size: 1.8rem;
            }
            .article-content h3 {
                font-size: 1.5rem;
            }
            .specs-table th, .specs-table td {
                padding: 12px 10px;
                font-size: 0.9rem;
            }
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
