        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
            color: #e0e0e0;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f39c12;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #ffd700;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }
        .site-header {
            background: rgba(10, 10, 10, 0.95);
            border-bottom: 3px solid #b8860b;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(to right, #f39c12, #ffd700, #e74c3c);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        .logo a:hover {
            text-decoration: none;
            filter: brightness(1.2);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #f39c12;
            transition: width 0.3s;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f39c12;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            background: rgba(30, 30, 46, 0.8);
            padding: 0.8rem 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
            color: #888;
        }
        .search-section {
            background: rgba(26, 26, 46, 0.7);
            padding: 2rem;
            border-radius: 12px;
            margin: 2rem auto;
            text-align: center;
            max-width: 800px;
        }
        .search-form {
            display: flex;
            margin-top: 1rem;
        }
        .search-input {
            flex: 1;
            padding: 1rem;
            border: 2px solid #444;
            border-radius: 8px 0 0 8px;
            background: #111;
            color: #fff;
            font-size: 1rem;
        }
        .search-btn {
            background: linear-gradient(to right, #e74c3c, #f39c12);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: bold;
            transition: transform 0.2s;
        }
        .search-btn:hover {
            transform: scale(1.05);
        }
        .main-content {
            flex: 1;
            padding: 2rem 0;
        }
        article {
            background: rgba(20, 20, 35, 0.8);
            border-radius: 16px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            margin-bottom: 3rem;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            border-bottom: 2px solid #b8860b;
            padding-bottom: 2rem;
        }
        h1 {
            font-size: 3.2rem;
            margin-bottom: 1rem;
            color: #ffd700;
            line-height: 1.2;
            text-shadow: 2px 2px 4px #000;
        }
        .article-meta {
            color: #aaa;
            font-style: italic;
            margin-bottom: 1.5rem;
        }
        h2 {
            font-size: 2.4rem;
            color: #f39c12;
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px dashed #444;
        }
        h3 {
            font-size: 1.8rem;
            color: #e67e22;
            margin: 2.5rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(243, 156, 18, 0.15);
            border-left: 4px solid #f39c12;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .game-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .game-card {
            background: rgba(40, 40, 60, 0.7);
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid #555;
        }
        .game-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 25px rgba(243, 156, 18, 0.2);
            border-color: #f39c12;
        }
        .game-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .game-card-content {
            padding: 1.5rem;
        }
        .game-card h3 {
            margin-top: 0;
            color: #ffd700;
        }
        .inline-link {
            font-weight: bold;
            border-bottom: 1px dotted #f39c12;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .rating-stars {
            color: #ffd700;
            margin: 1rem 0;
        }
        .user-interaction {
            background: rgba(26, 26, 46, 0.9);
            border-radius: 16px;
            padding: 3rem;
            margin-top: 4rem;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
        }
        input, textarea, select {
            width: 100%;
            padding: 1rem;
            border-radius: 8px;
            border: 1px solid #555;
            background: #111;
            color: #fff;
            font-size: 1rem;
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(to right, #27ae60, #2ecc71);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            align-self: flex-start;
            transition: filter 0.3s;
        }
        .submit-btn:hover {
            filter: brightness(1.2);
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            font-size: 2rem;
            cursor: pointer;
            margin: 1rem 0;
        }
        .star-rating .star {
            color: #555;
            transition: color 0.2s;
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: #ffd700;
        }
        .footer-links {
            background: rgba(10, 10, 20, 0.95);
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .web-link-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: rgba(40, 40, 60, 0.5);
            padding: 1.2rem;
            border-radius: 8px;
            border-left: 3px solid #f39c12;
            transition: background 0.3s;
        }
        .web-link:hover {
            background: rgba(60, 60, 80, 0.8);
        }
        .site-footer {
            background: #0a0a0a;
            color: #aaa;
            text-align: center;
            padding: 2rem 0;
            border-top: 1px solid #333;
        }
        .copyright {
            margin-top: 1rem;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2.2rem; }
            .game-list { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(10, 10, 10, 0.98);
                padding: 1rem;
                border-top: 2px solid #b8860b;
            }
            .main-nav.active ul {
                display: flex;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .article-header h1 { font-size: 2.4rem; }
            article { padding: 2rem; }
            .interaction-grid { grid-template-columns: 1fr; }
            .web-link-container { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
        }
        @media (max-width: 480px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.8rem; }
            .search-form { flex-direction: column; }
            .search-input, .search-btn { border-radius: 8px; width: 100%; }
            .search-btn { margin-top: 0.5rem; padding: 1rem; }
        }
