        * { 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, #f9f7f0 0%, #fff9e6 100%);
            max-width: 100%;
            overflow-x: hidden;
        }
        img { max-width: 100%; height: auto; display: block; }
        .site-header {
            background: #8B4513;
            color: #FFD700;
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            text-decoration: none;
            color: #FFD700;
            text-shadow: 2px 2px 4px #5D2906;
            transition: transform 0.3s ease, text-shadow 0.3s ease;
            font-family: 'Comic Sans MS', cursive, sans-serif;
        }
        .my-logo:hover {
            transform: scale(1.05);
            text-shadow: 3px 3px 6px #5D2906;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #FFEAA7;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            transition: all 0.3s ease;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            background: #FFD700;
            color: #8B4513;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #FFD700;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav ul {
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #A0522D;
                padding: 1rem;
                display: none;
                box-shadow: 0 6px 12px rgba(0,0,0,0.2);
            }
            .main-nav.active ul { display: flex; }
        }
        .breadcrumb {
            padding: 1rem 2rem;
            background: #DEB887;
            font-size: 0.9rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        .breadcrumb a {
            color: #5D2906;
            text-decoration: none;
        }
        .breadcrumb a:hover { text-decoration: underline; }
        .main-container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
        }
        @media (max-width: 1024px) {
            .main-container { grid-template-columns: 1fr; }
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }
        .article-content h1 {
            font-size: 2.8rem;
            color: #8B4513;
            margin-bottom: 1.5rem;
            border-bottom: 4px solid #FFD700;
            padding-bottom: 0.5rem;
        }
        .article-content h2 {
            font-size: 2rem;
            color: #A0522D;
            margin: 2.5rem 0 1rem;
            padding-left: 0.5rem;
            border-left: 5px solid #DEB887;
        }
        .article-content h3 {
            font-size: 1.6rem;
            color: #CD853F;
            margin: 2rem 0 1rem;
        }
        .article-content h4 {
            font-size: 1.3rem;
            color: #D2691E;
            margin: 1.5rem 0 0.8rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
            hyphens: auto;
        }
        .article-content strong {
            color: #8B4513;
            font-weight: 800;
        }
        .article-content em { font-style: italic; }
        .article-content a {
            color: #D2691E;
            text-decoration: none;
            border-bottom: 1px dashed #D2691E;
            transition: color 0.3s ease, border-bottom 0.3s ease;
        }
        .article-content a:hover {
            color: #8B4513;
            border-bottom: 1px solid #8B4513;
        }
        .highlight-box {
            background: #FFF8DC;
            border-left: 5px solid #FFD700;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .game-image {
            margin: 2.5rem auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
            max-width: 800px;
        }
        .game-image img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .game-image img:hover {
            transform: scale(1.02);
        }
        .update-time {
            font-size: 0.9rem;
            color: #777;
            text-align: right;
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px solid #eee;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            padding: 1.8rem;
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
        }
        .sidebar-widget h3 {
            color: #8B4513;
            margin-bottom: 1.2rem;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form input,
        .comment-form input,
        .comment-form textarea,
        .score-form select {
            width: 100%;
            padding: 0.9rem;
            margin-bottom: 1rem;
            border: 2px solid #DEB887;
            border-radius: 8px;
            font-family: inherit;
            transition: border-color 0.3s ease;
        }
        .search-form input:focus,
        .comment-form input:focus,
        .comment-form textarea:focus,
        .score-form select:focus {
            outline: none;
            border-color: #8B4513;
        }
        .btn {
            background: linear-gradient(to bottom, #D2691E, #8B4513);
            color: white;
            border: none;
            padding: 0.9rem 1.8rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        .btn:hover {
            background: linear-gradient(to bottom, #8B4513, #5D2906);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(139, 69, 19, 0.3);
        }
        .site-footer {
            background: #5D2906;
            color: #FFEAA7;
            padding: 3rem 2rem 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
        }
        .footer-section h4 {
            color: #FFD700;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
        }
        friend-link a {
            color: #DEB887;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        friend-link a:hover {
            color: #FFD700;
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #8B4513;
            font-size: 0.9rem;
            color: #DEB887;
        }
        @media (max-width: 768px) {
            .site-header, .breadcrumb, .main-container { padding-left: 1rem; padding-right: 1rem; }
            .article-content { padding: 1.5rem; }
            .article-content h1 { font-size: 2.2rem; }
            .article-content h2 { font-size: 1.8rem; }
            .sidebar-widget { padding: 1.3rem; }
        }
