        * { 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%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a { color: #1a5fb4; text-decoration: none; transition: color 0.3s; }
        a:hover { color: #e95420; }
        img { max-width: 100%; height: auto; display: block; }
        .site-header {
            background: linear-gradient(to right, #0d3c6a, #1a5fb4);
            color: white;
            padding: 1rem 2rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1.5rem;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a i { color: #ffde57; }
        .logo a:hover { color: #ffde57; }
        .breadcrumb {
            background: #e8f1fb;
            padding: 0.8rem 2rem;
            font-size: 0.9rem;
            border-bottom: 1px solid #c8d9eb;
        }
        .breadcrumb ol {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin: 0 10px;
            color: #777;
        }
        .breadcrumb a { color: #555; }
        .breadcrumb a:hover { color: #1a5fb4; }
        .nav-container { display: flex; align-items: center; }
        .main-nav { display: flex; gap: 1.8rem; }
        .main-nav a {
            color: #e0e7ff;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a:hover { color: #ffde57; }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #ffde57;
            transition: width 0.3s;
        }
        .main-nav a:hover::after { width: 100%; }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 0.5rem;
        }
        .search-form {
            display: flex;
            border-radius: 30px;
            overflow: hidden;
            background: white;
            min-width: 300px;
        }
        .search-input {
            flex: 1;
            padding: 0.8rem 1.2rem;
            border: none;
            outline: none;
            font-size: 1rem;
        }
        .search-btn {
            background: #e95420;
            color: white;
            border: none;
            padding: 0 1.5rem;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-btn:hover { background: #c34113; }
        .main-container {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 1024px) {
            .main-container { grid-template-columns: 1fr; }
        }
        article {
            background: white;
            border-radius: 15px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        .article-header { margin-bottom: 2.5rem; border-bottom: 2px solid #e8f1fb; padding-bottom: 1.5rem; }
        h1 {
            font-size: 2.8rem;
            color: #0d3c6a;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .meta {
            color: #666;
            font-size: 0.95rem;
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-bottom: 1rem;
        }
        .update { color: #e95420; font-weight: 600; }
        .intro {
            font-size: 1.3rem;
            color: #444;
            background: #f8fbfe;
            padding: 1.5rem;
            border-left: 5px solid #1a5fb4;
            border-radius: 0 10px 10px 0;
            margin: 2rem 0;
        }
        h2 {
            font-size: 2rem;
            color: #1a5fb4;
            margin: 2.8rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #c8d9eb;
        }
        h3 {
            font-size: 1.6rem;
            color: #0d3c6a;
            margin: 2.2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #555;
            margin: 1.8rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            hyphens: auto;
        }
        .highlight {
            background: linear-gradient(120deg, #ffde5780 0%, #ffde5780 100%);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .blockquote {
            border-left: 4px solid #e95420;
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: #555;
        }
        .emoji { font-size: 1.2em; margin-right: 0.3rem; }
        .standings-container {
            overflow-x: auto;
            margin: 3rem 0;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        table {
            width: 100%;
            border-collapse: collapse;
            min-width: 800px;
        }
        thead {
            background: linear-gradient(to right, #0d3c6a, #1a5fb4);
            color: white;
        }
        th, td {
            padding: 1.2rem 1rem;
            text-align: center;
            border-bottom: 1px solid #e0e0e0;
        }
        tbody tr:nth-child(even) { background: #f8fbfe; }
        tbody tr:hover { background: #e8f1fb; }
        .team { text-align: left; font-weight: 600; }
        .qualify { background-color: #d4edda; color: #155724; font-weight: bold; }
        .featured-image {
            margin: 3rem auto;
            text-align: center;
        }
        .featured-image img {
            border-radius: 12px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
            border: 5px solid white;
        }
        .image-caption {
            margin-top: 0.8rem;
            font-style: italic;
            color: #666;
            font-size: 0.95rem;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            border-radius: 12px;
            padding: 1.8rem;
            box-shadow: 0 8px 20px rgba(0,0,0,0.06);
        }
        .widget-title {
            font-size: 1.4rem;
            color: #0d3c6a;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ffde57;
        }
        .links-list { list-style: none; }
        .links-list li { margin-bottom: 0.8rem; }
        .links-list a { display: block; padding: 0.5rem 0; border-bottom: 1px dotted #ddd; }
        .links-list a:hover { border-bottom-color: #1a5fb4; }
        .user-interaction {
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 3px solid #e8f1fb;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 1.5rem;
        }
        .interaction-box {
            background: #f8fbfe;
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid #c8d9eb;
        }
        .interaction-box h3 { margin-top: 0; }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #ffc107;
            cursor: pointer;
        }
        .rating-stars i:hover { transform: scale(1.2); }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #bcd;
            border-radius: 8px;
            font-family: inherit;
        }
        .submit-btn {
            background: linear-gradient(to right, #1a5fb4, #0d3c6a);
            color: white;
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 30px;
            cursor: pointer;
            font-weight: bold;
            transition: transform 0.3s;
        }
        .submit-btn:hover { transform: translateY(-3px); }
        footer {
            background: #0d3c6a;
            color: #c8d9eb;
            padding: 3rem 2rem 1.5rem;
            margin-top: auto;
        }
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1rem;
        }
        .footer-links h4 {
            color: #ffde57;
            margin-bottom: 1.2rem;
            font-size: 1.2rem;
        }
        .footer-links ul { list-style: none; }
        .footer-links li { margin-bottom: 0.7rem; }
        .footer-links a { color: #c8d9eb; }
        .footer-links a:hover { color: #ffde57; }
        friend-link {
            display: block;
            margin: 0.5rem 0;
            padding: 0.5rem;
            background: rgba(255,255,255,0.05);
            border-radius: 6px;
        }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid #1a5fb4;
            font-size: 0.9rem;
            color: #8ab4f8;
        }
        @media (max-width: 768px) {
            .header-container { flex-direction: column; align-items: stretch; }
            .nav-container {
                flex-direction: column;
                align-items: stretch;
                gap: 1rem;
            }
            .main-nav {
                flex-direction: column;
                display: none;
                gap: 0;
                background: rgba(13, 60, 106, 0.98);
                border-radius: 10px;
                padding: 1rem;
            }
            .main-nav.active { display: flex; }
            .main-nav a { padding: 0.8rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
            .hamburger { display: block; align-self: flex-end; margin-top: -3.5rem; }
            .search-form { min-width: 100%; }
            .main-container, article { padding: 1.5rem; }
            h1 { font-size: 2.2rem; }
            .interaction-grid { grid-template-columns: 1fr; }
        }
