        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            text-decoration: none;
            color: #0a5c36;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff6b35;
        }
        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, #0a5c36 0%, #1e7e34 100%);
            color: white;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            color: white;
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
        }
        .logo i {
            margin-right: 10px;
            color: #ffcc00;
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav a {
            color: white;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        nav a:hover, nav a.active {
            color: #ffcc00;
            border-bottom-color: #ffcc00;
        }
        .breadcrumb {
            background-color: #e9f5eb;
            padding: 12px 0;
            font-size: 0.9rem;
        }
        .breadcrumb .container {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:hover {
            color: #0a5c36;
        }
        .breadcrumb i {
            margin: 0 10px;
            color: #888;
            font-size: 0.8rem;
        }
        main {
            flex: 1;
            padding: 30px 0;
        }
        .article-header {
            margin-bottom: 40px;
            text-align: center;
        }
        .article-header h1 {
            color: #0a5c36;
            font-size: 2.8rem;
            margin-bottom: 15px;
            line-height: 1.2;
        }
        .meta-info {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 20px;
        }
        .meta-info i {
            margin-right: 5px;
        }
        .featured-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 25px auto;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border: 5px solid white;
        }
        .content-area {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 40px;
        }
        .article-body {
            background: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.05);
        }
        .article-body h2 {
            color: #1e7e34;
            margin: 35px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #c5e1c8;
            font-size: 1.8rem;
        }
        .article-body h3 {
            color: #333;
            margin: 25px 0 15px;
            font-size: 1.4rem;
        }
        .article-body p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-body strong {
            color: #0a5c36;
            font-weight: 700;
        }
        .article-body em {
            background-color: #fff9e6;
            font-style: italic;
            padding: 2px 5px;
        }
        .highlight-box {
            background: linear-gradient(to right, #e9f7ef, #d4edda);
            border-left: 5px solid #0a5c36;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: white;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
            border-top: 4px solid #0a5c36;
        }
        .stat-card .number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #0a5c36;
            display: block;
        }
        .internal-links {
            background-color: #f0f8ff;
            padding: 20px;
            border-radius: 10px;
            margin: 30px 0;
        }
        .internal-links h3 {
            color: #1e7e34;
            margin-bottom: 15px;
        }
        .internal-links ul {
            list-style: none;
            columns: 2;
        }
        .internal-links li {
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
        }
        .internal-links li:before {
            content: '⚽';
            position: absolute;
            left: 0;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.06);
        }
        .widget h3 {
            color: #0a5c36;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
            font-size: 1.3rem;
        }
        .search-box input {
            width: 100%;
            padding: 14px;
            border: 2px solid #ddd;
            border-radius: 50px;
            font-size: 1rem;
            margin-bottom: 15px;
        }
        .search-box button {
            width: 100%;
            background: linear-gradient(to right, #0a5c36, #1e7e34);
            color: white;
            border: none;
            padding: 14px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        .search-box button:hover {
            background: linear-gradient(to right, #ff6b35, #ff8e53);
            transform: translateY(-2px);
        }
        .rating-widget .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
            font-size: 2rem;
            color: #ffcc00;
        }
        .rating-widget .stars i {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .rating-widget .stars i:hover {
            transform: scale(1.2);
        }
        .rating-widget button {
            width: 100%;
            padding: 12px;
            background-color: #0a5c36;
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 8px;
            min-height: 120px;
            margin-bottom: 15px;
            font-family: inherit;
            resize: vertical;
        }
        .comment-form button {
            background-color: #ff6b35;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        .comment-form button:hover {
            background-color: #e55a2b;
        }
        .footer-links-section {
            background-color: #2d3748;
            padding: 40px 0;
            margin-top: 50px;
        }
        .footer-links-section .container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }
        .web-link {
            background: #4a5568;
            padding: 20px;
            border-radius: 8px;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            background: #0a5c36;
            transform: translateY(-5px);
        }
        .web-link a {
            color: white;
            font-weight: 600;
            display: block;
            text-align: center;
        }
        footer {
            background-color: #1a252f;
            color: #b0b7c3;
            padding: 40px 0 20px;
            text-align: center;
        }
        .footer-nav {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
            margin-bottom: 25px;
        }
        .footer-nav a {
            color: #ddd;
        }
        .footer-nav a:hover {
            color: #ffcc00;
        }
        .copyright {
            font-size: 0.9rem;
            color: #8a94a6;
            padding-top: 20px;
            border-top: 1px solid #2d3748;
        }
        @media (max-width: 992px) {
            .content-area {
                grid-template-columns: 1fr;
            }
            .article-header h1 {
                font-size: 2.3rem;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #0a5c36;
                padding: 20px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            }
            nav ul.active {
                display: flex;
            }
            nav ul li {
                margin: 10px 0;
            }
            .article-body {
                padding: 25px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .internal-links ul {
                columns: 1;
            }
            .article-header h1 {
                font-size: 1.9rem;
            }
        }
