:root {
            --primary: #2a5caa; 
            --secondary: #ffcc00; 
            --accent: #e63946; 
            --dark: #1a1a2e;
            --light: #f8f9fa;
            --gray: #6c757d;
            --shadow: 0 5px 15px rgba(0,0,0,0.08);
            --transition: all 0.3s ease;
            --border-radius: 12px;
            --max-width: 1200px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #fff;
            overflow-x: hidden;
        }
        .site-header {
            background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Comic Sans MS', cursive, sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--secondary);
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transition: var(--transition);
        }
        .my-logo:hover {
            color: white;
            transform: scale(1.05);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            transition: var(--transition);
        }
        .main-nav a:hover,
        .main-nav a.active {
            background-color: var(--secondary);
            color: var(--dark);
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 0.8rem 2rem;
            font-size: 0.9rem;
            border-bottom: 1px solid #dee2e6;
        }
        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1593305841991-05c297ba4575?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            color: white;
            text-align: center;
            padding: 5rem 2rem;
            margin-bottom: 3rem;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }
        .last-updated {
            background-color: var(--secondary);
            color: var(--dark);
            display: inline-block;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: bold;
            font-size: 0.9rem;
        }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        article {
            padding-right: 2rem;
            border-right: 1px solid #eee;
        }
        article h1,
        article h2,
        article h3,
        article h4 {
            color: var(--dark);
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        article h1 {
            font-size: 2.8rem;
            color: var(--primary);
            border-bottom: 3px solid var(--secondary);
            padding-bottom: 0.5rem;
        }
        article h2 {
            font-size: 2rem;
            color: var(--primary);
            padding-left: 1rem;
            border-left: 5px solid var(--accent);
        }
        article h3 {
            font-size: 1.6rem;
            color: var(--dark);
        }
        article h4 {
            font-size: 1.3rem;
            color: var(--gray);
        }
        article p {
            margin-bottom: 1.5rem;
            text-align: justify;
            hyphens: auto;
        }
        article .intro {
            font-size: 1.2rem;
            background-color: #f0f8ff;
            padding: 2rem;
            border-radius: var(--border-radius);
            border-left: 4px solid var(--primary);
            margin: 2rem 0;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fff9e6 0%, #fff0cc 100%);
            border: 2px dashed var(--secondary);
            padding: 2rem;
            border-radius: var(--border-radius);
            margin: 2.5rem 0;
            box-shadow: var(--shadow);
        }
        .game-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: var(--border-radius);
            margin: 2rem auto;
            display: block;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            transition: var(--transition);
        }
        .game-image:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        .content-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            border-bottom: 2px dotted var(--primary);
            transition: var(--transition);
        }
        .content-link:hover {
            color: var(--accent);
            border-bottom-style: solid;
            background-color: #f0f8ff;
        }
        .tip {
            background-color: #e8f4f8;
            border-left: 5px solid #17a2b8;
            padding: 1.2rem;
            margin: 1.8rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .tip i {
            color: #17a2b8;
            margin-right: 10px;
        }
        .sidebar {
            padding-top: 2rem;
        }
        .widget {
            background-color: #f8f9fa;
            padding: 1.8rem;
            border-radius: var(--border-radius);
            margin-bottom: 2.5rem;
            box-shadow: var(--shadow);
        }
        .widget h3 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--secondary);
        }
        .search-form {
            display: flex;
            margin-bottom: 1.5rem;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.9rem;
            border: 2px solid #ccc;
            border-right: none;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: var(--dark);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #ffcc00;
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars span {
            margin: 0 3px;
            transition: var(--transition);
        }
        .stars span:hover {
            transform: scale(1.3);
        }
        #rating-form button {
            background-color: var(--accent);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            width: 100%;
            margin-top: 1rem;
            transition: var(--transition);
        }
        #rating-form button:hover {
            background-color: #c1121f;
            transform: translateY(-3px);
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: var(--border-radius);
            font-family: inherit;
            font-size: 1rem;
            margin-bottom: 1rem;
            min-height: 150px;
            resize: vertical;
        }
        .comment-form button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            width: 100%;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background-color: #1e4a8f;
        }
        .related-links ul {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 0.9rem;
            padding-bottom: 0.9rem;
            border-bottom: 1px dashed #ddd;
        }
        .related-links a {
            color: var(--dark);
            text-decoration: none;
            display: flex;
            align-items: center;
            transition: var(--transition);
        }
        .related-links a:hover {
            color: var(--primary);
            padding-left: 10px;
        }
        .related-links i {
            margin-right: 10px;
            color: var(--primary);
        }
        .site-footer {
            background-color: var(--dark);
            color: white;
            padding: 3rem 2rem 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            max-width: var(--max-width);
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--secondary);
            margin-bottom: 1rem;
        }
        friend-link {
            display: block;
            margin: 1.5rem 0;
            padding: 1rem;
            background-color: rgba(255,255,255,0.05);
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        friend-link a {
            color: #a0d2ff;
            text-decoration: none;
            font-weight: 600;
        }
        friend-link:hover {
            background-color: rgba(255,255,255,0.1);
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 992px) {
            .container {
                grid-template-columns: 1fr;
            }
            article {
                border-right: none;
                padding-right: 0;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
        }
        @media (max-width: 768px) {
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--dark);
                padding: 1rem 0;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            }
            .main-nav.active ul {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .header-container {
                padding: 0 1rem;
            }
            .hero {
                padding: 3rem 1rem;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .container, .breadcrumb {
                padding: 0 1rem;
            }
            article h1 {
                font-size: 2.2rem;
            }
        }
