        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.7;
            color: #333;
            background: #f9f7ff;
            max-width: 100vw;
            overflow-x: hidden;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { font-family: 'Arial Rounded MT Bold', 'Arial', sans-serif; color: #5a2d81; margin-bottom: 1rem; line-height: 1.3; }
        h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); text-align: center; margin-top: 1.5rem; }
        h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); border-bottom: 3px solid #ff9f00; padding-bottom: 0.5rem; margin-top: 2.5rem; }
        h3 { font-size: clamp(1.4rem, 3vw, 1.8rem); color: #7e4ca6; margin-top: 2rem; }
        p { margin-bottom: 1.5rem; text-align: justify; hyphens: auto; }
        a { color: #5a2d81; text-decoration: none; transition: color 0.3s; }
        a:hover { color: #ff9f00; }
        strong { color: #5a2d81; }
        em { font-style: italic; color: #666; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        .main-content { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
        .site-header {
            background: linear-gradient(135deg, #5a2d81, #7e4ca6);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(90, 45, 129, 0.2);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            color: white;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .logo i { color: #ff9f00; }
        .nav-desktop { display: flex; gap: 2rem; }
        .nav-desktop a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            transition: all 0.3s;
        }
        .nav-desktop a:hover, .nav-desktop a.active {
            background: #ff9f00;
            color: #5a2d81;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: #5a2d81;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1.5rem;
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a {
            color: white;
            padding: 1rem;
            border-bottom: 1px solid #7e4ca6;
            font-weight: 600;
        }
        .nav-mobile a:hover { background: #7e4ca6; }
        .breadcrumb {
            padding: 1rem 0;
            background: #f0ebf9;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb a { color: #5a2d81; }
        .breadcrumb a:hover { text-decoration: underline; }
        .breadcrumb span { color: #666; }
        .article-hero {
            background: linear-gradient(to right, #e6d8f5, #f8f4ff);
            padding: 2.5rem;
            border-radius: 20px;
            margin-bottom: 2.5rem;
            border-left: 8px solid #ff9f00;
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px dashed #d9c8f0;
        }
        .featured-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(90, 45, 129, 0.2);
            margin: 2.5rem auto;
            border: 5px solid white;
        }
        .tip-box, .warning-box {
            background: #fff8e1;
            border-left: 6px solid #ff9f00;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .warning-box { background: #ffebee; border-left-color: #f44336; }
        .gameplay-step {
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin: 2rem 0;
            transition: transform 0.3s;
        }
        .gameplay-step:hover { transform: translateY(-5px); }
        .step-number {
            display: inline-block;
            background: #5a2d81;
            color: white;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            text-align: center;
            line-height: 36px;
            font-weight: bold;
            margin-right: 1rem;
        }
        .interactive-module {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(90, 45, 129, 0.1);
            margin: 3rem 0;
        }
        .module-title {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        .module-title i { color: #ff9f00; font-size: 1.8rem; }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .form-input, .form-textarea {
            flex: 1 1 300px;
            padding: 1rem;
            border: 2px solid #d9c8f0;
            border-radius: 10px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: #5a2d81;
        }
        .form-textarea { min-height: 150px; resize: vertical; }
        .form-button {
            background: linear-gradient(to right, #5a2d81, #7e4ca6);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
        }
        .form-button:hover {
            background: linear-gradient(to right, #7e4ca6, #ff9f00);
            transform: scale(1.05);
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 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: #ff9f00; }
        .footer-links {
            background: #5a2d81;
            padding: 3rem 0;
            margin-top: 4rem;
        }
        .web-link {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            padding: 0.8rem 1.5rem;
            margin: 0.5rem;
            border-radius: 50px;
            transition: all 0.3s;
        }
        .web-link:hover {
            background: #ff9f00;
            color: #5a2d81;
            transform: translateY(-3px);
        }
        .links-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.5rem;
        }
        .site-footer {
            background: #2d1b40;
            color: #c9b6e0;
            text-align: center;
            padding: 2.5rem 0;
            font-size: 0.95rem;
        }
        .footer-container { max-width: 800px; margin: 0 auto; }
        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin: 1.5rem 0;
            font-size: 1.5rem;
        }
        .social-links a { color: #c9b6e0; }
        .social-links a:hover { color: #ff9f00; }
        @media (max-width: 992px) {
            .header-container { flex-wrap: wrap; }
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            .article-hero { padding: 1.8rem; }
            .interactive-module { padding: 1.5rem; }
        }
        @media (max-width: 768px) {
            .container { padding: 0 1rem; }
            h1 { font-size: 2rem; }
            .article-meta { flex-direction: column; }
            .form-button { width: 100%; justify-content: center; }
            .web-link { font-size: 0.9rem; padding: 0.6rem 1rem; }
        }
        @media (max-width: 480px) {
            .logo a { font-size: 1.8rem; }
            .star-rating label { font-size: 1.7rem; }
            .gameplay-step { padding: 1.2rem; }
        }
