:root {
            --primary: #0a7e07;
            --primary-dark: #065f04;
            --secondary: #ff6b00;
            --dark: #1a1a1a;
            --light: #f8f9fa;
            --gray: #6c757d;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #fff;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: var(--dark);
            color: white;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .my-logo span {
            color: var(--secondary);
        }
        .my-logo:hover {
            color: white;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            font-weight: 600;
            padding: 5px 0;
            position: relative;
        }
        .main-nav a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: var(--secondary);
            bottom: 0;
            left: 0;
            transition: var(--transition);
        }
        .main-nav a:hover {
            color: var(--secondary);
        }
        .main-nav a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: #f1f1f1;
            padding: 10px 20px;
            font-size: 0.9rem;
            color: var(--gray);
        }
        .breadcrumb a {
            color: var(--primary);
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            margin: 0 5px;
        }
        .hero {
            background: linear-gradient(rgba(10, 126, 7, 0.85), rgba(6, 95, 4, 0.9)), 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;
            color: white;
            text-align: center;
            padding: 80px 20px;
            margin-bottom: 40px;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 20px 0 40px;
        }
        .main-content {
            background: white;
            border-radius: 10px;
            overflow: hidden;
        }
        .article-section {
            padding: 30px;
            border-bottom: 1px solid #eee;
        }
        .article-section:last-of-type {
            border-bottom: none;
        }
        h2 {
            color: var(--primary-dark);
            font-size: 2.2rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--secondary);
        }
        h3 {
            color: var(--dark);
            font-size: 1.8rem;
            margin: 25px 0 15px;
        }
        h4 {
            color: var(--gray);
            font-size: 1.4rem;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .highlight {
            background-color: #fff9e6;
            border-left: 5px solid var(--secondary);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 5px 5px 0;
        }
        .game-image {
            width: 100%;
            border-radius: 10px;
            margin: 25px 0;
            box-shadow: var(--shadow);
            border: 5px solid white;
            outline: 1px solid #ddd;
        }
        ul, ol {
            margin-left: 25px;
            margin-bottom: 20px;
        }
        li {
            margin-bottom: 10px;
            line-height: 1.7;
        }
        .internal-link {
            color: var(--primary);
            font-weight: 600;
            border-bottom: 1px dotted var(--primary);
        }
        .internal-link:hover {
            color: var(--primary-dark);
            border-bottom-style: solid;
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            background: var(--light);
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            border: 1px solid #ddd;
        }
        .stat {
            text-align: center;
            padding: 15px;
        }
        .stat i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
        .stat h5 {
            font-size: 1.1rem;
            margin-bottom: 10px;
            color: var(--dark);
        }
        .stat p {
            font-size: 2rem;
            font-weight: 800;
            color: var(--secondary);
            margin: 0;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background: var(--light);
            border-radius: 10px;
            padding: 25px;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: var(--primary-dark);
            padding-bottom: 10px;
            border-bottom: 2px solid #ddd;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 12px 15px;
            border: 2px solid #ddd;
            border-radius: 5px 0 0 5px;
            font-size: 1rem;
        }
        .search-form button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: var(--primary-dark);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #ffc107;
            margin: 15px 0;
            cursor: pointer;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .rating-form button {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            margin-top: 15px;
            width: 100%;
            transition: var(--transition);
        }
        .rating-form button:hover {
            background: #e05a00;
        }
        .comment-form textarea {
            width: 100%;
            height: 150px;
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            margin-bottom: 15px;
            resize: vertical;
        }
        .comment-form input {
            width: 100%;
            padding: 12px 15px;
            margin-bottom: 15px;
            border: 2px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }
        .comment-form button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background: var(--primary-dark);
        }
        .update-time {
            font-size: 0.9rem;
            color: var(--gray);
            text-align: center;
            padding: 15px;
            background: white;
            border-radius: 5px;
            border: 1px solid #eee;
        }
        .update-time i {
            margin-right: 8px;
            color: var(--primary);
        }
        .site-footer {
            background-color: var(--dark);
            color: #aaa;
            padding: 50px 0 20px;
            margin-top: 50px;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid #333;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 20px;
        }
        .footer-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }
        .footer-nav-section h4 {
            color: white;
            font-size: 1.1rem;
            margin-bottom: 20px;
        }
        .footer-nav-section ul {
            list-style: none;
            margin: 0;
        }
        .footer-nav-section li {
            margin-bottom: 10px;
        }
        .footer-nav-section a {
            color: #aaa;
        }
        .footer-nav-section a:hover {
            color: white;
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background: #2a2a2a;
            padding: 20px;
            border-radius: 5px;
            margin-top: 20px;
        }
        friend-link h4 {
            color: white;
            margin-bottom: 15px;
        }
        friend-link a {
            color: var(--secondary);
            font-weight: 600;
        }
        friend-link a:hover {
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            font-size: 0.9rem;
            color: #777;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.8rem;
            }
        }
        @media (max-width: 768px) {
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--dark);
                padding: 20px;
                box-shadow: var(--shadow);
            }
            .main-nav.active ul {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .hero {
                padding: 60px 20px;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .footer-container {
                flex-direction: column;
                gap: 30px;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            .article-section {
                padding: 20px 15px;
            }
            .stats-box {
                grid-template-columns: 1fr;
            }
        }
