:root {
            --primary-dark: #0a290a;
            --primary-green: #1b4d1b;
            --accent-gold: #c9a949;
            --accent-red: #8b1a1a;
            --text-light: #f0f0f0;
            --text-muted: #b8b8b8;
            --bg-dark: #121212;
            --bg-card: #1e1e1e;
            --border-color: #333;
            --spacing-unit: 1rem;
            --border-radius: 8px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-light);
            background-color: var(--bg-dark);
            background-image: radial-gradient(circle at 15% 50%, var(--primary-green) 0%, transparent 25%), radial-gradient(circle at 85% 30%, var(--accent-red) 0%, transparent 20%);
            background-attachment: fixed;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #fff;
            text-shadow: 0 0 8px var(--accent-gold);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--spacing-unit);
        }
        .site-header {
            background-color: rgba(10, 41, 10, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--accent-gold);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }
        .header-container {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-family: fantasy, cursive;
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--accent-gold);
            text-decoration: none;
            text-shadow: 2px 2px 4px #000;
            background: linear-gradient(45deg, #1b4d1b, #c9a949);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .search-form {
            display: flex;
            flex-grow: 1;
            max-width: 400px;
            margin: 0 1rem;
        }
        .search-input {
            flex-grow: 1;
            padding: 0.75rem 1rem;
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            background: var(--bg-card);
            color: var(--text-light);
            font-size: 1rem;
        }
        .search-btn {
            padding: 0.75rem 1.5rem;
            background: var(--primary-green);
            color: white;
            border: 1px solid var(--border-color);
            border-left: none;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-btn:hover {
            background: var(--accent-gold);
            color: var(--primary-dark);
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: 1px solid var(--accent-gold);
            color: var(--accent-gold);
            font-size: 1.5rem;
            padding: 0.5rem;
            border-radius: var(--border-radius);
            cursor: pointer;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            background: rgba(30, 30, 30, 0.9);
            padding: 1rem;
            border-radius: var(--border-radius);
        }
        .main-nav a {
            font-weight: bold;
            padding: 0.5rem;
            display: block;
            border-bottom: 2px solid transparent;
        }
        .main-nav a:hover {
            border-bottom-color: var(--accent-gold);
        }
        .breadcrumb {
            padding: 0.5rem;
            font-size: 0.9rem;
            color: var(--text-muted);
            background: rgba(30, 30, 30, 0.7);
            border-radius: var(--border-radius);
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
            padding: 2rem 0;
        }
        .article-content {
            background: var(--bg-card);
            padding: 2rem;
            border-radius: var(--border-radius);
            border: 1px solid var(--border-color);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .sidebar-widget {
            background: var(--bg-card);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            border: 1px solid var(--border-color);
        }
        .sidebar-widget h3 {
            color: var(--accent-gold);
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
        }
        .sidebar-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        .sidebar-links a {
            display: block;
            padding: 0.5rem;
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.05);
        }
        .sidebar-links a:hover {
            background: rgba(201, 169, 73, 0.2);
        }
        h1 {
            font-size: 2.8rem;
            color: var(--accent-gold);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 2px 2px 4px #000;
            border-bottom: 3px solid var(--accent-red);
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2rem;
            color: #4CAF50;
            margin: 2.5rem 0 1rem 0;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed var(--primary-green);
        }
        h3 {
            font-size: 1.6rem;
            color: var(--text-light);
            margin: 2rem 0 1rem 0;
        }
        h4 {
            font-size: 1.3rem;
            color: var(--text-muted);
            margin: 1.5rem 0 0.75rem 0;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            hyphens: auto;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: bold;
            color: var(--accent-gold);
            background: rgba(27, 77, 27, 0.3);
            padding: 1rem;
            border-left: 4px solid var(--accent-gold);
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            margin-bottom: 2rem;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(139, 26, 26, 0.1), rgba(27, 77, 27, 0.1));
            border-left: 4px solid var(--accent-red);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .info-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            background: rgba(30, 30, 30, 0.8);
        }
        .info-table th, .info-table td {
            border: 1px solid var(--border-color);
            padding: 0.75rem;
            text-align: left;
        }
        .info-table th {
            background: var(--primary-green);
            color: white;
            font-weight: bold;
        }
        .info-table tr:nth-child(even) {
            background: rgba(255, 255, 255, 0.05);
        }
        .article-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: var(--border-radius);
            border: 2px solid var(--accent-gold);
            margin: 1.5rem auto;
            display: block;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
            transition: transform 0.5s ease;
        }
        .article-image:hover {
            transform: scale(1.02);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-muted);
            margin-top: -1rem;
            margin-bottom: 2rem;
        }
        .content-link {
            font-weight: bold;
            border-bottom: 1px dotted var(--accent-gold);
        }
        .interactive-section {
            background: var(--bg-card);
            padding: 2rem;
            border-radius: var(--border-radius);
            margin: 3rem 0;
            border: 1px solid var(--border-color);
        }
        .interactive-section h2 {
            color: var(--accent-gold);
            border-bottom: none;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: var(--border-color);
            cursor: pointer;
            margin-bottom: 1rem;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: var(--accent-gold);
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-group label {
            font-weight: bold;
            color: var(--text-muted);
        }
        .form-control {
            padding: 0.75rem;
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius);
            background: rgba(255, 255, 255, 0.08);
            color: var(--text-light);
            font-size: 1rem;
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            padding: 0.75rem 2rem;
            background: linear-gradient(to right, var(--primary-green), var(--accent-red));
            color: white;
            border: none;
            border-radius: var(--border-radius);
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            align-self: flex-start;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(201, 169, 73, 0.4);
        }
        .last-updated {
            text-align: right;
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px dashed var(--border-color);
        }
        .site-footer {
            background-color: var(--primary-dark);
            color: var(--text-muted);
            padding: 3rem 0 1.5rem 0;
            margin-top: 3rem;
            border-top: 2px solid var(--accent-gold);
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-widget h4 {
            color: var(--accent-gold);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.05);
            padding: 0.75rem;
            margin-bottom: 0.5rem;
            border-radius: 4px;
            transition: all 0.3s;
            border-left: 3px solid transparent;
        }
        friend-link:hover {
            background: rgba(201, 169, 73, 0.15);
            border-left-color: var(--accent-gold);
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: -1;
            }
            h1 {
                font-size: 2.3rem;
            }
            h2 {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            .search-form {
                order: 3;
                max-width: 100%;
                margin: 1rem 0 0 0;
            }
            .mobile-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
            }
            .main-nav.active {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0;
            }
            .main-nav li {
                border-bottom: 1px solid var(--border-color);
            }
            .main-nav li:last-child {
                border-bottom: none;
            }
            .main-nav a {
                padding: 1rem;
            }
            .article-content {
                padding: 1.5rem;
            }
            .footer-container {
                grid-template-columns: 1fr;
            }
        }
