        * { 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, #0a0a2a 0%, #1a1a3a 100%);
            color: #f0f0f0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a { color: #ff4655; text-decoration: none; transition: color 0.3s ease, transform 0.2s ease; }
        a:hover { color: #ff7c87; transform: translateY(-2px); }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(10, 10, 30, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 3px solid #ff4655;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.2rem;
            background: linear-gradient(90deg, #ff4655, #00ccff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 5px rgba(0,0,0,0.5);
            letter-spacing: 1px;
        }
        .my-logo a { background: none; }
        .main-nav ul { display: flex; list-style: none; gap: 25px; }
        .main-nav a {
            color: #ddd;
            font-weight: 600;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        .main-nav a:hover, .main-nav a.active { color: #ff4655; border-bottom-color: #ff4655; }
        .hamburger { display: none; font-size: 1.8rem; cursor: pointer; color: #ff4655; }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
            border-bottom: 1px solid #2a2a4a;
            margin-bottom: 30px;
        }
        .breadcrumb a { color: #ccc; }
        .breadcrumb i { margin: 0 8px; }
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1542751371-adc38448a05e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            padding: 60px 20px;
            text-align: center;
            border-radius: 10px;
            margin: 30px 0;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
            color: #fff;
        }
        .search-form {
            max-width: 600px;
            margin: 30px auto 0;
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 15px 20px;
            border: 2px solid #ff4655;
            border-radius: 50px 0 0 50px;
            background: rgba(255,255,255,0.1);
            color: white;
            font-size: 1rem;
        }
        .search-form button {
            background: linear-gradient(90deg, #ff4655, #ff7c87);
            color: white;
            border: none;
            padding: 0 30px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-form button:hover { background: linear-gradient(90deg, #ff2a3c, #ff5a6b); }
        main { flex: 1; padding: 20px 0 40px; }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) { .content-grid { grid-template-columns: 1fr; } }
        article h2 {
            font-size: 2.2rem;
            color: #00ccff;
            border-left: 5px solid #ff4655;
            padding-left: 15px;
            margin: 40px 0 20px;
        }
        article h3 {
            font-size: 1.8rem;
            color: #ffcc00;
            margin: 30px 0 15px;
            padding-bottom: 8px;
            border-bottom: 2px dashed #444;
        }
        article h4 {
            font-size: 1.4rem;
            color: #aaddff;
            margin: 25px 0 10px;
        }
        article p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight-box {
            background: rgba(255, 70, 85, 0.1);
            border-left: 4px solid #ff4655;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .game-tier {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .tier-card {
            background: rgba(30, 30, 60, 0.7);
            border-radius: 10px;
            padding: 20px;
            border-top: 5px solid #ffcc00;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .tier-card:hover { transform: translateY(-10px); box-shadow: 0 10px 25px rgba(255, 70, 85, 0.3); }
        .tier-card.S { border-top-color: #ff4655; }
        .tier-card.A { border-top-color: #ff9900; }
        .tier-card.B { border-top-color: #00ccff; }
        .tier-card h4 { color: #fff; margin-top: 0; }
        .rating { color: #ffcc00; font-size: 1.2rem; margin: 10px 0; }
        aside { background: rgba(20, 20, 40, 0.8); border-radius: 10px; padding: 25px; }
        aside h3 { color: #ff7c87; font-size: 1.5rem; margin-bottom: 20px; }
        .link-list { list-style: none; }
        .link-list li { margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px dashed #3a3a5a; }
        .link-list a { display: block; padding: 8px 5px; }
        .link-list a:hover { background: rgba(255, 70, 85, 0.1); border-radius: 5px; }
        .user-interaction {
            background: rgba(40, 40, 70, 0.8);
            border-radius: 15px;
            padding: 30px;
            margin: 50px 0;
            border: 1px solid #555;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .comment-form label, .score-form label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: #aaddff;
        }
        .comment-form textarea, .comment-form input, .score-form select {
            width: 100%;
            padding: 12px 15px;
            margin-bottom: 20px;
            border-radius: 8px;
            border: 1px solid #555;
            background: rgba(255,255,255,0.05);
            color: white;
            font-size: 1rem;
        }
        .submit-btn {
            background: linear-gradient(90deg, #00ccff, #0088cc);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .submit-btn:hover { background: linear-gradient(90deg, #00aadd, #006699); }
        .star-rating { font-size: 1.8rem; color: #555; cursor: pointer; margin-bottom: 15px; }
        .star-rating .fa-star:hover, .star-rating .fa-star.active { color: #ffcc00; }
        footer {
            background: #0a0a1a;
            padding: 40px 0 20px;
            margin-top: 50px;
            border-top: 3px solid #ff4655;
        }
        .footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; }
        .footer-section { flex: 1; min-width: 250px; }
        .footer-section h4 { color: #00ccff; margin-bottom: 20px; font-size: 1.3rem; }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.03);
            padding: 12px 15px;
            margin-bottom: 10px;
            border-radius: 5px;
            transition: background 0.3s;
        }
        friend-link:hover { background: rgba(255, 70, 85, 0.2); }
        .copyright {
            text-align: center;
            padding-top: 25px;
            margin-top: 25px;
            border-top: 1px solid #2a2a4a;
            color: #888;
            font-size: 0.9rem;
        }
        #last-updated { font-weight: bold; color: #ffcc00; }
        @media (max-width: 768px) {
            .main-nav ul { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(10,10,30,0.98); padding: 20px; }
            .main-nav.active ul { display: flex; }
            .hamburger { display: block; }
            .hero h1 { font-size: 2.5rem; }
            .content-grid { grid-template-columns: 1fr; gap: 30px; }
            .game-tier { grid-template-columns: 1fr; }
        }
