        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #0066cc;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #004999;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            color: white;
            padding: 1.2rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a:hover {
            text-decoration: none;
            color: #ffcc00;
        }
        .logo-icon {
            font-size: 2.5rem;
        }
        .nav-container {
            display: flex;
            align-items: center;
        }
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-menu li a {
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        .nav-menu li a:hover {
            background-color: rgba(255,255,255,0.2);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 0.8rem 20px;
            font-size: 0.95rem;
            margin-top: 5px;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:hover {
            color: #1e3c72;
        }
        main {
            padding: 2.5rem 0;
            background-color: white;
            min-height: 1500px;
        }
        .article-header {
            text-align: center;
            margin-bottom: 2.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 3px solid #2a5298;
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: #1e3c72;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-header .meta {
            color: #666;
            font-style: italic;
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            font-size: 1.1rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .article-content h2 {
            font-size: 2rem;
            color: #2a5298;
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #ccc;
        }
        .article-content h3 {
            font-size: 1.6rem;
            color: #444;
            margin: 2rem 0 1rem;
        }
        .highlight {
            background-color: #fffacd;
            padding: 1.5rem;
            border-left: 5px solid #ffcc00;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight strong {
            color: #b8860b;
            font-size: 1.2rem;
        }
        .featured-image {
            margin: 2.5rem auto;
            text-align: center;
            max-width: 800px;
        }
        .featured-image img {
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border: 5px solid #f1f1f1;
        }
        .featured-image figcaption {
            font-size: 0.95rem;
            color: #666;
            margin-top: 0.8rem;
            font-style: italic;
        }
        .interactive-section {
            background-color: #f1f8ff;
            padding: 2rem;
            border-radius: 12px;
            margin: 3rem 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .interactive-section h3 {
            color: #1e3c72;
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #333;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #2a5298;
            outline: none;
        }
        button {
            background: linear-gradient(to right, #2a5298, #1e3c72);
            color: white;
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        button:hover {
            background: linear-gradient(to right, #1e3c72, #16325c);
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(0,0,0,0.1);
        }
        .rating {
            display: flex;
            gap: 0.5rem;
            align-items: center;
            margin-top: 1rem;
        }
        .rating i {
            color: #ffcc00;
            font-size: 1.8rem;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .rating i:hover {
            transform: scale(1.2);
        }
        .sidebar {
            background-color: #f8f9fa;
            padding: 1.8rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 {
            color: #2a5298;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ddd;
        }
        .sidebar ul {
            list-style: none;
        }
        .sidebar ul li {
            margin-bottom: 1rem;
            padding-left: 1.5rem;
            position: relative;
        }
        .sidebar ul li:before {
            content: "⚽";
            position: absolute;
            left: 0;
            top: 0;
        }
        .sidebar a {
            color: #333;
            font-weight: 500;
        }
        .sidebar a:hover {
            color: #2a5298;
        }
        .footer-links {
            background-color: #1e3c72;
            padding: 2.5rem 0;
            color: white;
        }
        .web-link-container {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
        }
        @media (max-width: 768px) {
            .web-link-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background-color: rgba(255,255,255,0.1);
            padding: 1.2rem;
            border-radius: 8px;
            transition: background-color 0.3s ease;
        }
        .web-link:hover {
            background-color: rgba(255,255,255,0.2);
        }
        .web-link a {
            color: #ffcc00;
            font-weight: 600;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        footer {
            background-color: #16325c;
            color: #ccc;
            text-align: center;
            padding: 1.8rem 0;
            font-size: 0.95rem;
        }
        .copyright {
            margin-top: 1rem;
            border-top: 1px solid #2a5298;
            padding-top: 1rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-menu {
                position: fixed;
                top: 80px;
                right: -100%;
                flex-direction: column;
                background-color: #2a5298;
                width: 80%;
                height: calc(100vh - 80px);
                padding: 2rem;
                transition: right 0.5s ease;
                box-shadow: -5px 0 15px rgba(0,0,0,0.2);
                z-index: 999;
            }
            .nav-menu.active {
                right: 0;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            .content-grid {
                gap: 1.5rem;
            }
            .interactive-section {
                padding: 1.5rem;
            }
        }
        .text-center { text-align: center; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mt-2 { margin-top: 2rem; }
        .emoji { font-size: 1.2em; }
        .bold { font-weight: 800; color: #1e3c72; }
        .italic { font-style: italic; }
