        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-color: #e62429; 
            --secondary-color: #0066cc; 
            --dark-color: #111111;
            --medium-dark: #1a1a1a;
            --light-color: #f8f9fa;
            --accent-yellow: #ffd700;
            --accent-grey: #444444;
            --text-primary: #e0e0e0;
            --text-secondary: #aaaaaa;
            --border-radius: 8px;
            --box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--dark-color);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
            background-image: radial-gradient(circle at 20% 30%, rgba(230, 36, 41, 0.1) 0%, transparent 20%),
                              radial-gradient(circle at 80% 80%, rgba(0, 102, 204, 0.1) 0%, transparent 20%);
        }
        a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary-color);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--border-radius);
        }
        header {
            background-color: rgba(17, 17, 17, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 2px solid var(--primary-color);
        }
        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px rgba(230, 36, 41, 0.7);
            transition: var(--transition);
        }
        .my-logo:hover {
            text-shadow: 0 0 20px rgba(230, 36, 41, 1);
            transform: scale(1.02);
        }
        .my-logo span {
            color: var(--secondary-color);
        }
        .desktop-nav {
            display: flex;
            gap: 30px;
        }
        .desktop-nav a {
            color: var(--text-primary);
            font-weight: 600;
            padding: 8px 15px;
            border-radius: var(--border-radius);
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 15px;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: var(--transition);
        }
        .desktop-nav a:hover::after {
            width: calc(100% - 30px);
        }
        .desktop-nav a.active {
            background-color: rgba(230, 36, 41, 0.2);
            color: var(--primary-color);
        }
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -300px;
            width: 300px;
            height: 100vh;
            background-color: var(--medium-dark);
            padding: 80px 30px 30px;
            transition: var(--transition);
            z-index: 999;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
        }
        .mobile-nav.active {
            right: 0;
        }
        .mobile-nav a {
            display: block;
            color: var(--text-primary);
            padding: 15px;
            border-bottom: 1px solid var(--accent-grey);
            font-weight: 600;
        }
        .mobile-nav a:hover {
            color: var(--primary-color);
            background-color: rgba(255, 255, 255, 0.05);
        }
        .mobile-nav-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            max-width: 1400px;
            margin: 20px auto;
            padding: 0 20px;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb a:hover {
            color: var(--primary-color);
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        .main-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px 50px;
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 40px;
        }
        @media (max-width: 1100px) {
            .main-container {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: var(--medium-dark);
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--box-shadow);
        }
        h1 {
            font-size: 3.2rem;
            color: var(--primary-color);
            margin-bottom: 25px;
            line-height: 1.2;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-bottom: 3px solid var(--secondary-color);
            padding-bottom: 20px;
        }
        h2 {
            font-size: 2.2rem;
            color: var(--secondary-color);
            margin: 45px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(0, 102, 204, 0.3);
        }
        h3 {
            font-size: 1.7rem;
            color: var(--accent-yellow);
            margin: 35px 0 15px;
        }
        h4 {
            font-size: 1.3rem;
            color: var(--text-primary);
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            line-height: 1.8;
            text-align: justify;
        }
        .intro-paragraph {
            font-size: 1.3rem;
            background-color: rgba(0, 102, 204, 0.1);
            padding: 25px;
            border-radius: var(--border-radius);
            border-left: 5px solid var(--secondary-color);
            margin-bottom: 40px;
        }
        .highlight {
            background-color: rgba(230, 36, 41, 0.1);
            padding: 25px;
            border-radius: var(--border-radius);
            border: 1px solid rgba(230, 36, 41, 0.3);
            margin: 30px 0;
        }
        .highlight h3 {
            margin-top: 0;
            color: var(--primary-color);
        }
        blockquote {
            border-left: 5px solid var(--accent-yellow);
            padding-left: 25px;
            margin: 30px 0;
            font-style: italic;
            font-size: 1.2rem;
            color: var(--text-secondary);
        }
        .game-image {
            width: 100%;
            max-width: 900px;
            margin: 40px auto;
            border: 3px solid var(--primary-color);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
            transition: var(--transition);
        }
        .game-image:hover {
            transform: scale(1.01);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.9);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-secondary);
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .feature-box {
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(34, 34, 34, 0.9));
            border-radius: var(--border-radius);
            padding: 25px;
            margin: 30px 0;
            border: 1px solid rgba(255, 215, 0, 0.2);
            box-shadow: var(--box-shadow);
        }
        .feature-box h4 {
            color: var(--accent-yellow);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .feature-box h4 i {
            color: var(--primary-color);
        }
        ul, ol {
            margin-left: 25px;
            margin-bottom: 25px;
        }
        li {
            margin-bottom: 12px;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background-color: rgba(0, 0, 0, 0.2);
        }
        .data-table th, .data-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid var(--accent-grey);
        }
        .data-table th {
            background-color: rgba(230, 36, 41, 0.2);
            color: var(--primary-color);
            font-weight: 700;
        }
        .data-table tr:hover {
            background-color: rgba(255, 255, 255, 0.05);
        }
        aside {
            background-color: var(--medium-dark);
            border-radius: var(--border-radius);
            padding: 30px;
            height: fit-content;
            box-shadow: var(--box-shadow);
            position: sticky;
            top: 100px;
        }
        .sidebar-section {
            margin-bottom: 40px;
        }
        .sidebar-section h3 {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(230, 36, 41, 0.3);
        }
        .search-form {
            display: flex;
            margin-bottom: 20px;
        }
        .search-form input {
            flex-grow: 1;
            padding: 12px 15px;
            background-color: rgba(0, 0, 0, 0.3);
            border: 1px solid var(--accent-grey);
            border-right: none;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            color: var(--text-primary);
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: #c41e1e;
        }
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 5px;
            font-size: 1.8rem;
            margin: 10px 0;
        }
        .star-rating i {
            color: var(--accent-grey);
            cursor: pointer;
            transition: var(--transition);
        }
        .star-rating i.active {
            color: var(--accent-yellow);
        }
        .rating-form textarea,
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            background-color: rgba(0, 0, 0, 0.3);
            border: 1px solid var(--accent-grey);
            border-radius: var(--border-radius);
            color: var(--text-primary);
            font-size: 1rem;
            min-height: 120px;
            resize: vertical;
        }
        .rating-form button,
        .comment-form button {
            background-color: var(--secondary-color);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: var(--border-radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-form button:hover,
        .comment-form button:hover {
            background-color: #0055aa;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .comment-form input {
            padding: 12px 15px;
            background-color: rgba(0, 0, 0, 0.3);
            border: 1px solid var(--accent-grey);
            border-radius: var(--border-radius);
            color: var(--text-primary);
            font-size: 1rem;
        }
        .quick-links {
            list-style: none;
            margin-left: 0;
        }
        .quick-links li {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        .quick-links a {
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
        }
        .quick-links a:hover {
            color: var(--primary-color);
            transform: translateX(5px);
        }
        footer {
            background-color: var(--dark-color);
            border-top: 2px solid var(--primary-color);
            padding: 50px 20px 30px;
            margin-top: 50px;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }
        @media (max-width: 900px) {
            .footer-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
        .footer-section h3 {
            color: var(--secondary-color);
            margin-bottom: 25px;
            font-size: 1.5rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: var(--text-secondary);
        }
        .footer-links a:hover {
            color: var(--primary-color);
        }
        friend-link {
            display: block;
            background-color: rgba(0, 0, 0, 0.2);
            padding: 15px;
            border-radius: var(--border-radius);
            margin-bottom: 15px;
            border-left: 3px solid var(--secondary-color);
            transition: var(--transition);
        }
        friend-link:hover {
            background-color: rgba(0, 0, 0, 0.4);
            transform: translateX(5px);
        }
        friend-link a {
            color: var(--text-primary);
            font-weight: 600;
        }
        .copyright {
            max-width: 1400px;
            margin: 50px auto 0;
            padding-top: 30px;
            border-top: 1px solid var(--accent-grey);
            text-align: center;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        .update-time {
            color: var(--primary-color);
            font-weight: 600;
            margin-top: 20px;
            display: inline-block;
            padding: 8px 15px;
            background-color: rgba(230, 36, 41, 0.1);
            border-radius: var(--border-radius);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .header-container {
                flex-wrap: wrap;
            }
            .desktop-nav {
                display: none;
            }
            .mobile-menu-toggle {
                display: block;
            }
            article {
                padding: 25px;
            }
            .main-container {
                padding: 0 15px 30px;
            }
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .fade-in {
            animation: fadeInUp 0.8s ease forwards;
        }
        .text-center {
            text-align: center;
        }
        .text-bold {
            font-weight: 700;
            color: var(--accent-yellow);
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 5px;
        }
        .hidden {
            display: none;
        }
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: var(--dark-color);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--primary-color);
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #c41e1e;
        }
