        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #1a472a;
            --primary-green: #2d5a27;
            --accent-gold: #c99d3c;
            --accent-bronze: #b87333;
            --light-bg: #f4f1e9;
            --dark-text: #2c2c2c;
            --light-text: #e8e8e8;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--light-bg);
            color: var(--dark-text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-green);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-gold);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(to right, var(--primary-dark), var(--primary-green));
            color: var(--light-text);
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            font-family: 'Times New Roman', serif;
            color: var(--accent-gold);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            letter-spacing: 1px;
        }
        .my-logo:hover {
            color: #fff;
            text-decoration: none;
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--light-text);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: var(--light-text);
            font-weight: 600;
            padding: 0.5rem 0.2rem;
            border-bottom: 2px solid transparent;
        }
        .main-nav a:hover,
        .main-nav a.active {
            color: var(--accent-gold);
            border-bottom-color: var(--accent-gold);
            text-decoration: none;
        }
        .breadcrumb {
            background-color: #e9e3d5;
            padding: 0.8rem 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: var(--primary-green);
        }
        .breadcrumb span {
            color: #666;
            margin: 0 5px;
        }
        .hero {
            text-align: center;
            padding: 3rem 1rem;
            background: linear-gradient(rgba(45, 90, 39, 0.8), rgba(26, 71, 42, 0.9)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            color: white;
            border-radius: 10px;
            margin-bottom: 3rem;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto;
        }
        .content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        article h1,
        article h2,
        article h3,
        article h4 {
            color: var(--primary-dark);
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        article h1 { font-size: 2.8rem; border-bottom: 3px solid var(--accent-gold); padding-bottom: 0.5rem; }
        article h2 { font-size: 2.2rem; border-left: 5px solid var(--primary-green); padding-left: 15px; }
        article h3 { font-size: 1.8rem; color: var(--accent-bronze); }
        article h4 { font-size: 1.4rem; }
        article p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        article strong {
            color: var(--primary-green);
            font-weight: 700;
        }
        .featured-img {
            float: right;
            margin: 0 0 2rem 2rem;
            max-width: 450px;
            border: 5px solid var(--accent-bronze);
            border-radius: 8px;
        }
        .featured-img figcaption {
            font-style: italic;
            text-align: center;
            padding: 0.5rem;
            background: #f9f9f9;
            font-size: 0.9rem;
        }
        .internal-link {
            background-color: #f0f7f0;
            padding: 0.3rem 0.6rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .internal-link:hover {
            background-color: #e0efe0;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .module {
            background: white;
            padding: 1.8rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .module h3 {
            color: var(--primary-dark);
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent-gold);
        }
        .search-form input,
        .comment-form input,
        .comment-form textarea,
        .score-form select {
            width: 100%;
            padding: 12px;
            margin-bottom: 1rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 1rem;
        }
        .search-form button,
        .comment-form button,
        .score-form button {
            width: 100%;
            padding: 12px;
            background: var(--primary-green);
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover,
        .comment-form button:hover,
        .score-form button:hover {
            background: var(--primary-dark);
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: var(--accent-gold);
        }
        .site-footer {
            background: var(--primary-dark);
            color: var(--light-text);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: var(--accent-gold);
            margin-bottom: 1.2rem;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
        }
        friend-link a {
            color: #b0d4b0;
        }
        friend-link a:hover {
            color: white;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #3a5c3a;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 992px) {
            .content-area {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.6rem;
            }
        }
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            .main-nav {
                position: fixed;
                top: 70px;
                right: -100%;
                width: 80%;
                height: calc(100vh - 70px);
                background: var(--primary-dark);
                transition: right 0.4s ease;
                padding: 2rem;
                box-shadow: -5px 0 15px rgba(0,0,0,0.2);
                z-index: 999;
            }
            .main-nav.active {
                right: 0;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 1.5rem;
            }
            .header-content {
                flex-wrap: wrap;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            article {
                padding: 1.8rem;
            }
            .featured-img {
                float: none;
                margin: 1rem auto;
                max-width: 100%;
            }
        }
