        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-color: #1a365d;
            --secondary-color: #d4af37;
            --accent-color: #e53e3e;
            --light-bg: #f7fafc;
            --dark-text: #2d3748;
            --light-text: #718096;
            --border-color: #e2e8f0;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        body {
            color: var(--dark-text);
            background-color: var(--light-bg);
            line-height: 1.6;
            overflow-x: hidden;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary-color), #2c5282);
            color: white;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            text-decoration: none;
            color: var(--secondary-color);
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(45deg, #d4af37, #ffd700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: var(--transition);
        }
        .my-logo:hover {
            transform: scale(1.05);
            text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
        }
        .breadcrumb {
            padding: 12px 0;
            background: rgba(0, 0, 0, 0.1);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--secondary-color);
            text-decoration: none;
        }
        .breadcrumb span {
            margin: 0 8px;
            color: #a0aec0;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 5px;
        }
        .nav-menu {
            display: flex;
            gap: 30px;
            list-style: none;
        }
        .nav-menu a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 5px;
            transition: var(--transition);
            position: relative;
        }
        .nav-menu a:hover,
        .nav-menu a.active {
            background: rgba(212, 175, 55, 0.2);
            color: var(--secondary-color);
        }
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--secondary-color);
            transition: var(--transition);
        }
        .nav-menu a:hover::after {
            width: 80%;
        }
        .search-container {
            margin: 30px auto;
            max-width: 600px;
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-input {
            flex: 1;
            padding: 12px 20px;
            border: 2px solid var(--border-color);
            border-radius: 25px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .search-input:focus {
            outline: none;
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
        }
        .search-btn {
            padding: 12px 25px;
            background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
            color: white;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }
        main {
            padding: 40px 0;
        }
        article {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            margin-bottom: 40px;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary-color);
            margin-bottom: 25px;
            line-height: 1.2;
            border-bottom: 3px solid var(--secondary-color);
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2rem;
            color: var(--primary-color);
            margin: 40px 0 20px;
            padding-left: 15px;
            border-left: 5px solid var(--accent-color);
        }
        h3 {
            font-size: 1.6rem;
            color: #2d3748;
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.3rem;
            color: #4a5568;
            margin: 25px 0 12px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: var(--primary-color);
            font-weight: 600;
            background: linear-gradient(90deg, #f7fafc, #fff);
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid var(--secondary-color);
            margin: 30px 0;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(212, 175, 55, 0.2) 0%, transparent 100%);
            padding: 15px 20px;
            border-radius: 8px;
            margin: 20px 0;
            border: 1px solid rgba(212, 175, 55, 0.3);
        }
        .keyword {
            font-weight: 700;
            color: var(--primary-color);
            background: rgba(26, 54, 93, 0.1);
            padding: 2px 6px;
            border-radius: 3px;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .content-img {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 10px;
            margin: 30px auto;
            display: block;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            border: 3px solid var(--border-color);
        }
        .content-img:hover {
            transform: scale(1.02);
            border-color: var(--secondary-color);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--light-text);
            margin-top: -20px;
            margin-bottom: 30px;
            font-size: 0.95rem;
        }
        .interactive-section {
            background: var(--light-bg);
            padding: 30px;
            border-radius: 10px;
            margin: 40px 0;
            border: 2px solid var(--border-color);
        }
        .rating-form, .comment-form {
            display: grid;
            gap: 15px;
            margin-top: 20px;
        }
        .star-rating {
            display: flex;
            gap: 5px;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #ccc;
            cursor: pointer;
            transition: var(--transition);
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: var(--secondary-color);
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }
        textarea:focus, input:focus {
            outline: none;
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
        }
        .submit-btn {
            background: linear-gradient(45deg, var(--primary-color), #2c5282);
            color: white;
            border: none;
            padding: 14px 28px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            justify-self: start;
        }
        .submit-btn:hover {
            background: linear-gradient(45deg, var(--accent-color), #c53030);
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(0, 0, 0, 0.15);
        }
        .related-games {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
            margin: 50px 0;
        }
        .game-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .game-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .game-card a {
            text-decoration: none;
            color: inherit;
            display: block;
            padding: 20px;
        }
        .game-card h4 {
            color: var(--primary-color);
            margin-top: 0;
            border-bottom: 2px solid var(--border-color);
            padding-bottom: 10px;
        }
        footer {
            background: var(--primary-color);
            color: white;
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: var(--secondary-color);
            margin-bottom: 20px;
            font-size: 1.4rem;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 15px 0;
        }
        friend-link {
            background: rgba(255, 255, 255, 0.1);
            padding: 8px 15px;
            border-radius: 5px;
            transition: var(--transition);
        }
        friend-link:hover {
            background: rgba(212, 175, 55, 0.3);
            transform: translateX(5px);
        }
        friend-link a {
            color: white;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #a0aec0;
        }
        .update-time {
            background: rgba(212, 175, 55, 0.1);
            padding: 10px 20px;
            border-radius: 5px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin: 20px 0;
            color: var(--primary-color);
            font-weight: 600;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.8rem; }
            article { padding: 30px; }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-menu {
                position: fixed;
                top: 100px;
                left: -100%;
                flex-direction: column;
                background: var(--primary-color);
                width: 100%;
                text-align: center;
                transition: 0.5s;
                box-shadow: var(--shadow);
                padding: 20px 0;
                gap: 0;
            }
            .nav-menu.active {
                left: 0;
            }
            .nav-menu li {
                margin: 15px 0;
            }
            .header-top {
                padding: 15px 20px;
            }
            .container {
                padding: 0 15px;
            }
            article {
                padding: 25px 20px;
            }
            h1 {
                font-size: 2rem;
            }
            .related-games {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
        }
        @media (max-width: 576px) {
            .search-form {
                flex-direction: column;
            }
            .search-input, .search-btn {
                width: 100%;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
            .related-games {
                grid-template-columns: 1fr;
            }
            .star-rating label {
                font-size: 1.8rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article {
            animation: fadeIn 0.8s ease-out;
        }
        .pulse {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        ::-webkit-scrollbar-thumb {
            background: var(--primary-color);
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #2c5282;
        }
