        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        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;
            padding-bottom: 60px;
        }
        a {
            color: #3a6ea5;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #ff6b35;
            text-shadow: 0 0 8px rgba(255, 107, 53, 0.2);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        ul, ol {
            padding-left: 2em;
            margin: 1em 0;
        }
        .site-header {
            background: linear-gradient(90deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            padding: 1.2rem 2rem;
            box-shadow: 0 4px 18px 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 {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(45deg, #ffd700, #ff6b35);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: -1px;
        }
        .my-logo:hover {
            transform: scale(1.03);
            transition: transform 0.3s ease;
        }
        .main-nav ul {
            display: flex;
            gap: 1.8rem;
            list-style: none;
            padding: 0;
        }
        .main-nav a {
            color: #e0e7ff;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 5px;
            font-size: 1.05rem;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background-color: rgba(255, 255, 255, 0.15);
            color: #ffd700;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            background: none;
            border: none;
            color: white;
        }
        .breadcrumb {
            max-width: 1400px;
            margin: 1.2rem auto 0.5rem;
            padding: 0 2rem;
            font-size: 0.95rem;
            color: #666;
        }
        .breadcrumb a {
            color: #3a6ea5;
        }
        .breadcrumb a:hover {
            color: #ff6b35;
        }
        .main-container {
            max-width: 1400px;
            margin: 2.5rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 3rem;
        }
        .content-area {
            background: white;
            border-radius: 18px;
            padding: 2.5rem 3rem;
            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
        }
        article h1 {
            font-size: 2.8rem;
            color: #1e3c72;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 4px solid #ffd700;
            padding-bottom: 0.8rem;
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 2.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px dashed #ddd;
        }
        article h2 {
            font-size: 2.1rem;
            color: #2a5298;
            margin: 2.8rem 0 1.2rem;
            padding-left: 0.8rem;
            border-left: 6px solid #ff6b35;
        }
        article h3 {
            font-size: 1.7rem;
            color: #3a6ea5;
            margin: 2.2rem 0 1rem;
        }
        article h4 {
            font-size: 1.4rem;
            color: #555;
            margin: 1.8rem 0 0.8rem;
        }
        article p {
            margin-bottom: 1.6rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 107, 53, 0.1) 100%);
            padding: 1.8rem;
            border-radius: 12px;
            border-left: 5px solid #ff6b35;
            margin: 2rem 0;
        }
        .game-img {
            width: 100%;
            max-width: 800px;
            margin: 2.5rem auto;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
            transition: transform 0.5s ease;
        }
        .game-img:hover {
            transform: translateY(-5px);
        }
        .interactive-section {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 2rem;
            margin: 3rem 0;
        }
        .interactive-section h3 {
            color: #1e3c72;
            margin-top: 0;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: white;
            border-radius: 12px;
            padding: 1.8rem;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
        }
        .widget h3 {
            color: #2a5298;
            margin-bottom: 1.2rem;
            padding-bottom: 0.7rem;
            border-bottom: 2px solid #ffd700;
            font-size: 1.4rem;
        }
        .quick-links ul {
            list-style: none;
            padding: 0;
        }
        .quick-links li {
            margin-bottom: 0.9rem;
            padding-left: 1.2rem;
            position: relative;
        }
        .quick-links li:before {
            content: '🎮';
            position: absolute;
            left: 0;
        }
        .search-box input[type="text"] {
            width: 100%;
            padding: 0.9rem 1.2rem;
            border: 2px solid #cbd5e0;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        .search-box input[type="text"]:focus {
            outline: none;
            border-color: #3a6ea5;
            box-shadow: 0 0 0 3px rgba(58, 110, 165, 0.2);
        }
        .search-box button {
            width: 100%;
            background: linear-gradient(90deg, #2a5298, #3a6ea5);
            color: white;
            border: none;
            padding: 0.9rem;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1rem;
            margin-top: 0.8rem;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s;
        }
        .search-box button:hover {
            background: linear-gradient(90deg, #1e3c72, #2a5298);
            transform: translateY(-2px);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #444;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.9rem;
            border: 1px solid #cbd5e0;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #3a6ea5;
            box-shadow: 0 0 0 3px rgba(58, 110, 165, 0.2);
        }
        .rating-stars {
            direction: rtl;
            unicode-bidi: bidi-override;
            font-size: 2rem;
            display: inline-block;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            color: #ccc;
            cursor: pointer;
            padding: 0 0.1rem;
        }
        .rating-stars input:checked ~ label,
        .rating-stars label:hover,
        .rating-stars label:hover ~ label {
            color: #ffd700;
        }
        .site-footer {
            background: linear-gradient(90deg, #1a1a2e 0%, #16213e 100%);
            color: #b0b8d0;
            padding: 3rem 2rem 2rem;
            margin-top: 4rem;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(45deg, #ffd700, #ff6b35);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1.5rem;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 1rem;
        }
        friend-link {
            display: inline-block;
            background: rgba(255, 255, 255, 0.05);
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-size: 0.95rem;
            transition: background 0.3s ease;
        }
        friend-link:hover {
            background: rgba(255, 107, 53, 0.2);
        }
        .copyright {
            grid-column: 1 / -1;
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #2d3748;
            font-size: 0.9rem;
            color: #8a94a6;
        }
        @media (max-width: 1024px) {
            .main-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1e3c72;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1.5rem 2rem;
                box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            }
            .main-nav.active ul {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .content-area {
                padding: 1.8rem;
            }
            article h1 {
                font-size: 2.2rem;
            }
            article h2 {
                font-size: 1.8rem;
            }
            .footer-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }
