        :root {
            --primary-green: #2E8B57;
            --secondary-blue: #1E3A8A;
            --accent-gold: #D4AF37;
            --dark-bg: #0F172A;
            --light-bg: #F8FAFC;
            --text-dark: #1E293B;
            --text-light: #64748B;
            --border-color: #E2E8F0;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --radius: 8px;
            --transition: all 0.3s ease;
        }
        * {
            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: var(--text-dark);
            background-color: var(--light-bg);
            max-width: 100%;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        ul, ol {
            list-style-position: inside;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .semibold { font-weight: 600; }
        .highlight {
            background: linear-gradient(120deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0) 80%);
            padding: 0 4px;
            border-radius: 2px;
        }
        .section-spacing {
            padding: 60px 0;
        }
        .site-header {
            background-color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary-green);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            color: var(--accent-gold);
        }
        .my-logo:hover {
            color: var(--secondary-blue);
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            font-weight: 600;
            color: var(--text-dark);
            padding: 8px 0;
            position: relative;
        }
        .nav-desktop a:hover {
            color: var(--primary-green);
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-green);
            transition: var(--transition);
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--text-dark);
            background: none;
            border: none;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: white;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            z-index: 999;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 15px;
            border-bottom: 1px solid var(--border-color);
            font-weight: 600;
        }
        .nav-mobile a:hover {
            background-color: #f1f5f9;
            color: var(--primary-green);
        }
        .breadcrumb {
            background-color: #f1f5f9;
            padding: 12px 20px;
            font-size: 0.9rem;
            color: var(--text-light);
        }
        .breadcrumb a {
            color: var(--primary-green);
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        .search-section {
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-blue));
            padding: 40px 20px;
            color: white;
        }
        .search-form {
            max-width: 700px;
            margin: 0 auto;
            display: flex;
            gap: 10px;
        }
        .search-input {
            flex-grow: 1;
            padding: 15px 20px;
            border: none;
            border-radius: var(--radius);
            font-size: 1rem;
            outline: none;
        }
        .search-button {
            background-color: var(--accent-gold);
            color: white;
            border: none;
            border-radius: var(--radius);
            padding: 0 25px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-button:hover {
            background-color: #b8941f;
            transform: translateY(-2px);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 20px;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 40px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        h1 {
            font-size: 2.8rem;
            line-height: 1.2;
            color: var(--dark-bg);
            margin-bottom: 20px;
            border-left: 5px solid var(--primary-green);
            padding-left: 20px;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
        }
        h2 {
            font-size: 2rem;
            color: var(--secondary-blue);
            margin: 50px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border-color);
        }
        h3 {
            font-size: 1.6rem;
            color: var(--primary-green);
            margin: 40px 0 15px;
        }
        h4 {
            font-size: 1.3rem;
            color: var(--text-dark);
            margin: 30px 0 10px;
        }
        p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .article-intro {
            font-size: 1.2rem;
            color: var(--text-light);
            background: #f8fafc;
            padding: 25px;
            border-radius: var(--radius);
            border-left: 4px solid var(--accent-gold);
            margin-bottom: 40px;
        }
        .article-meta {
            display: flex;
            gap: 20px;
            color: var(--text-light);
            margin-bottom: 30px;
            font-size: 0.95rem;
            flex-wrap: wrap;
        }
        .meta-item i {
            margin-right: 8px;
            color: var(--primary-green);
        }
        .featured-image {
            margin: 40px 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            padding: 10px;
            color: var(--text-light);
            background: #f8fafc;
        }
        .internal-link {
            color: var(--secondary-blue);
            border-bottom: 1px dashed var(--secondary-blue);
            font-weight: 600;
        }
        .internal-link:hover {
            color: var(--primary-green);
            border-bottom-style: solid;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background: white;
            padding: 25px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .widget-title {
            font-size: 1.4rem;
            color: var(--dark-bg);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary-green);
        }
        .match-card {
            text-align: center;
            padding: 20px;
            background: linear-gradient(145deg, #f0f9ff, #e0f2fe);
            border-radius: var(--radius);
            border: 1px solid #bae6fd;
        }
        .teams {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 15px 0;
        }
        .live-badge {
            display: inline-block;
            background: #dc2626;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .rating-widget, .comment-widget {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 1.8rem;
            color: #FFD700;
            cursor: pointer;
        }
        .star:hover {
            transform: scale(1.2);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .form-input, .form-textarea {
            padding: 12px 15px;
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            font-family: inherit;
            font-size: 1rem;
        }
        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }
        .form-button {
            background-color: var(--primary-green);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: var(--radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .form-button:hover {
            background-color: #236b47;
            transform: translateY(-2px);
        }
        .site-footer {
            background-color: var(--dark-bg);
            color: #CBD5E1;
            padding: 60px 20px 30px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
            display: block;
        }
        .footer-links h4 {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 20px;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #94A3B8;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        .friend-links {
            background: rgba(255,255,255,0.05);
            padding: 25px;
            border-radius: var(--radius);
            margin: 30px 0;
        }
        .friend-links h4 {
            color: var(--accent-gold);
            margin-bottom: 15px;
        }
        .friend-link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .friend-link-list a {
            background: rgba(255,255,255,0.1);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
        }
        .friend-link-list a:hover {
            background: var(--primary-green);
            color: white;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #334155;
            font-size: 0.9rem;
            color: #94A3B8;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--primary-green);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            box-shadow: var(--shadow);
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 99;
        }
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background: var(--secondary-blue);
            transform: translateY(-5px);
        }
        @media (max-width: 768px) {
            .section-spacing { padding: 40px 0; }
            .article-content { padding: 25px; }
            .search-form { flex-direction: column; }
            .search-button { padding: 15px; }
            h2 { font-size: 1.7rem; }
            h3 { font-size: 1.4rem; }
            .footer-content { grid-template-columns: 1fr; }
        }
