        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #c90a3a;
            --secondary-color: #0d3b66;
            --accent-color: #f4a261;
            --light-color: #f8f9fa;
            --dark-color: #212529;
            --gray-color: #6c757d;
            --success-color: #28a745;
            --warning-color: #ffc107;
            --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            --font-heading: 'Georgia', 'Times New Roman', serif;
            --transition: all 0.3s ease;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --border-radius: 8px;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-main);
            line-height: 1.7;
            color: var(--dark-color);
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            min-height: 100vh;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(13, 59, 102, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-family: var(--font-heading);
            font-size: 2.2rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
        }
        .my-logo:hover {
            color: var(--accent-color);
            transform: translateY(-2px);
        }
        .my-logo i {
            color: var(--primary-color);
            font-size: 2.5rem;
        }
        .breadcrumb {
            background: rgba(255, 255, 255, 0.1);
            padding: 12px 0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
        }
        .breadcrumb a {
            color: var(--light-color);
            text-decoration: none;
            transition: var(--transition);
        }
        .breadcrumb a:hover {
            color: var(--accent-color);
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin: 0 10px;
            color: var(--gray-color);
        }
        .main-nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 12px;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        .nav-links a:hover {
            background: rgba(201, 10, 58, 0.8);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        main {
            background: white;
            border-radius: 20px 20px 0 0;
            margin-top: 20px;
            box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
            overflow: hidden;
        }
        .hero {
            background: linear-gradient(rgba(13, 59, 102, 0.9), rgba(201, 10, 58, 0.8)), url('https://images.unsplash.com/photo-1516487200032-8532cb603261?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 80px 0;
            text-align: center;
            margin-bottom: 40px;
        }
        .hero h1 {
            font-family: var(--font-heading);
            font-size: 3.2rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            opacity: 0.95;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        article {
            padding-right: 20px;
        }
        h1, h2, h3, h4 {
            font-family: var(--font-heading);
            color: var(--secondary-color);
            margin-bottom: 1.2rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 3rem;
            border-bottom: 3px solid var(--primary-color);
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2.2rem;
            margin-top: 2.5rem;
            padding-left: 15px;
            border-left: 5px solid var(--accent-color);
        }
        h3 {
            font-size: 1.8rem;
            margin-top: 2rem;
            color: var(--primary-color);
        }
        h4 {
            font-size: 1.4rem;
            margin-top: 1.8rem;
            color: var(--dark-color);
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .intro-text {
            font-size: 1.3rem;
            background: #f8f9fa;
            padding: 25px;
            border-radius: var(--border-radius);
            border-left: 4px solid var(--primary-color);
            margin: 30px 0;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(201, 10, 58, 0.1) 0%, rgba(244, 162, 97, 0.1) 100%);
            padding: 25px;
            border-radius: var(--border-radius);
            margin: 25px 0;
            border: 1px solid rgba(201, 10, 58, 0.2);
        }
        .game-feature {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .game-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 25px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 2px solid transparent;
        }
        .game-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-color);
        }
        .game-card h4 {
            color: var(--secondary-color);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .game-card h4 i {
            color: var(--primary-color);
        }
        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
            font-weight: 600;
        }
        a:hover {
            color: var(--secondary-color);
            text-decoration: underline;
        }
        .content-link {
            background: rgba(201, 10, 58, 0.08);
            padding: 2px 6px;
            border-radius: 4px;
            border-bottom: 2px solid transparent;
        }
        .content-link:hover {
            background: rgba(201, 10, 58, 0.15);
            border-bottom: 2px solid var(--primary-color);
            text-decoration: none;
        }
        .article-image {
            width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            margin: 30px 0;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .article-image:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--gray-color);
            margin-top: -25px;
            margin-bottom: 30px;
            font-size: 0.95rem;
        }
        aside {
            background: #f8f9fa;
            padding: 25px;
            border-radius: var(--border-radius);
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget h3 {
            font-size: 1.4rem;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary-color);
            margin-bottom: 20px;
        }
        .search-form, .comment-form, .rating-form {
            background: white;
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin: 30px 0;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--secondary-color);
        }
        input, select, textarea {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e9ecef;
            border-radius: var(--border-radius);
            font-family: var(--font-main);
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(201, 10, 58, 0.1);
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .btn {
            display: inline-block;
            background: var(--primary-color);
            color: white;
            padding: 14px 28px;
            border: none;
            border-radius: var(--border-radius);
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }
        .btn:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(0, 0, 0, 0.2);
            text-decoration: none;
            color: white;
        }
        .btn-full {
            width: 100%;
        }
        .rating-stars {
            display: flex;
            gap: 5px;
            margin: 15px 0;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover, .star.active {
            color: var(--warning-color);
        }
        .comment {
            background: white;
            padding: 20px;
            border-radius: var(--border-radius);
            margin-bottom: 20px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            border-left: 4px solid var(--primary-color);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-size: 0.9rem;
            color: var(--gray-color);
        }
        footer {
            background: var(--secondary-color);
            color: white;
            padding: 60px 0 30px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: white;
            font-size: 1.4rem;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary-color);
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 8px;
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.1);
            padding: 15px;
            border-radius: var(--border-radius);
            margin-bottom: 10px;
            transition: var(--transition);
        }
        friend-link:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateX(5px);
        }
        friend-link a {
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        .update-time {
            background: var(--light-color);
            padding: 10px 20px;
            border-radius: var(--border-radius);
            text-align: center;
            margin: 40px 0;
            font-style: italic;
            color: var(--gray-color);
            border: 1px dashed var(--primary-color);
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            article {
                padding-right: 0;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: var(--secondary-color);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 20px;
                box-shadow: var(--shadow);
                z-index: 999;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                width: 100%;
            }
            .nav-links a {
                display: block;
                padding: 15px;
                border-radius: var(--border-radius);
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            .my-logo {
                font-size: 1.8rem;
            }
            .hero {
                padding: 50px 0;
            }
            .game-feature {
                grid-template-columns: 1fr;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        .text-center { text-align: center; }
        .text-bold { font-weight: 700; }
        .text-primary { color: var(--primary-color); }
        .text-secondary { color: var(--secondary-color); }
        .mb-20 { margin-bottom: 20px; }
        .mb-30 { margin-bottom: 30px; }
        .mt-30 { margin-top: 30px; }
        .p-20 { padding: 20px; }
        .d-flex { display: flex; }
        .align-center { align-items: center; }
        .justify-between { justify-content: space-between; }
        .gap-10 { gap: 10px; }
        .gap-20 { gap: 20px; }
