        * { 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: #f5f7fa;
            max-width: 100vw;
            overflow-x: hidden;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { color: #1a365d; font-weight: 800; line-height: 1.3; margin-bottom: 1rem; }
        h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); margin-top: 1.5rem; }
        h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); border-bottom: 3px solid #e53e3e; padding-bottom: 0.5rem; margin-top: 2.5rem; }
        h3 { font-size: clamp(1.4rem, 3vw, 1.9rem); color: #2d3748; margin-top: 2rem; }
        h4 { font-size: 1.3rem; color: #4a5568; margin-top: 1.5rem; }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; }
        a { color: #2b6cb0; text-decoration: none; transition: color 0.3s; }
        a:hover { color: #e53e3e; text-decoration: underline; }
        strong { color: #2d3748; }
        em { font-style: italic; color: #718096; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .main-content { display: grid; grid-template-columns: 1fr 300px; gap: 40px; padding: 30px 0; }
        @media (max-width: 992px) { .main-content { grid-template-columns: 1fr; } }
        .site-header {
            background: linear-gradient(135deg, #1a365d 0%, #2d3748 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-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i { color: #e53e3e; }
        .my-logo:hover { color: #fc8181; text-decoration: none; }
        .main-nav ul { display: flex; list-style: none; gap: 1.8rem; }
        .main-nav a {
            color: #cbd5e0;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a:hover { color: white; }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #e53e3e;
            transition: width 0.3s;
        }
        .main-nav a:hover::after { width: 100%; }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background: #1a365d;
                padding: 1rem;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.4s ease-in-out;
                box-shadow: 0 5px 10px rgba(0,0,0,0.2);
            }
            .main-nav.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            .main-nav ul { flex-direction: column; gap: 1rem; }
        }
        .breadcrumb {
            background-color: #edf2f7;
            padding: 0.8rem 0;
            font-size: 0.95rem;
            margin-bottom: 2rem;
        }
        .breadcrumb a { color: #4a5568; }
        .breadcrumb a:hover { color: #1a365d; }
        .breadcrumb span { color: #718096; }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 2px solid #e2e8f0;
            padding-bottom: 1rem;
            margin-bottom: 2rem;
            font-size: 0.95rem;
            color: #718096;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            padding: 0.8rem;
            background: #f7fafc;
            color: #4a5568;
            font-size: 0.95rem;
        }
        .highlight-box {
            background: linear-gradient(to right, #fed7d7, #feebc8);
            border-left: 5px solid #e53e3e;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: #f7fafc;
            border: 2px solid #e2e8f0;
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: #1a365d;
            line-height: 1;
        }
        .sidebar {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: fit-content;
        }
        .sidebar-widget { margin-bottom: 2.5rem; }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            border-bottom: 2px solid #e53e3e;
            padding-bottom: 0.5rem;
            margin-bottom: 1.2rem;
        }
        .link-list { list-style: none; }
        .link-list li { margin-bottom: 0.8rem; padding-left: 1.2rem; position: relative; }
        .link-list li::before {
            content: '🏈';
            position: absolute;
            left: 0;
        }
        .search-box, .comment-form, .rating-form {
            background: #f8f9fa;
            padding: 1.8rem;
            border-radius: 10px;
            margin-bottom: 2rem;
            border: 1px solid #e2e8f0;
        }
        .form-group { margin-bottom: 1.2rem; }
        label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: #2d3748; }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #cbd5e0;
            border-radius: 6px;
            font-family: inherit;
            font-size: 1rem;
            transition: border 0.3s, box-shadow 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #4299e1;
            box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.2);
        }
        button, .btn {
            background: #e53e3e;
            color: white;
            border: none;
            padding: 0.9rem 1.8rem;
            border-radius: 6px;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            display: inline-block;
            text-align: center;
        }
        button:hover, .btn:hover {
            background: #c53030;
            transform: translateY(-2px);
            text-decoration: none;
        }
        .stars { display: flex; gap: 5px; margin: 10px 0; }
        .star { font-size: 1.8rem; color: #cbd5e0; cursor: pointer; transition: color 0.2s; }
        .star:hover, .star.active { color: #f6e05e; }
        .site-footer {
            background: #1a202c;
            color: #cbd5e0;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-logo { font-size: 1.8rem; font-weight: 900; color: white; margin-bottom: 1rem; }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            list-style: none;
            margin: 1rem 0;
        }
        .friend-links a {
            color: #90cdf4;
            background: rgba(66, 153, 225, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .friend-links a:hover { background: rgba(66, 153, 225, 0.2); }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #2d3748;
            font-size: 0.9rem;
            color: #a0aec0;
        }
        .text-center { text-align: center; }
        .mb-3 { margin-bottom: 1.5rem; }
        .mt-3 { margin-top: 1.5rem; }
        .py-2 { padding-top: 0.8rem; padding-bottom: 0.8rem; }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        .responsive-table { overflow-x: auto; margin: 2rem 0; }
        table { width: 100%; border-collapse: collapse; }
        th, td { padding: 1rem; border: 1px solid #e2e8f0; text-align: left; }
        th { background: #edf2f7; font-weight: 700; }
