* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-green: #2a6b2a;
            --felt-green: #356635;
            --accent-gold: #d4af37;
            --light-bg: #f8f8f0;
            --text-dark: #333333;
            --text-light: #f0f0f0;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --border-radius: 8px;
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--light-bg);
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--primary-green);
            color: var(--text-light);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent-gold);
            text-decoration: none;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            font-size: 2.2rem;
        }
        .search-box {
            display: flex;
            width: 300px;
        }
        .search-box input {
            flex-grow: 1;
            padding: 10px 15px;
            border: none;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-size: 1rem;
        }
        .search-box button {
            background-color: var(--accent-gold);
            color: var(--text-dark);
            border: none;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            padding: 0 20px;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover {
            background-color: #b8941f;
        }
        nav {
            background-color: var(--felt-green);
        }
        .nav-desktop {
            display: flex;
            justify-content: center;
            list-style: none;
        }
        .nav-desktop li {
            position: relative;
        }
        .nav-desktop a {
            display: block;
            color: var(--text-light);
            text-decoration: none;
            padding: 18px 24px;
            font-weight: 600;
            transition: var(--transition);
        }
        .nav-desktop a:hover,
        .nav-desktop a.active {
            background-color: var(--accent-gold);
            color: var(--text-dark);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #e8e8d8;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--primary-green);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            padding: 40px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .article-content {
            background: white;
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .article-content h1 {
            color: var(--primary-green);
            font-size: 2.8rem;
            margin-bottom: 25px;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            color: #666;
            font-size: 0.95rem;
        }
        .featured-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: var(--border-radius);
            margin-bottom: 35px;
            border: 5px solid var(--accent-gold);
        }
        .article-content h2 {
            color: var(--felt-green);
            font-size: 2rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed var(--accent-gold);
        }
        .article-content h3 {
            color: var(--primary-green);
            font-size: 1.6rem;
            margin: 30px 0 15px;
        }
        .article-content p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-content emoji {
            font-size: 1.3rem;
            margin-right: 5px;
        }
        .highlight {
            background-color: #fffacd;
            padding: 25px;
            border-left: 5px solid var(--accent-gold);
            margin: 30px 0;
            font-size: 1.1rem;
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat {
            background: var(--felt-green);
            color: white;
            padding: 20px;
            border-radius: var(--border-radius);
            text-align: center;
        }
        .stat h4 {
            font-size: 2.5rem;
            color: var(--accent-gold);
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background: white;
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--primary-green);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            font-size: 1.8rem;
            color: #ddd;
            margin: 10px 0;
        }
        .stars i {
            cursor: pointer;
            transition: var(--transition);
        }
        .stars i:hover,
        .stars i.active {
            color: var(--accent-gold);
        }
        .rating-widget input,
        .rating-widget textarea {
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: var(--border-radius);
            font-size: 1rem;
        }
        .rating-widget button {
            background-color: var(--primary-green);
            color: white;
            border: none;
            padding: 12px;
            border-radius: var(--border-radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-widget button:hover {
            background-color: var(--felt-green);
        }
        .comments-section {
            max-height: 500px;
            overflow-y: auto;
        }
        .comment {
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }
        .comment:last-child {
            border-bottom: none;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-size: 0.9rem;
            color: #666;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin: 50px 0 30px;
        }
        .web-link {
            background: var(--felt-green);
            color: white;
            padding: 15px;
            border-radius: var(--border-radius);
            text-align: center;
        }
        .web-link a {
            color: var(--accent-gold);
            text-decoration: none;
            font-weight: 600;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        footer {
            background-color: var(--primary-green);
            color: var(--text-light);
            padding: 50px 0 20px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: var(--accent-gold);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-section a {
            color: #ddd;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: var(--transition);
        }
        .footer-section a:hover {
            color: var(--accent-gold);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .mobile-nav {
                display: none;
                flex-direction: column;
                background-color: var(--felt-green);
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                z-index: 999;
            }
            .mobile-nav.active {
                display: flex;
            }
            .mobile-nav a {
                color: white;
                padding: 15px 20px;
                text-decoration: none;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .mobile-nav a:hover {
                background-color: var(--accent-gold);
                color: var(--text-dark);
            }
            .header-top {
                flex-wrap: wrap;
                gap: 15px;
            }
            .search-box {
                width: 100%;
                order: 3;
            }
        }
        @media (max-width: 768px) {
            .article-content {
                padding: 25px;
            }
            .article-content h1 {
                font-size: 2.2rem;
            }
            .featured-image {
                height: 250px;
            }
            .stats-box {
                grid-template-columns: 1fr;
            }
        }
