:root {
            --primary-color: #2c5530;
            --secondary-color: #b7410e;
            --accent-color: #f4a261;
            --light-bg: #f8f5f0;
            --dark-text: #333333;
            --light-text: #f8f9fa;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --border-radius: 8px;
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--dark-text);
            background-color: #fff;
            max-width: 100%;
            overflow-x: hidden;
        }
        .site-header {
            background-color: var(--primary-color);
            color: var(--light-text);
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .logo a {
            color: var(--accent-color);
            font-size: 2.2rem;
            font-weight: 800;
            text-decoration: none;
            font-family: Georgia, serif;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: var(--transition);
        }
        .logo a:hover {
            color: #fff;
            text-shadow: 0 0 5px rgba(244, 162, 97, 0.7);
        }
        .logo span {
            color: #fff;
            font-weight: 300;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: var(--light-text);
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .main-nav a:hover {
            background-color: var(--accent-color);
            color: var(--dark-text);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            background: none;
            border: none;
            color: var(--light-text);
        }
        .breadcrumb {
            background-color: var(--light-bg);
            padding: 0.8rem 2rem;
            font-size: 0.9rem;
            border-bottom: 1px solid #ddd;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            max-width: 1400px;
            margin: 0 auto;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
        }
        .breadcrumb a {
            color: var(--secondary-color);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb i {
            margin: 0 0.5rem;
            color: #999;
            font-size: 0.8rem;
        }
        .search-container {
            background: linear-gradient(135deg, var(--primary-color), #4a7c59);
            padding: 2rem;
            text-align: center;
            margin-bottom: 2rem;
        }
        .search-box {
            max-width: 700px;
            margin: 0 auto;
            background: white;
            border-radius: 50px;
            padding: 0.5rem;
            display: flex;
            box-shadow: var(--shadow);
        }
        .search-box input {
            flex: 1;
            border: none;
            padding: 1rem 1.5rem;
            font-size: 1.1rem;
            border-radius: 50px 0 0 50px;
            outline: none;
        }
        .search-box button {
            background-color: var(--secondary-color);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-box button:hover {
            background-color: #9a360b;
            transform: scale(1.03);
        }
        .content-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem 3rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 1024px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        .main-content article {
            background-color: var(--light-bg);
            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
        }
        .article-header {
            margin-bottom: 2.5rem;
            border-bottom: 3px solid var(--accent-color);
            padding-bottom: 1.5rem;
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            gap: 1.5rem;
            color: #666;
            font-size: 0.95rem;
        }
        .article-meta i {
            margin-right: 0.5rem;
            color: var(--secondary-color);
        }
        .article-image {
            width: 100%;
            margin: 2rem 0;
            text-align: center;
        }
        .article-image img {
            max-width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }
        .article-image img:hover {
            transform: scale(1.005);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        .article-image figcaption {
            font-style: italic;
            color: #666;
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        .article-body h2 {
            font-size: 2rem;
            color: var(--primary-color);
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed var(--accent-color);
        }
        .article-body h3 {
            font-size: 1.5rem;
            color: var(--secondary-color);
            margin: 2rem 0 1rem;
        }
        .article-body p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .article-body .highlight {
            background-color: #fff8e1;
            border-left: 4px solid var(--accent-color);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .article-body .stats-box {
            background-color: #e8f5e9;
            border: 1px solid #c8e6c9;
            border-radius: var(--border-radius);
            padding: 1.5rem;
            margin: 2rem 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }
        .stat-item {
            text-align: center;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color);
            display: block;
        }
        .stat-label {
            color: #666;
            font-size: 0.95rem;
        }
        .player-interview {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 2rem;
            margin: 2.5rem 0;
            border: 1px solid #e0e0e0;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }
        .interview-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        .interview-header i {
            font-size: 2rem;
            color: var(--secondary-color);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background-color: var(--light-bg);
            padding: 1.8rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            padding-bottom: 0.7rem;
            border-bottom: 2px solid var(--accent-color);
            font-size: 1.4rem;
        }
        .product-list {
            list-style: none;
        }
        .product-list li {
            padding: 1rem 0;
            border-bottom: 1px dashed #ddd;
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .product-list li:last-child {
            border-bottom: none;
        }
        .product-list img {
            width: 60px;
            height: 60px;
            border-radius: 5px;
            object-fit: cover;
        }
        .product-info h4 {
            font-size: 1rem;
            margin-bottom: 0.3rem;
        }
        .product-info .price {
            color: var(--secondary-color);
            font-weight: bold;
            font-size: 1.1rem;
        }
        .rating {
            color: #ffc107;
            margin: 0.5rem 0;
        }
        .interaction-section {
            background-color: white;
            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin-top: 3rem;
        }
        .interaction-section h2 {
            color: var(--primary-color);
            margin-bottom: 2rem;
            text-align: center;
        }
        .interaction-tabs {
            display: flex;
            border-bottom: 2px solid #eee;
            margin-bottom: 2rem;
        }
        .tab-button {
            padding: 1rem 2rem;
            background: none;
            border: none;
            font-size: 1.1rem;
            font-weight: 600;
            color: #777;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
        }
        .tab-button.active {
            color: var(--primary-color);
        }
        .tab-button.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--primary-color);
        }
        .tab-content {
            display: none;
        }
        .tab-content.active {
            display: block;
        }
        .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: 0.9rem;
            border: 1px solid #ddd;
            border-radius: var(--border-radius);
            font-size: 1rem;
            font-family: inherit;
            transition: var(--transition);
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(44, 85, 48, 0.1);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.5rem;
            font-size: 2rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: #ffc107;
        }
        .submit-btn {
            background-color: var(--secondary-color);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-top: 1rem;
        }
        .submit-btn:hover {
            background-color: #9a360b;
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(183, 65, 14, 0.3);
        }
        .footer-links {
            background-color: #2a2a2a;
            padding: 3rem 2rem 2rem;
            margin-top: 3rem;
        }
        .web-links-container {
            max-width: 1400px;
            margin: 0 auto 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: #3a3a3a;
            padding: 1.2rem;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: #4a4a4a;
            transform: translateY(-5px);
        }
        .web-link a {
            color: var(--accent-color);
            text-decoration: none;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }
        .web-link a:hover {
            color: #fff;
            text-decoration: underline;
        }
        .site-footer {
            background-color: var(--primary-color);
            color: var(--light-text);
            padding: 2.5rem 2rem;
            text-align: center;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .copyright {
            font-size: 0.95rem;
            opacity: 0.9;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            width: 100%;
        }
        @media (max-width: 992px) {
            .main-nav ul {
                gap: 1rem;
            }
            .article-header h1 {
                font-size: 2.4rem;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                order: 3;
                margin-top: 1rem;
            }
            .main-nav.active {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0.5rem;
            }
            .main-nav a {
                padding: 0.8rem;
                justify-content: center;
            }
            .content-wrapper {
                padding: 0 1rem 2rem;
                gap: 2rem;
            }
            .main-content article {
                padding: 1.8rem;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            .search-box {
                flex-direction: column;
                border-radius: var(--border-radius);
            }
            .search-box input,
            .search-box button {
                border-radius: var(--border-radius);
                width: 100%;
            }
            .interaction-tabs {
                flex-direction: column;
            }
            .tab-button {
                text-align: left;
                border-bottom: 1px solid #eee;
            }
            .web-links-container {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
        }
        @media (max-width: 480px) {
            .site-header {
                padding: 1rem;
            }
            .logo a {
                font-size: 1.8rem;
            }
            .article-header h1 {
                font-size: 1.7rem;
            }
            .article-meta {
                flex-direction: column;
                gap: 0.5rem;
            }
            .article-body h2 {
                font-size: 1.6rem;
            }
            .article-body h3 {
                font-size: 1.3rem;
            }
            .stats-box {
                grid-template-columns: 1fr;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .article-body > * {
            animation: fadeIn 0.5s ease forwards;
        }
        .highlight-important {
            background-color: #fff3cd;
            border: 1px solid #ffeaa7;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            font-weight: 600;
            color: #856404;
        }
