        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; font-size: 16px; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #f0f4f8 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { font-family: 'Luckiest Guy', 'Comic Sans MS', cursive; color: #FF4655; margin-bottom: 1rem; line-height: 1.2; }
        h1 { font-size: clamp(2.5rem, 5vw, 4rem); text-align: center; margin-top: 1.5rem; }
        h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); border-left: 5px solid #FBB829; padding-left: 15px; margin-top: 2.5rem; }
        h3 { font-size: clamp(1.4rem, 3vw, 1.8rem); color: #1B1464; margin-top: 2rem; }
        h4 { font-size: 1.2rem; color: #555; margin-top: 1.5rem; }
        p { margin-bottom: 1.2rem; text-align: justify; }
        a { color: #1B1464; text-decoration: none; transition: color 0.3s ease, background-color 0.3s ease; }
        a:hover { color: #FF4655; }
        strong { color: #FF4655; font-weight: 700; }
        em { font-style: italic; color: #666; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        main { flex: 1; padding-bottom: 3rem; }
        .site-header {
            background: linear-gradient(90deg, #1B1464 0%, #6C3FB4 100%);
            padding: 1rem 0;
            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;
        }
        .my-logo {
            font-family: 'Luckiest Guy', cursive;
            font-size: 2.2rem;
            color: #FBB829;
            text-shadow: 3px 3px 0 #FF4655;
            letter-spacing: 1px;
            text-decoration: none;
        }
        .my-logo:hover { color: #FFF; text-shadow: 3px 3px 0 #1B1464; }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #FFF;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 20px;
        }
        .main-nav a:hover {
            background-color: #FF4655;
            color: #FFF;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 0.8rem 20px;
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: #6C3FB4; }
        .breadcrumb span { color: #666; }
        .article-body {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin-top: 2rem;
        }
        @media (max-width: 992px) {
            .article-body { grid-template-columns: 1fr; }
        }
        .article-main { background: #fff; padding: 2.5rem; border-radius: 15px; box-shadow: 0 5px 25px rgba(0,0,0,0.05); }
        .intro-highlight {
            background: linear-gradient(120deg, #fef9e7 0%, #e8f4fc 100%);
            border-left: 6px solid #FBB829;
            padding: 1.5rem;
            margin-bottom: 2rem;
            font-size: 1.1rem;
            border-radius: 0 10px 10px 0;
        }
        .game-image {
            width: 100%;
            border-radius: 10px;
            overflow: hidden;
            margin: 2rem 0;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #777;
            padding: 0.5rem;
            background: #f9f9f9;
            border-radius: 0 0 10px 10px;
        }
        .sidebar {
            background: #fff;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 { font-size: 1.3rem; border-bottom: 2px dashed #FBB829; padding-bottom: 0.5rem; }
        .quick-links ul {
            list-style: none;
            margin-top: 1rem;
        }
        .quick-links li {
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
        }
        .quick-links li::before {
            content: '🎯';
            position: absolute;
            left: 0;
        }
        .quick-links a {
            display: block;
            padding: 0.5rem;
            border-radius: 5px;
            background: #f8f9fa;
        }
        .quick-links a:hover {
            background: #e9ecef;
            transform: translateX(5px);
            transition: all 0.3s ease;
        }
        .interactive-module {
            background: #f0f8ff;
            border: 2px solid #1B1464;
            border-radius: 10px;
            padding: 1.5rem;
            margin: 2.5rem 0;
        }
        .module-title {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #1B1464;
            margin-bottom: 1rem;
        }
        .module-title i { font-size: 1.5rem; }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-group { display: flex; flex-direction: column; }
        label { font-weight: 600; margin-bottom: 0.3rem; color: #555; }
        input, textarea, select {
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #6C3FB4;
            box-shadow: 0 0 0 3px rgba(108, 63, 180, 0.2);
        }
        button, .btn {
            background: linear-gradient(to right, #FF4655, #FF6B7A);
            color: white;
            border: none;
            padding: 0.9rem 1.8rem;
            border-radius: 30px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            align-self: flex-start;
            text-align: center;
        }
        button:hover, .btn:hover {
            background: linear-gradient(to right, #1B1464, #6C3FB4);
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(27, 20, 100, 0.2);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 5px;
            margin: 0.5rem 0;
        }
        .star-rating input { display: none; }
        .star-rating label {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label { color: #FBB829; }
        .site-footer {
            background: #1a1a2e;
            color: #ccc;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: #FBB829;
            border-bottom: 2px solid #FF4655;
            padding-bottom: 0.5rem;
            margin-bottom: 1.5rem;
        }
        friend-link {
            display: block;
            background: #252547;
            margin-bottom: 0.8rem;
            padding: 0.8rem;
            border-radius: 5px;
            transition: background 0.3s;
        }
        friend-link:hover {
            background: #3a3a6e;
        }
        friend-link a {
            color: #a3d9ff;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #444;
            font-size: 0.9rem;
            color: #999;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #1B1464;
                padding: 1rem;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            }
            .main-nav.active ul { display: flex; }
            .header-container { position: relative; }
            .article-main { padding: 1.5rem; }
            h1 { font-size: 2.2rem; }
            .interactive-module { padding: 1rem; }
        }
        .last-updated {
            text-align: right;
            font-size: 0.9rem;
            color: #777;
            margin-bottom: 2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px dotted #ccc;
        }
        .tip-box {
            background: #e1f5fe;
            border-radius: 10px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-left: 5px solid #0288d1;
        }
        .tip-box::before {
            content: "💡 Pro Tip:";
            font-weight: bold;
            color: #01579b;
            display: block;
            margin-bottom: 0.5rem;
        }
        .highlight-link {
            background: linear-gradient(120deg, #fffbeb 0%, #fef3c7 100%);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
            border: 1px solid #FBB829;
        }
        .key-term {
            background: #f3e5f5;
            padding: 0.1rem 0.4rem;
            border-radius: 3px;
            font-family: monospace;
            color: #7b1fa2;
        }
