* {
            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.6;
        }
        a {
            text-decoration: none;
            color: #007bff;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #0056b3;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 2rem;
            font-weight: bold;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a:hover {
            color: #ffcc00;
        }
        .logo i {
            font-size: 2.5rem;
        }
        .search-box {
            display: flex;
            flex: 0 1 400px;
            margin: 10px 0;
        }
        .search-box input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 25px 0 0 25px;
            font-size: 1rem;
            outline: none;
        }
        .search-box button {
            background: #ffcc00;
            color: #1e3c72;
            border: none;
            padding: 12px 20px;
            border-radius: 0 25px 25px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s ease;
        }
        .search-box button:hover {
            background: #e6b800;
        }
        nav {
            background: #2a5298;
            margin-top: 1rem;
            border-radius: 8px;
        }
        .nav-desktop {
            display: flex;
            justify-content: center;
            list-style: none;
            flex-wrap: wrap;
        }
        .nav-desktop li {
            position: relative;
        }
        .nav-desktop a {
            color: white;
            padding: 15px 20px;
            display: block;
            font-weight: 500;
            transition: background 0.3s ease;
        }
        .nav-desktop a:hover {
            background: rgba(255,255,255,0.2);
            border-radius: 5px;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 10px;
        }
        .nav-mobile {
            display: none;
            list-style: none;
            background: #1e3c72;
            border-radius: 8px;
            margin-top: 10px;
            padding: 10px;
        }
        .nav-mobile.active {
            display: block;
        }
        .nav-mobile li a {
            color: white;
            padding: 12px 15px;
            display: block;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .nav-mobile li:last-child a {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #666;
        }
        .breadcrumb a {
            color: #007bff;
        }
        .breadcrumb a:hover {
            color: #0056b3;
        }
        main {
            padding: 2rem 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.05);
        }
        .article-content h1 {
            font-size: 2.5rem;
            color: #1e3c72;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-content h2 {
            font-size: 2rem;
            color: #2a5298;
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #ffcc00;
        }
        .article-content h3 {
            font-size: 1.5rem;
            color: #333;
            margin: 1.5rem 0 0.8rem;
        }
        .article-content p {
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-content strong {
            color: #1e3c72;
            font-weight: 700;
        }
        .article-content em {
            color: #666;
            font-style: italic;
        }
        .article-content img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 1.5rem auto;
            display: block;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .article-content img:hover {
            transform: scale(1.02);
        }
        .highlight-box {
            background: #e9f7fe;
            border-left: 5px solid #007bff;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .interaction-forms {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.05);
            margin-top: 2rem;
        }
        .interaction-forms h3 {
            color: #1e3c72;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #555;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            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: #007bff;
            outline: none;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #ffcc00;
            cursor: pointer;
        }
        .rating-stars i {
            transition: color 0.2s ease;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #ff9900;
        }
        .btn-submit {
            background: #28a745;
            color: white;
            border: none;
            padding: 14px 24px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .btn-submit:hover {
            background: #218838;
        }
        .sidebar {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.05);
        }
        .sidebar h3 {
            color: #1e3c72;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ffcc00;
        }
        .sidebar ul {
            list-style: none;
        }
        .sidebar li {
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
        }
        .sidebar li:before {
            content: '⚽';
            position: absolute;
            left: 0;
            color: #007bff;
        }
        .sidebar a {
            color: #333;
            transition: color 0.3s ease;
        }
        .sidebar a:hover {
            color: #007bff;
        }
        .internal-links {
            background: #1e3c72;
            color: white;
            padding: 2rem 0;
            margin-top: 3rem;
        }
        .internal-links .container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: rgba(255,255,255,0.1);
            padding: 1rem;
            border-radius: 8px;
            transition: background 0.3s ease;
        }
        .web-link:hover {
            background: rgba(255,255,255,0.2);
        }
        .web-link a {
            color: #ffcc00;
            font-weight: 500;
        }
        footer {
            background: #2a5298;
            color: white;
            text-align: center;
            padding: 2rem 0;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 1.5rem;
        }
        .footer-links a {
            color: #ffcc00;
            font-weight: 500;
        }
        .copyright {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-top: 1rem;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                align-items: flex-start;
            }
            .search-box {
                flex: 1;
                width: 100%;
                margin: 15px 0;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            .article-content h1 {
                font-size: 2rem;
            }
            .article-content h2 {
                font-size: 1.7rem;
            }
            .article-content h3 {
                font-size: 1.3rem;
            }
            .footer-links {
                flex-direction: column;
                gap: 1rem;
            }
        }
