        * { 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: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        img { max-width: 100%; height: auto; display: block; }
        .site-header {
            background: linear-gradient(90deg, #2c3e50, #4a6491);
            color: white;
            padding: 1rem 2rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .my-logo a {
            font-size: 2rem;
            font-weight: 800;
            color: #FFD700;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            font-family: 'Comic Sans MS', cursive, sans-serif;
            transition: transform 0.3s ease;
        }
        .my-logo a:hover { transform: scale(1.05); }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #ecf0f1;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .main-nav a:hover, .main-nav a.active {
            background-color: rgba(255, 215, 0, 0.2);
            color: #FFD700;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: #f8f9fa;
            padding: 0.8rem 2rem;
            font-size: 0.9rem;
            border-bottom: 1px solid #dee2e6;
        }
        .breadcrumb a {
            color: #4a6491;
            text-decoration: none;
        }
        .breadcrumb a:hover { text-decoration: underline; }
        .main-content {
            flex: 1;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
        }
        .article-container {
            background-color: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }
        .sidebar {
            background-color: white;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        h1 {
            color: #2c3e50;
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 3px solid #FFD700;
        }
        h2 {
            color: #4a6491;
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-left: 0.5rem;
            border-left: 5px solid #3498db;
        }
        h3 {
            color: #2c3e50;
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
        }
        h4 {
            color: #4a6491;
            font-size: 1.3rem;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .intro {
            font-size: 1.3rem;
            color: #2c3e50;
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 5px solid #2ecc71;
            margin-bottom: 2.5rem;
        }
        .highlight {
            background-color: #fffacd;
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px dashed #f1c40f;
            margin: 1.5rem 0;
        }
        em { font-style: italic; color: #555; }
        strong { color: #e74c3c; font-weight: 700; }
        a.content-link {
            color: #2980b9;
            text-decoration: underline;
            font-weight: 600;
        }
        a.content-link:hover { color: #e74c3c; }
        blockquote {
            font-style: italic;
            color: #555;
            border-left: 4px solid #9b59b6;
            padding-left: 1.5rem;
            margin: 2rem 1rem;
        }
        .game-image {
            margin: 2rem auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            max-width: 800px;
        }
        .caption { text-align: center; font-style: italic; color: #7f8c8d; margin-top: 0.5rem; }
        .interactive-module {
            background: #f1f8ff;
            border-radius: 10px;
            padding: 2rem;
            margin: 3rem 0;
            border: 1px solid #c5e1ff;
        }
        .module-title {
            color: #2c3e50;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.8rem 1rem;
            border: 1px solid #bdc3c7;
            border-radius: 6px;
            font-family: inherit;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #3498db;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
        }
        button, .btn {
            background: linear-gradient(to right, #3498db, #2c3e50);
            color: white;
            border: none;
            padding: 0.9rem 1.8rem;
            border-radius: 6px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            text-decoration: none;
            display: inline-block;
        }
        button:hover, .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
            justify-content: center;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover, .star.active { color: #FFD700; }
        .sidebar-widget {
            margin-bottom: 2.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #eee;
        }
        .sidebar-widget:last-child { border: none; }
        .widget-title {
            color: #2c3e50;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #FFD700;
            font-size: 1.4rem;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            list-style: none;
            padding-left: 1.2rem;
            position: relative;
        }
        .related-links li:before {
            content: '🎮';
            position: absolute;
            left: 0;
        }
        .related-links a {
            text-decoration: none;
            color: #4a6491;
            transition: color 0.3s;
        }
        .related-links a:hover { color: #e74c3c; }
        .update-info {
            background-color: #e8f4fc;
            padding: 1rem;
            border-radius: 8px;
            font-size: 0.95rem;
        }
        site-footer {
            background: #2c3e50;
            color: #ecf0f1;
            padding: 3rem 2rem 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
        }
        .footer-widget h3 {
            color: #FFD700;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        friend-link {
            display: inline-block;
            background-color: rgba(255,255,255,0.1);
            padding: 0.5rem 1rem;
            border-radius: 4px;
            margin: 0.3rem;
            text-decoration: none;
            color: #bdc3c7;
            transition: all 0.3s;
        }
        friend-link:hover {
            background-color: #3498db;
            color: white;
        }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #95a5a6;
        }
        @media (max-width: 1024px) {
            .main-content { grid-template-columns: 1fr; }
            .sidebar { position: static; }
        }
        @media (max-width: 768px) {
            .header-container { flex-wrap: wrap; }
            .main-nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 1rem;
                background-color: #2c3e50;
                border-radius: 8px;
                padding: 1rem;
            }
            .main-nav.active ul { display: flex; }
            .hamburger { display: block; }
            h1 { font-size: 2.2rem; }
            .article-container, .sidebar { padding: 1.5rem; }
            .main-content { padding: 0 1rem; }
        }
