        * { 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-color: #f8f9fa;
            max-width: 100vw;
            overflow-x: hidden;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { color: #0a2e5c; font-weight: 700; line-height: 1.3; margin-bottom: 1rem; }
        h1 { font-size: 2.8rem; border-bottom: 4px solid #d32f2f; padding-bottom: 0.5rem; }
        h2 { font-size: 2.2rem; margin-top: 2.5rem; padding-left: 0.5rem; border-left: 5px solid #ff9800; }
        h3 { font-size: 1.8rem; margin-top: 2rem; color: #1976d2; }
        h4 { font-size: 1.4rem; margin-top: 1.5rem; color: #555; }
        p { margin-bottom: 1.5rem; text-align: justify; }
        a { color: #1976d2; text-decoration: none; transition: color 0.3s; }
        a:hover { color: #d32f2f; }
        strong { color: #0a2e5c; }
        em { background-color: #fff9c4; font-style: italic; padding: 0 2px; }
        .highlight { background: linear-gradient(120deg, #a1c4fd80 0%, #c2e9fb80 100%); padding: 0.2rem 0.5rem; border-radius: 3px; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-top: 30px;
        }
        @media (max-width: 992px) {
            .main-grid { grid-template-columns: 1fr; }
        }
        .site-header {
            background: linear-gradient(135deg, #0a2e5c 0%, #1a4b8c 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        .my-logo i { color: #ff9800; margin-right: 10px; }
        .my-logo span { color: #4fc3f7; }
        .nav-desktop { display: flex; gap: 25px; }
        .nav-desktop a {
            color: white;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .nav-desktop a:hover { background-color: rgba(255, 255, 255, 0.15); }
        .hamburger { display: none; font-size: 1.8rem; cursor: pointer; }
        #nav-toggle { display: none; }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #1a4b8c;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 20px;
            box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        }
        #nav-toggle:checked ~ .nav-mobile { display: flex; }
        .nav-mobile a {
            color: white;
            padding: 12px 15px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
            .hamburger { display: block; }
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #e9ecef;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: #555; }
        .breadcrumb a:hover { color: #d32f2f; }
        .breadcrumb span { color: #777; }
        .content-area {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #666;
            font-size: 0.9rem;
            border-bottom: 1px dashed #ddd;
            padding-bottom: 15px;
            margin-bottom: 25px;
        }
        .author { display: flex; align-items: center; gap: 10px; }
        .author img { width: 40px; height: 40px; border-radius: 50%; }
        .featured-image {
            margin: 2rem 0;
            text-align: center;
        }
        .featured-image img {
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            margin: 0 auto;
        }
        .img-caption {
            font-size: 0.9rem;
            color: #666;
            margin-top: 10px;
            font-style: italic;
        }
        .insider-tip {
            background-color: #e8f5e9;
            border-left: 5px solid #4caf50;
            padding: 20px;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .insider-tip h4 { color: #2e7d32; margin-top: 0; }
        .game-review {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 2.5rem 0;
        }
        .review-card {
            border: 1px solid #ddd;
            border-radius: 10px;
            padding: 20px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.1);
        }
        .rating { color: #ff9800; font-size: 1.2rem; margin: 10px 0; }
        .sidebar {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget { margin-bottom: 30px; }
        .widget-title {
            font-size: 1.3rem;
            border-bottom: 2px solid #ff9800;
            padding-bottom: 8px;
            margin-bottom: 15px;
        }
        .search-form { display: flex; }
        .search-form input {
            flex-grow: 1;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 5px 0 0 5px;
        }
        .search-form button {
            background-color: #1976d2;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
        }
        .search-form button:hover { background-color: #0a2e5c; }
        .related-links ul { list-style: none; }
        .related-links li { margin-bottom: 10px; padding-left: 20px; position: relative; }
        .related-links li:before {
            content: '⚾';
            position: absolute;
            left: 0;
            color: #d32f2f;
        }
        .user-interaction {
            background-color: #f1f8ff;
            padding: 30px;
            border-radius: 10px;
            margin-top: 40px;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .comment-form textarea, .score-form select, .forms input {
            width: 100%;
            padding: 15px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-family: inherit;
        }
        .forms button {
            background-color: #d32f2f;
            color: white;
            border: none;
            padding: 15px 25px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .forms button:hover { background-color: #b71c1c; }
        .stars { display: flex; gap: 5px; margin-bottom: 15px; }
        .stars i { color: #ddd; cursor: pointer; font-size: 1.5rem; }
        .stars i.active, .stars i:hover { color: #ff9800; }
        .site-footer {
            background-color: #0a2e5c;
            color: #ccc;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }
        .footer-col { flex: 1; min-width: 250px; }
        .footer-col h3 { color: white; font-size: 1.3rem; margin-bottom: 20px; }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a { color: #aaa; }
        .footer-links a:hover { color: #4fc3f7; }
        friend-link {
            display: block;
            background-color: rgba(255,255,255,0.05);
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 10px;
            color: #4fc3f7;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .container { padding: 0 15px; }
            .content-area, .sidebar { padding: 20px; }
        }
