        * { 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, #f5f7fa 0%, #e4e8ed 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        .section-gap { margin-bottom: 60px; }
        .paragraph-gap { margin-bottom: 25px; }
        .site-header {
            background: linear-gradient(90deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            text-decoration: none;
            color: white;
            display: flex;
            align-items: center;
        }
        .my-logo i { margin-right: 10px; color: #ffcc00; }
        .my-logo:hover { color: #ffcc00; transform: scale(1.03); transition: all 0.3s ease; }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .main-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
            transition: all 0.3s;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background-color: rgba(255, 255, 255, 0.15);
            color: #ffcc00;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: #f1f5f9;
            padding: 12px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #d1d9e6;
        }
        .breadcrumb a {
            color: #2a5298;
            text-decoration: none;
        }
        .breadcrumb a:hover { text-decoration: underline; }
        .breadcrumb span { color: #666; }
        .hero {
            background: url('https://images.unsplash.com/photo-1551958219-acbc608c6377?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') no-repeat center center/cover;
            color: white;
            padding: 80px 20px;
            text-align: center;
            border-radius: 0 0 20px 20px;
            margin-bottom: 40px;
            position: relative;
        }
        .hero::after {
            content: '';
            position: absolute;
            top:0; left:0; right:0; bottom:0;
            background: rgba(0, 0, 50, 0.6);
            border-radius: 0 0 20px 20px;
        }
        .hero-content { position: relative; z-index: 2; }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
        }
        .search-box {
            max-width: 700px;
            margin: 30px auto;
            background: white;
            padding: 5px;
            border-radius: 50px;
            display: flex;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        .search-box input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            outline: none;
        }
        .search-box button {
            background: linear-gradient(90deg, #ff7e5f, #feb47b);
            color: white;
            border: none;
            padding: 0 35px;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .search-box button:hover { transform: scale(1.05); }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 20px 0 60px;
        }
        .article-content h2 {
            color: #1e3c72;
            border-left: 5px solid #ffcc00;
            padding-left: 15px;
            margin: 40px 0 20px;
            font-size: 2.2rem;
        }
        .article-content h3 {
            color: #2a5298;
            margin: 30px 0 15px;
            font-size: 1.8rem;
        }
        .article-content h4 {
            color: #3a6bd1;
            margin: 25px 0 12px;
            font-size: 1.5rem;
        }
        .article-content p {
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: #fff9e6;
            border-left: 4px solid #ffcc00;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .inline-link {
            color: #2a5298;
            font-weight: 600;
            text-decoration: none;
            border-bottom: 2px dotted #2a5298;
            transition: all 0.2s;
        }
        .inline-link:hover {
            color: #ff7e5f;
            border-bottom-style: solid;
        }
        .game-image {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            margin: 25px 0;
            transition: transform 0.5s;
        }
        .game-image:hover { transform: scale(1.02); }
        .update-time {
            background-color: #e6f7ff;
            padding: 15px;
            border-radius: 8px;
            margin: 30px 0;
            font-style: italic;
            color: #0056b3;
        }
        .sidebar {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.08);
            align-self: start;
            position: sticky;
            top: 140px;
        }
        .sidebar h3 {
            color: #1e3c72;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ffcc00;
        }
        .sidebar ul {
            list-style: none;
        }
        .sidebar li { margin-bottom: 12px; }
        .sidebar a {
            color: #444;
            text-decoration: none;
            display: block;
            padding: 10px;
            border-radius: 6px;
            transition: all 0.3s;
        }
        .sidebar a:hover {
            background-color: #f0f5ff;
            color: #1e3c72;
            padding-left: 15px;
        }
        .sidebar a i { margin-right: 10px; color: #ff7e5f; }
        .interaction-widgets {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 40px 0;
        }
        .comment-box, .rating-box {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.08);
            flex: 1;
            min-width: 300px;
        }
        .comment-box h3, .rating-box h3 { color: #1e3c72; margin-bottom: 20px; }
        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; margin-bottom: 8px; font-weight: 600; }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #2a5298;
            outline: none;
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 2rem;
            margin: 20px 0;
        }
        .star-rating i {
            color: #ddd;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star-rating i:hover,
        .star-rating i.active { color: #ffcc00; }
        .submit-btn {
            background: linear-gradient(90deg, #1e3c72, #2a5298);
            color: white;
            border: none;
            padding: 14px 28px;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            width: 100%;
            transition: all 0.3s;
        }
        .submit-btn:hover {
            background: linear-gradient(90deg, #2a5298, #3a6bd1);
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(30, 60, 114, 0.3);
        }
        .site-footer {
            background: #1a1a2e;
            color: #e0e0e0;
            padding: 50px 0 20px;
            margin-top: auto;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h4 {
            color: #ffcc00;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            color: #a3c4ff;
            text-decoration: none;
            margin-bottom: 12px;
            padding: 5px 0;
            border-bottom: 1px dashed rgba(255,255,255,0.1);
            transition: all 0.3s;
        }
        friend-link:hover {
            color: #ffcc00;
            padding-left: 10px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
            .sidebar { position: static; }
            .hero h1 { font-size: 2.7rem; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                background: #1e3c72;
                transition: left 0.5s ease;
                padding: 20px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.2);
            }
            .main-nav.active { left: 0; }
            .main-nav ul {
                flex-direction: column;
                gap: 10px;
            }
            .main-nav a { display: block; padding: 15px; }
            .hero h1 { font-size: 2.2rem; }
            .hero p { font-size: 1.1rem; }
            .interaction-widgets { flex-direction: column; }
        }
        @media (max-width: 480px) {
            .hero h1 { font-size: 1.8rem; }
            .search-box { flex-direction: column; background: transparent; box-shadow: none; }
            .search-box input { border-radius: 8px; margin-bottom: 10px; padding: 15px; }
            .search-box button { border-radius: 8px; padding: 15px; }
        }
