        * { 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: #f9f9f9;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
        }
        a { text-decoration: none; color: #0066cc; transition: color 0.3s; }
        a:hover { color: #e63946; }
        img { max-width: 100%; height: auto; display: block; }
        ul, ol { padding-left: 20px; margin: 15px 0; }
        .container { width: 100%; }
        .site-header {
            background: linear-gradient(135deg, #1a3a5f 0%, #2a5298 100%);
            color: white;
            padding: 1.5rem 0;
            margin-bottom: 2rem;
            border-radius: 0 0 12px 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a i { color: #ffcc00; }
        .logo-text { background: linear-gradient(90deg, #ffcc00, #ffffff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
        }
        .nav-desktop a {
            color: #e0e0e0;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 6px;
        }
        .nav-desktop a:hover {
            background-color: rgba(255,255,255,0.15);
            color: white;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #2a5298;
            width: 100%;
            margin-top: 1rem;
            border-radius: 8px;
            overflow: hidden;
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a {
            color: white;
            padding: 15px 20px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .nav-mobile a:last-child { border-bottom: none; }
        .nav-mobile a:hover { background-color: #3a62a8; }
        .breadcrumb {
            background-color: #eef2f7;
            padding: 12px 20px;
            border-radius: 8px;
            margin: 1rem 0 2rem;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: #555; }
        .breadcrumb a:hover { color: #0066cc; }
        .breadcrumb span { color: #777; }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        @media (max-width: 1024px) {
            .main-content { grid-template-columns: 1fr; }
        }
        .article-area { background: white; padding: 2.5rem; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
        .sidebar { background: #f1f8ff; padding: 1.8rem; border-radius: 12px; }
        h1 {
            font-size: 2.8rem;
            color: #1a3a5f;
            margin-bottom: 1.2rem;
            line-height: 1.2;
            border-left: 6px solid #e63946;
            padding-left: 20px;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
        }
        h2 {
            font-size: 2rem;
            color: #2a5298;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 8px;
            border-bottom: 2px solid #eee;
        }
        h3 {
            font-size: 1.5rem;
            color: #444;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: #555;
            background: #f0f7ff;
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid #2a5298;
        }
        .highlight {
            background-color: #fffacd;
            padding: 20px;
            border-radius: 10px;
            border: 1px dashed #ffcc00;
            margin: 25px 0;
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0;
            padding: 25px;
            background: linear-gradient(to right, #f8f9fa, #e9ecef);
            border-radius: 12px;
        }
        .stat-item {
            text-align: center;
            padding: 15px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }
        .stat-value {
            font-size: 2.5rem;
            font-weight: 800;
            color: #e63946;
            display: block;
        }
        .stat-label { color: #666; font-size: 0.95rem; }
        .responsive-table {
            overflow-x: auto;
            margin: 2rem 0;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        table {
            width: 100%;
            border-collapse: collapse;
            min-width: 600px;
        }
        th, td {
            padding: 16px 12px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        thead {
            background: linear-gradient(90deg, #1a3a5f, #2a5298);
            color: white;
        }
        tbody tr:nth-child(even) { background-color: #f8f9fa; }
        tbody tr:hover { background-color: #e3f2fd; }
        .team-name { font-weight: 700; color: #1a3a5f; }
        .form-section {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 12px;
            margin: 2.5rem 0;
        }
        .form-title {
            font-size: 1.5rem;
            color: #2a5298;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #555;
        }
        input, textarea, select {
            width: 100%;
            padding: 14px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #2a5298;
            box-shadow: 0 0 0 3px rgba(42, 82, 152, 0.2);
        }
        button, .btn {
            background: linear-gradient(90deg, #e63946, #d90429);
            color: white;
            border: none;
            padding: 14px 28px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        button:hover, .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(230, 57, 70, 0.3);
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            font-size: 2rem;
            color: #ffcc00;
            margin: 15px 0;
        }
        .star { cursor: pointer; transition: transform 0.2s; }
        .star:hover { transform: scale(1.2); }
        .widget {
            margin-bottom: 2.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #ddd;
        }
        .widget:last-child { border-bottom: none; }
        .widget-title {
            font-size: 1.4rem;
            color: #1a3a5f;
            margin-bottom: 1.2rem;
            padding-bottom: 8px;
            border-bottom: 2px solid #e63946;
        }
        .quick-links a {
            display: block;
            padding: 12px 15px;
            margin-bottom: 10px;
            background: white;
            border-radius: 8px;
            border-left: 4px solid #2a5298;
            box-shadow: 0 3px 8px rgba(0,0,0,0.05);
        }
        .quick-links a:hover {
            background: #e6f0ff;
            border-left-color: #e63946;
        }
        .internal-links {
            background: #1a3a5f;
            color: white;
            padding: 3rem 2rem;
            border-radius: 12px 12px 0 0;
            margin-top: 4rem;
        }
        .internal-links h3 {
            color: #ffcc00;
            text-align: center;
            margin-bottom: 2rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: rgba(255,255,255,0.1);
            padding: 18px;
            border-radius: 8px;
            transition: background 0.3s;
        }
        .web-link:hover { background: rgba(255,255,255,0.2); }
        .web-link a {
            color: #cce0ff;
            font-weight: 500;
            display: block;
        }
        .site-footer {
            background: #0f1f35;
            color: #aaa;
            text-align: center;
            padding: 2.5rem;
            border-radius: 0 0 12px 12px;
            font-size: 0.95rem;
        }
        .footer-links { margin-bottom: 1.5rem; }
        .footer-links a {
            color: #aaa;
            margin: 0 15px;
        }
        .footer-links a:hover { color: white; }
        .copyright { margin-top: 1rem; }
        .text-center { text-align: center; }
        .mb-3 { margin-bottom: 3rem; }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        .keyword { background-color: #e6f7ff; padding: 2px 6px; border-radius: 4px; font-weight: 600; }
