* {
            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: #2a6e3f;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #1e4e2c;
            text-decoration: underline;
        }
        ul {
            list-style: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }
        header {
            background: linear-gradient(135deg, #1e4e2c 0%, #2a6e3f 100%);
            color: white;
            padding: 15px 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: #ffd700;
        }
        .logo-icon {
            font-size: 2.5rem;
            color: #ffd700;
        }
        .breadcrumb {
            background-color: #e9f5eb;
            padding: 10px 0;
            font-size: 0.9rem;
            color: #555;
        }
        .breadcrumb ul {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 8px;
            color: #2a6e3f;
        }
        .breadcrumb a {
            color: #2a6e3f;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
            transition: background 0.3s;
        }
        .nav-links a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #1e4e2c;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: white;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-weight: 600;
        }
        .mobile-nav a:hover {
            color: #ffd700;
        }
        main {
            padding: 30px 0;
            background-color: white;
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 3px solid #2a6e3f;
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: #1e4e2c;
            margin-bottom: 15px;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            color: #666;
            font-size: 0.95rem;
        }
        .article-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .article-content {
            font-size: 1.1rem;
        }
        .article-content h2 {
            font-size: 2rem;
            color: #2a6e3f;
            margin: 30px 0 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #e9f5eb;
        }
        .article-content h3 {
            font-size: 1.6rem;
            color: #333;
            margin: 25px 0 10px;
        }
        .article-content p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .article-content strong {
            color: #1e4e3f;
            font-weight: 700;
        }
        .article-content em {
            color: #555;
        }
        .highlight-box {
            background-color: #f0f9f3;
            border-left: 5px solid #2a6e3f;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .kickoff-image {
            width: 100%;
            max-width: 800px;
            margin: 30px auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .kickoff-image img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }
        .kickoff-image:hover img {
            transform: scale(1.03);
        }
        .caption {
            text-align: center;
            font-style: italic;
            color: #666;
            padding: 10px;
            background-color: #f8f9fa;
        }
        .internal-links {
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            margin: 30px 0;
        }
        .internal-links h3 {
            color: #2a6e3f;
            margin-bottom: 15px;
        }
        .internal-links ul {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 10px;
        }
        .internal-links li a {
            display: block;
            padding: 10px;
            background-color: white;
            border-radius: 5px;
            border: 1px solid #ddd;
            transition: all 0.3s;
        }
        .internal-links li a:hover {
            background-color: #2a6e3f;
            color: white;
            border-color: #2a6e3f;
        }
        .sidebar {
            background-color: #f8f9fa;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 {
            color: #1e4e2c;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ddd;
        }
        .search-box {
            margin-bottom: 30px;
        }
        .search-box form {
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid #2a6e3f;
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
        }
        .search-box button {
            background-color: #2a6e3f;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background-color: #1e4e2c;
        }
        .today-schedule {
            margin-bottom: 30px;
        }
        .schedule-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px dashed #ccc;
        }
        .schedule-item:last-child {
            border-bottom: none;
        }
        .schedule-time {
            font-weight: bold;
            color: #2a6e3f;
        }
        .user-interaction {
            margin-top: 40px;
            padding: 30px;
            background-color: #f0f9f3;
            border-radius: 12px;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .comment-form, .rating-form {
            background-color: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #333;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #2a6e3f;
            outline: none;
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
        }
        .stars i:hover,
        .stars i.active {
            color: #ffd700;
        }
        .btn-submit {
            background-color: #2a6e3f;
            color: white;
            border: none;
            padding: 14px 25px;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            width: 100%;
        }
        .btn-submit:hover {
            background-color: #1e4e2c;
            transform: translateY(-3px);
        }
        .footer-links {
            background-color: #e9f5eb;
            padding: 40px 0;
        }
        .footer-links .container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 25px;
        }
        .web-link {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
        }
        .web-link a {
            color: #2a6e3f;
            font-weight: 600;
            display: block;
            margin-bottom: 8px;
        }
        .web-link p {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.5;
        }
        footer {
            background-color: #1e4e2c;
            color: white;
            padding: 30px 0;
            text-align: center;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
        .social-links {
            display: flex;
            gap: 20px;
            font-size: 1.5rem;
        }
        .social-links a {
            color: white;
            transition: color 0.3s;
        }
        .social-links a:hover {
            color: #ffd700;
        }
        .copyright {
            font-size: 0.9rem;
            color: #ccc;
            max-width: 800px;
            line-height: 1.5;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .sidebar {
                position: static;
            }
            .nav-links {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .article-content h2 {
                font-size: 1.8rem;
            }
            .article-content h3 {
                font-size: 1.4rem;
            }
            .interaction-grid {
                grid-template-columns: 1fr;
            }
            .footer-links .container {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
        }
        @media (max-width: 480px) {
            .article-header h1 {
                font-size: 1.8rem;
            }
            .breadcrumb ul {
                font-size: 0.8rem;
            }
            .logo a {
                font-size: 1.8rem;
            }
        }
