:root {
            --primary-color: #4a1e66; 
            --secondary-color: #c92a42; 
            --accent-color: #2a9d8f; 
            --light-color: #f8f9fa;
            --dark-color: #212529;
            --gray-color: #6c757d;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f5f3f7;
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        .site-header {
            background: linear-gradient(135deg, var(--primary-color), #2d0b44);
            color: white;
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        .my-logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: white;
            text-decoration: none;
            letter-spacing: -1px;
            background: linear-gradient(to right, #ff9a9e, #fad0c4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: flex;
            align-items: center;
        }
        .my-logo i {
            margin-right: 10px;
            color: var(--secondary-color);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
        }
        .main-nav li {
            margin-left: 2rem;
        }
        .main-nav a {
            color: #e2d9eb;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
            transition: var(--transition);
        }
        .main-nav a:hover {
            color: white;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .breadcrumb {
            max-width: 1200px;
            margin: 1rem auto;
            padding: 0 2rem;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--primary-color);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        .main-content {
            background-color: white;
            border-radius: 12px;
            padding: 3rem;
            box-shadow: var(--shadow);
        }
        .sidebar {
            background-color: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: var(--shadow);
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        h1 {
            color: var(--primary-color);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid var(--accent-color);
            padding-bottom: 0.5rem;
        }
        h2 {
            color: var(--secondary-color);
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem 0;
            padding-top: 1rem;
        }
        h3 {
            color: var(--primary-color);
            font-size: 1.5rem;
            margin: 2rem 0 1rem 0;
        }
        h4 {
            color: var(--accent-color);
            font-size: 1.2rem;
            margin: 1.5rem 0 0.8rem 0;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: var(--dark-color);
            font-weight: 500;
            padding: 1rem;
            background-color: #f0e6f7;
            border-left: 4px solid var(--primary-color);
            border-radius: 4px;
            margin: 2rem 0;
        }
        .highlight {
            background-color: #fff9db;
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 5px solid #f0c929;
            margin: 2rem 0;
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .stat-item {
            background: linear-gradient(145deg, #f0f2f5, #ffffff);
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: 5px 5px 15px #d9dbe3, -5px -5px 15px #ffffff;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--secondary-color);
            display: block;
        }
        .stat-label {
            font-size: 1rem;
            color: var(--gray-color);
        }
        .game-image {
            width: 100%;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: var(--shadow);
            transition: transform 0.5s ease;
        }
        .game-image:hover {
            transform: scale(1.01);
        }
        .caption {
            text-align: center;
            font-style: italic;
            color: var(--gray-color);
            margin-top: -1.5rem;
            margin-bottom: 2rem;
        }
        .internal-link {
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: 600;
            border-bottom: 1px dashed var(--secondary-color);
            transition: var(--transition);
        }
        .internal-link:hover {
            color: var(--primary-color);
            border-bottom-style: solid;
        }
        .quote {
            font-style: italic;
            padding: 2rem;
            background-color: #e9f7f5;
            border-radius: 10px;
            margin: 2.5rem 0;
            position: relative;
        }
        .quote::before {
            content: "\201C";
            font-size: 4rem;
            color: var(--accent-color);
            position: absolute;
            top: -1rem;
            left: 1rem;
            font-family: Georgia, serif;
        }
        .author {
            text-align: right;
            font-weight: bold;
            color: var(--primary-color);
            margin-top: 1rem;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget-title {
            color: var(--primary-color);
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #eee;
        }
        .search-form input {
            width: 100%;
            padding: 0.9rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }
        .search-form button {
            width: 100%;
            padding: 0.9rem;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: var(--secondary-color);
        }
        .rating-widget .stars {
            display: flex;
            justify-content: center;
            font-size: 1.8rem;
            color: #ffc107;
            margin: 1rem 0;
        }
        .rating-widget .stars i {
            cursor: pointer;
            margin: 0 0.2rem;
            transition: var(--transition);
        }
        .rating-widget .stars i:hover {
            transform: scale(1.2);
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            min-height: 120px;
            margin-bottom: 1rem;
            resize: vertical;
        }
        .comment-form button {
            padding: 0.8rem 1.8rem;
            background-color: var(--accent-color);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background-color: #238b7d;
        }
        .update-time {
            background-color: #f8f9fa;
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            font-size: 0.9rem;
            color: var(--gray-color);
            border: 1px dashed #ccc;
        }
        .update-time i {
            margin-right: 0.5rem;
            color: var(--accent-color);
        }
        .site-footer {
            background-color: var(--dark-color);
            color: #ccc;
            padding: 3rem 0 1.5rem 0;
            margin-top: 4rem;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1rem;
        }
        .footer-links h4 {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: white;
            padding-left: 0.5rem;
        }
        friend-link {
            display: block;
            background-color: #2d2d2d;
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 1.5rem;
        }
        friend-link a {
            color: #4db6ac;
            font-weight: 600;
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        friend-link a:hover {
            text-decoration: underline;
        }
        friend-link i {
            margin-right: 0.8rem;
            color: var(--accent-color);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #444;
            color: #888;
            font-size: 0.9rem;
            grid-column: 1 / -1;
        }
        @media (max-width: 992px) {
            .container {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: var(--primary-color);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem 0;
                box-shadow: var(--shadow);
            }
            .main-nav.active ul {
                display: flex;
            }
            .main-nav li {
                margin: 0;
                text-align: center;
                padding: 1rem 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .hamburger {
                display: block;
            }
            .main-content {
                padding: 2rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .footer-container {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .header-container, .container, .breadcrumb, .footer-container {
                padding: 0 1rem;
            }
            .main-content {
                padding: 1.5rem;
            }
            .stats-box {
                grid-template-columns: 1fr;
            }
        }
        .btn {
            display: inline-block;
            padding: 0.8rem 1.8rem;
            background-color: var(--primary-color);
            color: white;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        .tag {
            display: inline-block;
            background-color: #e9ecef;
            color: var(--gray-color);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
        }
        .tag:hover {
            background-color: #dee2e6;
        }
