        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f0e17;
            color: #a7a9be;
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            background-image: radial-gradient(circle at 20% 30%, rgba(33, 33, 66, 0.8) 0%, transparent 20%), radial-gradient(circle at 80% 80%, rgba(15, 14, 23, 0.9) 0%, transparent 20%);
        }
        a {
            color: #ff8906;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #f25f4c;
            text-shadow: 0 0 8px rgba(242, 95, 76, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0c0b13 0%, #1a1a2e 100%);
            border-bottom: 2px solid #ff8906;
            padding: 1.2rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ff8906, #e53170);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            letter-spacing: 1px;
        }
        .logo a:hover {
            background: linear-gradient(90deg, #f25f4c, #ff8906);
            -webkit-background-clip: text;
            background-clip: text;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
        }
        .main-nav a:hover {
            background-color: rgba(255, 137, 6, 0.1);
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #8a8ca5;
            border-bottom: 1px solid #2e2e3e;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: #8a8ca5;
        }
        .breadcrumb a:hover {
            color: #ff8906;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #ff8906;
            background: none;
            border: none;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 80%;
                height: calc(100vh - 80px);
                background-color: #0c0b13;
                transition: left 0.5s ease;
                padding: 2rem;
                box-shadow: 5px 0 15px rgba(0,0,0,0.3);
                z-index: 999;
            }
            .main-nav.active {
                left: 0;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 1.5rem;
            }
        }
        .search-section {
            background-color: #1a1a2e;
            padding: 2rem 0;
            margin: 2rem 0;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #2e2e3e;
        }
        .search-section h2 {
            color: #fffffe;
            margin-bottom: 1rem;
            font-size: 1.8rem;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: none;
            background-color: #2e2e3e;
            color: #fffffe;
            font-size: 1rem;
            outline: none;
        }
        .search-input::placeholder {
            color: #8a8ca5;
        }
        .search-button {
            background: linear-gradient(90deg, #ff8906, #e53170);
            color: #0f0e17;
            border: none;
            padding: 0 2rem;
            font-weight: bold;
            cursor: pointer;
            font-size: 1.1rem;
            transition: transform 0.3s ease;
        }
        .search-button:hover {
            transform: scale(1.05);
        }
        main {
            flex: 1;
            padding: 2rem 0;
        }
        article {
            background-color: #16161e;
            border-radius: 16px;
            padding: 3rem;
            margin-bottom: 3rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            border: 1px solid #2e2e3e;
        }
        h1 {
            color: #fffffe;
            font-size: 3rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-align: center;
            border-bottom: 3px solid #ff8906;
            padding-bottom: 1rem;
        }
        h2 {
            color: #ff8906;
            font-size: 2.2rem;
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #2e2e3e;
        }
        h3 {
            color: #e53170;
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .intro {
            font-size: 1.3rem;
            background-color: rgba(255, 137, 6, 0.05);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 5px solid #ff8906;
            margin-bottom: 2.5rem;
        }
        .highlight {
            background-color: rgba(255, 137, 6, 0.1);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
            border-left: 5px solid #e53170;
        }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .game-card {
            background: linear-gradient(145deg, #1e1e2e, #171727);
            border-radius: 12px;
            padding: 1.5rem;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            border: 1px solid #2e2e3e;
        }
        .game-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 25px rgba(255, 137, 6, 0.2);
            border-color: #ff8906;
        }
        .game-card h3 {
            color: #fffffe;
            margin-top: 1rem;
        }
        .game-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 1rem;
        }
        .rating {
            color: #ffd700;
            margin: 0.5rem 0;
        }
        .key-points {
            list-style: none;
            padding-left: 1.5rem;
            margin: 1.5rem 0;
        }
        .key-points li {
            margin-bottom: 0.8rem;
            position: relative;
        }
        .key-points li:before {
            content: '✨';
            position: absolute;
            left: -1.5rem;
        }
        blockquote {
            font-style: italic;
            color: #8a8ca5;
            border-left: 4px solid #e53170;
            padding-left: 1.5rem;
            margin: 2rem 0;
            background-color: rgba(229, 49, 112, 0.05);
            padding: 1.5rem;
            border-radius: 0 10px 10px 0;
        }
        .user-interaction {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 4rem 0;
        }
        .comment-section, .rating-section {
            background-color: #1a1a2e;
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid #2e2e3e;
        }
        .interaction-title {
            color: #fffffe;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .interaction-title i {
            color: #ff8906;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            color: #a7a9be;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-control {
            width: 100%;
            padding: 0.8rem 1rem;
            background-color: #2e2e3e;
            border: 1px solid #444;
            border-radius: 6px;
            color: #fffffe;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-control:focus {
            outline: none;
            border-color: #ff8906;
        }
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #444;
        }
        .star-rating label {
            cursor: pointer;
            transition: color 0.3s;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: #ffd700;
        }
        .submit-btn {
            background: linear-gradient(90deg, #ff8906, #e53170);
            color: #0f0e17;
            border: none;
            padding: 1rem 2rem;
            border-radius: 6px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            width: 100%;
        }
        .submit-btn:hover {
            transform: scale(1.03);
            box-shadow: 0 5px 15px rgba(255, 137, 6, 0.4);
        }
        .internal-links {
            background-color: #1a1a2e;
            padding: 3rem 0;
            margin-top: 3rem;
            border-top: 2px solid #2e2e3e;
        }
        .internal-links h2 {
            color: #fffffe;
            text-align: center;
            margin-bottom: 2rem;
            font-size: 2rem;
        }
        .web-link-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: #2e2e3e;
            padding: 1.2rem;
            border-radius: 8px;
            text-align: center;
            transition: background-color 0.3s;
        }
        .web-link:hover {
            background-color: #3a3a4e;
        }
        .web-link a {
            font-weight: 600;
            color: #a7a9be;
        }
        .web-link a:hover {
            color: #ff8906;
        }
        .site-footer {
            background-color: #0c0b13;
            color: #8a8ca5;
            padding: 3rem 0 1.5rem;
            border-top: 2px solid #ff8906;
            text-align: center;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .copyright {
            font-size: 0.9rem;
            padding-top: 1.5rem;
            border-top: 1px solid #2e2e3e;
            width: 100%;
        }
        .text-center {
            text-align: center;
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 2px;
        }
        strong {
            color: #fffffe;
            font-weight: 700;
        }
        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.4rem; }
            article { padding: 2rem; }
        }
        @media (max-width: 576px) {
            .container { padding: 0 15px; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            .game-grid, .user-interaction {
                grid-template-columns: 1fr;
            }
            .search-form { flex-direction: column; border-radius: 12px; }
            .search-input, .search-button { border-radius: 0; }
            .search-button { padding: 1rem; }
        }
