        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
            color: #f0f0f0;
            min-height: 100vh;
            padding-bottom: 40px;
        }
        a { color: #4fc3f7; text-decoration: none; transition: color 0.3s; }
        a:hover { color: #ffeb3b; text-decoration: underline; }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        header { background: rgba(0, 0, 0, 0.85); padding: 15px 0; position: sticky; top: 0; z-index: 1000; backdrop-filter: blur(10px); }
        .header-container { display: flex; justify-content: space-between; align-items: center; }
        .my-logo { font-family: 'Arial Black', sans-serif; font-size: 2rem; color: #00e5ff; text-shadow: 0 0 10px #00e5ff; }
        .my-logo:hover { color: #ff4081; text-shadow: 0 0 15px #ff4081; }
        nav { display: flex; align-items: center; }
        .nav-links { display: flex; list-style: none; }
        .nav-links li { margin-left: 25px; }
        .nav-links a { font-weight: 600; font-size: 1.05rem; }
        .hamburger { display: none; font-size: 1.8rem; cursor: pointer; color: #00e5ff; }
        @media (max-width: 768px) {
            .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; width: 100%; background: rgba(0, 0, 0, 0.95); padding: 20px; }
            .nav-links.active { display: flex; }
            .nav-links li { margin: 10px 0; }
            .hamburger { display: block; }
        }
        .breadcrumb { padding: 15px 0; font-size: 0.9rem; color: #aaa; }
        .breadcrumb a { color: #aaa; }
        .breadcrumb a:hover { color: #fff; }
        main { background: rgba(255, 255, 255, 0.05); border-radius: 15px; padding: 30px; margin-top: 20px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); }
        h1 { color: #00e5ff; font-size: 2.8rem; margin-bottom: 25px; text-align: center; border-bottom: 3px solid #ff4081; padding-bottom: 15px; }
        h2 { color: #4fc3f7; margin-top: 40px; margin-bottom: 20px; font-size: 2.1rem; }
        h3 { color: #81c784; margin-top: 30px; margin-bottom: 15px; font-size: 1.7rem; }
        h4 { color: #ffb74d; margin-top: 25px; margin-bottom: 12px; font-size: 1.4rem; }
        p { margin-bottom: 20px; font-size: 1.15rem; line-height: 1.85; }
        strong { color: #ffeb3b; }
        .highlight-box { background: rgba(255, 235, 59, 0.1); border-left: 5px solid #ffeb3b; padding: 20px; margin: 25px 0; border-radius: 0 10px 10px 0; }
        .game-image { float: right; margin: 15px 0 20px 30px; max-width: 400px; border-radius: 10px; border: 3px solid #00e5ff; }
        @media (max-width: 768px) {
            .game-image { float: none; margin: 20px auto; max-width: 100%; }
        }
        .search-section, .comment-section, .rating-section {
            background: rgba(255, 255, 255, 0.08);
            padding: 25px;
            border-radius: 12px;
            margin: 40px 0;
            border: 1px solid #444;
        }
        .search-section h3, .comment-section h3, .rating-section h3 { color: #ff9800; }
        form label { display: block; margin-bottom: 8px; font-weight: bold; }
        form input, form textarea, form select {
            width: 100%;
            padding: 12px;
            margin-bottom: 20px;
            border: 1px solid #555;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            font-size: 1rem;
        }
        form button {
            background: linear-gradient(45deg, #00e5ff, #2979ff);
            color: white;
            border: none;
            padding: 14px 28px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: bold;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        form button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(0, 229, 255, 0.4);
        }
        .stars { display: flex; gap: 10px; margin: 15px 0; }
        .star { font-size: 2rem; color: #555; cursor: pointer; transition: color 0.2s; }
        .star:hover, .star.active { color: #ffeb3b; }
        footer { margin-top: 60px; padding-top: 30px; border-top: 2px solid #444; text-align: center; color: #aaa; }
        friend-link { display: block; margin: 15px 0; }
        friend-link a { color: #81c784; font-size: 1.1rem; }
        .copyright { margin-top: 25px; font-size: 0.9rem; }
        .clearfix::after { content: ""; clear: both; display: table; }
        .last-updated { text-align: right; font-style: italic; color: #aaa; margin-bottom: 20px; }
