        * {
            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: #f0f0f0;
            background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 50%, #16213e 100%);
            background-attachment: fixed;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #a5d8ff;
            transform: translateY(-1px);
        }
        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-color: rgba(10, 10, 26, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #ffd43b;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-family: 'Arial Black', sans-serif;
            font-size: 2.2rem;
            background: linear-gradient(90deg, #ffd43b, #ff6b6b, #4dabf7);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
            letter-spacing: 1px;
        }
        .logo a:hover {
            transform: scale(1.03);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            font-weight: 600;
            padding: 8px 5px;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #ffd43b;
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            background: none;
            border: none;
            padding: 5px;
        }
        .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: #ffd43b;
            border-radius: 2px;
            transition: 0.3s;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #ffd43b;
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        .hero {
            text-align: center;
            padding: 50px 0 30px;
            background: radial-gradient(circle at center, rgba(77, 171, 247, 0.1) 0%, transparent 70%);
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            color: #ffd43b;
            text-shadow: 0 2px 10px rgba(255, 212, 59, 0.5);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #d0d0ff;
        }
        .search-bar {
            max-width: 600px;
            margin: 40px auto;
            padding: 20px;
            background: rgba(30, 30, 60, 0.7);
            border-radius: 12px;
            border: 1px solid #4dabf7;
        }
        .search-bar h2 {
            color: #4dabf7;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            justify-content: center;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 15px;
            border: 2px solid #444;
            border-radius: 8px 0 0 8px;
            background: rgba(255,255,255,0.1);
            color: white;
            font-size: 1rem;
        }
        .search-form button {
            padding: 15px 25px;
            background: linear-gradient(90deg, #4dabf7, #339af0);
            color: white;
            border: none;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: linear-gradient(90deg, #339af0, #228be6);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(30, 30, 60, 0.6);
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 212, 59, 0.2);
        }
        .intro-note {
            background: rgba(255, 212, 59, 0.1);
            border-left: 5px solid #ffd43b;
            padding: 20px;
            margin-bottom: 40px;
            border-radius: 0 8px 8px 0;
        }
        .intro-note p {
            margin-bottom: 10px;
        }
        .game-ranking {
            counter-reset: game-rank;
            margin: 50px 0;
        }
        .game-entry {
            background: rgba(40, 40, 70, 0.7);
            margin-bottom: 50px;
            padding: 30px;
            border-radius: 12px;
            border-left: 6px solid #4dabf7;
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .game-entry:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
            border-left-color: #ffd43b;
        }
        .game-entry::before {
            counter-increment: game-rank;
            content: counter(game-rank);
            position: absolute;
            left: -45px;
            top: 30px;
            background: linear-gradient(135deg, #ffd43b, #ff6b6b);
            color: #0a0a1a;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: bold;
            box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
        }
        .game-entry h2 {
            color: #ffd43b;
            margin-bottom: 20px;
            font-size: 2.2rem;
            padding-left: 20px;
        }
        .game-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 25px;
            padding-left: 20px;
            color: #aaa;
        }
        .game-meta span {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .game-image {
            margin: 25px 0;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.6);
        }
        .game-image img {
            transition: transform 0.5s ease;
            width: 100%;
        }
        .game-image img:hover {
            transform: scale(1.03);
        }
        .game-content h3 {
            color: #4dabf7;
            margin: 25px 0 15px;
            font-size: 1.5rem;
            border-bottom: 2px solid rgba(77, 171, 247, 0.3);
            padding-bottom: 8px;
        }
        .game-content p {
            margin-bottom: 20px;
            text-align: justify;
            color: #e0e0ff;
        }
        .highlight {
            background: rgba(255, 212, 59, 0.15);
            padding: 20px;
            border-radius: 8px;
            margin: 25px 0;
            border-left: 4px solid #ffd43b;
        }
        .highlight p {
            margin-bottom: 10px;
            color: #fff;
        }
        .sidebar {
            background: rgba(30, 30, 60, 0.6);
            padding: 30px;
            border-radius: 16px;
            align-self: start;
            position: sticky;
            top: 120px;
            border: 1px solid rgba(255, 212, 59, 0.2);
        }
        .sidebar h3 {
            color: #ffd43b;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(255, 212, 59, 0.3);
        }
        .sidebar ul {
            list-style: none;
            margin-bottom: 30px;
        }
        .sidebar li {
            margin-bottom: 15px;
            padding-left: 20px;
            position: relative;
        }
        .sidebar li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: #4dabf7;
        }
        .sidebar a {
            color: #d0d0ff;
        }
        .sidebar a:hover {
            color: #ffd43b;
        }
        .user-interaction {
            margin-top: 60px;
            padding-top: 40px;
            border-top: 2px solid rgba(255, 212, 59, 0.3);
        }
        .rating-form, .comment-form {
            background: rgba(40, 40, 70, 0.8);
            padding: 30px;
            border-radius: 12px;
            margin-bottom: 40px;
        }
        .rating-form h2, .comment-form h2 {
            color: #ffd43b;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin-bottom: 25px;
        }
        .star {
            font-size: 2.2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffd43b;
        }
        .form-group {
            margin-bottom: 25px;
        }
        .form-group label {
            display: block;
            margin-bottom: 10px;
            color: #aaa;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 15px;
            border-radius: 8px;
            border: 2px solid #444;
            background: rgba(255,255,255,0.1);
            color: white;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #4dabf7;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(90deg, #ff6b6b, #ff8787);
            color: white;
            border: none;
            padding: 16px 35px;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .submit-btn:hover {
            background: linear-gradient(90deg, #ff8787, #ff6b6b);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255, 107, 107, 0.4);
        }
        .internal-links {
            margin: 50px 0;
            padding: 30px;
            background: rgba(30, 30, 60, 0.7);
            border-radius: 12px;
        }
        .internal-links h2 {
            color: #ffd43b;
            margin-bottom: 25px;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: rgba(40, 40, 70, 0.8);
            padding: 20px;
            border-radius: 8px;
            transition: transform 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background: rgba(40, 40, 70, 1);
        }
        .web-link a {
            color: #d0d0ff;
            display: block;
        }
        .web-link a:hover {
            color: #ffd43b;
        }
        .site-footer {
            background-color: #0a0a1a;
            padding: 60px 0 30px;
            margin-top: 80px;
            border-top: 2px solid #ffd43b;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo a {
            font-family: 'Arial Black', sans-serif;
            font-size: 2rem;
            background: linear-gradient(90deg, #ffd43b, #ff6b6b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .footer-nav ul {
            list-style: none;
        }
        .footer-nav li {
            margin-bottom: 15px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .main-nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                flex-direction: column;
                background: rgba(10, 10, 26, 0.98);
                width: 100%;
                text-align: center;
                padding: 30px 0;
                gap: 25px;
                transition: left 0.5s ease;
                border-top: 2px solid #ffd43b;
            }
            .main-nav.active ul {
                left: 0;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .game-entry::before {
                position: relative;
                left: 0;
                top: 0;
                margin-bottom: 20px;
                display: inline-block;
            }
            .game-entry h2 {
                padding-left: 0;
            }
            .game-meta {
                padding-left: 0;
            }
            .footer-content {
                flex-direction: column;
            }
        }
