        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f8f9fa;
            max-width: 100vw;
            overflow-x: hidden;
        }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .highlight { background-color: #fffacd; padding: 0 4px; border-radius: 2px; }
        .emoji { font-size: 1.2em; }
        :root {
            --primary: #125c28; 
            --secondary: #c60c30; 
            --accent: #ffcc00;
            --light: #f1f8e9;
            --dark: #0a2e1a;
            --gray: #6c757d;
        }
        .site-header {
            background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2rem;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i { color: var(--accent); }
        .my-logo span { background: linear-gradient(to right, #ffcc00, #ffffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 900;
        }
        .search-box {
            display: flex;
            background: white;
            border-radius: 50px;
            overflow: hidden;
            padding: 5px;
            min-width: 250px;
        }
        .search-box input {
            border: none;
            padding: 10px 15px;
            flex-grow: 1;
            outline: none;
        }
        .search-box button {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 50px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-box button:hover { background: #a00; }
        .main-nav { margin-top: 1rem; }
        .breadcrumb {
            font-size: 0.9rem;
            color: #ccc;
            margin-bottom: 0.5rem;
        }
        .breadcrumb a { color: var(--accent); text-decoration: none; }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 5px 0;
            position: relative;
            transition: color 0.3s;
        }
        .nav-links a:hover,
        .nav-links a.active { color: var(--accent); }
        .nav-links a:hover::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--accent);
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 5px;
        }
        .nav-links.show { display: flex !important; }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 0;
            background: white;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        .article-content {
            padding-right: 1rem;
        }
        .article-header { margin-bottom: 2rem; }
        .article-header h1 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 0.5rem;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            color: var(--gray);
            font-size: 0.9rem;
            border-bottom: 1px solid #eee;
            padding-bottom: 1rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }
        .last-updated::before { content: '🕒 '; }
        .content-block {
            margin-bottom: 3rem;
        }
        h2 {
            color: var(--primary);
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--light);
        }
        h3 {
            color: var(--secondary);
            font-size: 1.4rem;
            margin: 1.5rem 0 0.75rem;
        }
        h4 {
            color: var(--gray);
            font-size: 1.1rem;
            margin: 1rem 0 0.5rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.25rem;
            text-align: justify;
        }
        .pull-quote {
            font-size: 1.3rem;
            font-style: italic;
            color: var(--primary);
            border-left: 4px solid var(--accent);
            padding-left: 1.5rem;
            margin: 2rem 0;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--gray);
            font-size: 0.9rem;
            margin-top: 0.5rem;
        }
        .feature-img {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin: 2rem auto;
        }
        .sidebar {
            background: var(--light);
            padding: 1.5rem;
            border-radius: 10px;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 {
            color: var(--dark);
            margin-top: 0;
        }
        .widget {
            margin-bottom: 2rem;
        }
        .link-list {
            list-style: none;
        }
        .link-list li {
            margin-bottom: 0.75rem;
            padding-bottom: 0.75rem;
            border-bottom: 1px dashed #ccc;
        }
        .link-list a {
            color: var(--primary);
            text-decoration: none;
            display: block;
            transition: all 0.2s;
        }
        .link-list a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }
        .link-list a::before { content: '▶ '; font-size: 0.8em; color: var(--gray); }
        .interactive-module {
            background: #f8f9fa;
            border: 1px solid #dee2e6;
            border-radius: 8px;
            padding: 1.5rem;
            margin: 2rem 0;
        }
        .module-title {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        .rating-widget {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
            margin: 1rem 0;
        }
        .stars {
            display: flex;
            gap: 5px;
        }
        .star {
            color: #ddd;
            cursor: pointer;
            font-size: 1.5rem;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active { color: #ffcc00; }
        form label {
            display: block;
            margin: 1rem 0 0.5rem;
            font-weight: 600;
        }
        form input,
        form textarea,
        form select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-family: inherit;
            font-size: 1rem;
        }
        form textarea { min-height: 120px; resize: vertical; }
        .form-group { margin-bottom: 1.5rem; }
        .submit-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
            display: block;
            width: 100%;
        }
        .submit-btn:hover { background: var(--dark); }
        .site-footer {
            background: var(--dark);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 2rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo { font-size: 1.8rem; margin-bottom: 1rem; }
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.2s;
        }
        .footer-links a:hover { color: white; }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 1rem;
            border-radius: 5px;
            margin: 1rem 0;
        }
        friend-link a {
            color: var(--accent) !important;
            font-weight: bold;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .header-top { flex-direction: column; align-items: flex-start; gap: 1rem; }
            .search-box { width: 100%; }
            .hamburger { display: block; }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: var(--dark);
                padding: 1rem 0;
                margin-top: 1rem;
                border-radius: 5px;
            }
            .nav-links li { width: 100%; text-align: center; }
            .nav-links a { display: block; padding: 10px; }
            h1 { font-size: 2rem; }
            .article-meta { flex-direction: column; gap: 0.5rem; }
        }
