        * { 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%, #e4edf5 100%);
            max-width: 1400px;
            margin: 0 auto;
            padding: 0;
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
        }
        a { color: #0056b3; text-decoration: none; transition: color 0.3s; }
        a:hover { color: #003d82; text-decoration: underline; }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 95%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        header { background: linear-gradient(to right, #0c1e3e, #1a3a6c); color: white; padding: 1rem 0; position: sticky; top: 0; z-index: 1000; }
        .header-container { display: flex; justify-content: space-between; align-items: center; }
        .my-logo { font-size: 2rem; font-weight: 800; letter-spacing: 1px; background: linear-gradient(90deg, #ffd700, #ffffff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .my-logo:hover { text-decoration: none; }
        nav { display: flex; align-items: center; }
        .nav-links { display: flex; list-style: none; }
        .nav-links li { margin-left: 2rem; }
        .nav-links a { color: #fff; font-weight: 600; font-size: 1.05rem; padding: 0.5rem 0; position: relative; }
        .nav-links a:hover { color: #ffd700; text-decoration: none; }
        .nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: #ffd700; transition: width 0.3s; }
        .nav-links a:hover::after { width: 100%; }
        .hamburger { display: none; font-size: 1.8rem; background: none; border: none; color: white; cursor: pointer; }
        .breadcrumb { background: #e9f0f7; padding: 0.8rem 0; font-size: 0.9rem; }
        .breadcrumb ol { display: flex; list-style: none; }
        .breadcrumb li:not(:last-child)::after { content: '›'; margin: 0 10px; color: #666; }
        .breadcrumb a { color: #555; }
        main { background: white; padding: 2.5rem 0; border-radius: 8px; margin: 2rem auto; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
        .content-wrapper { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; }
        @media (max-width: 992px) { .content-wrapper { grid-template-columns: 1fr; } }
        article { padding-right: 1rem; }
        h1 { color: #0c1e3e; font-size: 2.8rem; margin-bottom: 1.5rem; line-height: 1.2; border-left: 6px solid #ffd700; padding-left: 1rem; }
        h2 { color: #1a3a6c; font-size: 2rem; margin: 2.5rem 0 1.2rem; padding-bottom: 0.5rem; border-bottom: 2px solid #eaeaea; }
        h3 { color: #2a5298; font-size: 1.6rem; margin: 2rem 0 1rem; }
        h4 { color: #3a6bc2; font-size: 1.3rem; margin: 1.8rem 0 0.8rem; }
        p { margin-bottom: 1.5rem; text-align: justify; font-size: 1.1rem; color: #444; }
        .lead { font-size: 1.3rem; color: #1a3a6c; font-weight: 600; margin-bottom: 2rem; }
        .highlight-box { background: #f0f8ff; border-left: 5px solid #0056b3; 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: #f9f9f9; padding: 1.2rem; border-radius: 8px; box-shadow: 0 3px 10px rgba(0,0,0,0.05); text-align: center; }
        .stat-card i { font-size: 2rem; color: #0056b3; margin-bottom: 0.8rem; }
        .featured-image { width: 100%; border-radius: 10px; overflow: hidden; margin: 2.5rem 0; box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
        .featured-image img { transition: transform 0.5s; }
        .featured-image:hover img { transform: scale(1.03); }
        .caption { text-align: center; font-style: italic; color: #666; margin-top: 0.5rem; font-size: 0.95rem; }
        .related-links { background: #f8f9fa; padding: 1.5rem; border-radius: 8px; margin: 2rem 0; }
        .related-links h3 { margin-top: 0; }
        .related-links ul { list-style: none; }
        .related-links li { margin-bottom: 0.8rem; padding-left: 1.5rem; position: relative; }
        .related-links li::before { content: '⚽'; position: absolute; left: 0; }
        blockquote { font-style: italic; border-left: 4px solid #ffd700; padding-left: 1.5rem; margin: 2rem 0; color: #555; background: #fffdf0; padding: 1.5rem; border-radius: 0 8px 8px 0; }
        em { color: #d35400; }
        aside { background: #f8f9fa; padding: 1.8rem; border-radius: 10px; align-self: start; position: sticky; top: 120px; }
        .widget { margin-bottom: 2.5rem; }
        .widget h3 { font-size: 1.4rem; color: #0c1e3e; margin-bottom: 1.2rem; padding-bottom: 0.5rem; border-bottom: 1px dashed #ccc; }
        .search-form { display: flex; }
        .search-form input { flex: 1; padding: 0.8rem; border: 1px solid #ccc; border-radius: 4px 0 0 4px; }
        .search-form button { background: #0056b3; color: white; border: none; padding: 0.8rem 1.2rem; border-radius: 0 4px 4px 0; cursor: pointer; }
        .search-form button:hover { background: #003d82; }
        .rating-widget { text-align: center; }
        .stars { font-size: 1.8rem; color: #ffd700; margin: 1rem 0; cursor: pointer; }
        .stars span { margin: 0 2px; transition: color 0.2s; }
        .stars span:hover, .stars span.active { color: #ff9800; }
        .comment-form textarea { width: 100%; padding: 0.8rem; border: 1px solid #ccc; border-radius: 4px; margin-bottom: 0.8rem; min-height: 120px; }
        .comment-form button { background: #28a745; color: white; border: none; padding: 0.8rem 1.5rem; border-radius: 4px; cursor: pointer; width: 100%; }
        .comment-form button:hover { background: #1e7e34; }
        .update-time { font-size: 0.9rem; color: #666; background: #fff; padding: 0.8rem; border-radius: 4px; text-align: center; border: 1px dashed #ccc; }
        footer { background: #0c1e3e; color: #ddd; padding: 3rem 0 1.5rem; margin-top: 3rem; }
        .footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
        .footer-section h3 { color: #ffd700; margin-bottom: 1.2rem; font-size: 1.3rem; }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 0.7rem; }
        .footer-links a { color: #ccc; }
        .footer-links a:hover { color: #ffd700; }
        friend-link { display: block; background: rgba(255,255,255,0.05); padding: 1rem; margin: 0.5rem 0; border-radius: 4px; }
        friend-link a { color: #4da6ff; font-weight: 600; }
        .copyright { text-align: center; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid #2a3f5f; color: #aaa; font-size: 0.9rem; }
        @media (max-width: 768px) {
            .header-container { flex-wrap: wrap; }
            .nav-links { display: none; flex-direction: column; width: 100%; margin-top: 1rem; }
            .nav-links.active { display: flex; }
            .nav-links li { margin: 0.5rem 0; }
            .hamburger { display: block; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.7rem; }
            h3 { font-size: 1.4rem; }
            .content-wrapper { gap: 2rem; }
            aside { position: static; }
        }
        .btn { display: inline-block; background: linear-gradient(to right, #0056b3, #1a73e8); color: white; padding: 0.8rem 1.8rem; border-radius: 30px; font-weight: 600; border: none; cursor: pointer; transition: all 0.3s; box-shadow: 0 4px 10px rgba(0,86,179,0.2); }
        .btn:hover { transform: translateY(-3px); box-shadow: 0 6px 15px rgba(0,86,179,0.3); text-decoration: none; }
        .tab-container { margin: 2rem 0; }
        .tabs { display: flex; border-bottom: 2px solid #eaeaea; }
        .tab { padding: 1rem 1.5rem; background: #f1f1f1; margin-right: 0.5rem; border-radius: 8px 8px 0 0; cursor: pointer; transition: background 0.3s; }
        .tab.active { background: #0056b3; color: white; }
        .tab-content { display: none; padding: 1.5rem; background: #f9f9f9; border-radius: 0 0 8px 8px; }
        .tab-content.active { display: block; }
