* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #0a2e36;
            --primary-green: #1b5e20;
            --accent-gold: #d4af37;
            --accent-copper: #b87333;
            --light-bg: #f5f5f5;
            --dark-text: #222;
            --light-text: #eee;
            --shadow: 0 5px 15px 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;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: var(--primary-green);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-copper);
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary-dark), #1a3a42);
            color: var(--light-text);
            padding: 1.5rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(to right, var(--accent-gold), var(--accent-copper));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 2px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }
        .my-logo:hover {
            text-decoration: none;
            transform: scale(1.03);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: var(--light-text);
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .desktop-nav a:hover {
            background-color: rgba(255, 255, 255, 0.1);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--light-text);
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--primary-dark);
            flex-direction: column;
            padding: 1rem;
            box-shadow: var(--shadow);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
            width: 100%;
        }
        .mobile-nav li {
            margin: 0.5rem 0;
        }
        .mobile-nav a {
            color: var(--light-text);
            display: block;
            padding: 0.8rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 1rem 0;
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #6c757d;
        }
        .breadcrumb .separator {
            margin: 0 10px;
            color: #999;
        }
        main {
            flex: 1;
            padding: 2rem 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 3px solid var(--accent-gold);
        }
        h1 {
            font-size: 3.2rem;
            color: var(--primary-dark);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            color: #666;
            font-style: italic;
            margin-top: 1rem;
        }
        .content-section {
            margin-bottom: 3rem;
            background-color: white;
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        h2 {
            color: var(--primary-green);
            font-size: 2.4rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed var(--accent-copper);
        }
        h3 {
            color: var(--accent-copper);
            font-size: 1.8rem;
            margin: 1.8rem 0 1rem;
        }
        h4 {
            color: #555;
            font-size: 1.4rem;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .emphasis {
            font-weight: bold;
            color: var(--primary-dark);
        }
        .highlight-box {
            background: linear-gradient(to right, #fef9e7, #fef5e7);
            border-left: 5px solid var(--accent-gold);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 2rem auto;
            border-radius: 8px;
            box-shadow: var(--shadow);
            border: 1px solid #ddd;
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: -1.5rem;
            margin-bottom: 2rem;
        }
        .interactive-module {
            background-color: #f8f9fa;
            border: 1px solid #dee2e6;
            border-radius: 10px;
            padding: 2rem;
            margin: 3rem 0;
        }
        .module-title {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--primary-green);
            margin-bottom: 1.5rem;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        label {
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        input, textarea, select {
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
        }
        button {
            background: linear-gradient(to right, var(--primary-green), #2e7d32);
            color: white;
            border: none;
            padding: 1rem 1.5rem;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            align-self: flex-start;
        }
        button:hover {
            background: linear-gradient(to right, #2e7d32, var(--primary-green));
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(0,0,0,0.15);
        }
        .stars {
            display: flex;
            gap: 5px;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            margin: 1rem 0;
        }
        .stars:hover .star {
            color: var(--accent-gold);
        }
        .star:hover,
        .star:hover ~ .star {
            color: #ddd;
        }
        .star.active {
            color: var(--accent-gold);
        }
        footer {
            background-color: var(--primary-dark);
            color: var(--light-text);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            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.5rem;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #ccc;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background-color: rgba(255,255,255,0.05);
            padding: 1rem;
            border-radius: 5px;
            margin: 0.5rem 0;
        }
        friend-link a {
            color: var(--accent-gold);
            font-weight: bold;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.7rem; }
            h2 { font-size: 2.1rem; }
            .content-section { padding: 2rem; }
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .header-container { flex-wrap: wrap; }
            h1 { font-size: 2.3rem; }
            h2 { font-size: 1.9rem; }
            h3 { font-size: 1.6rem; }
            .content-section { padding: 1.5rem; }
            .footer-container { grid-template-columns: 1fr; }
        }
        @media (max-width: 576px) {
            .container { padding: 0 15px; }
            h1 { font-size: 2rem; }
            .article-header { padding-bottom: 1.5rem; }
            button { align-self: stretch; }
        }
