:root {
            --primary-dark: #1a1a1a;
            --secondary-dark: #2d2d2d;
            --accent-rust: #d35400;
            --accent-light: #e67e22;
            --text-primary: #f5f5f5;
            --text-secondary: #cccccc;
            --border-color: #444;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--primary-dark);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-light);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-rust);
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: var(--secondary-dark);
            padding: 1rem 0;
            border-bottom: 2px solid var(--accent-rust);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent-light);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo a span {
            color: var(--accent-rust);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 0.5rem;
        }
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--secondary-dark);
            border-top: 1px solid var(--border-color);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
            padding: 1rem;
        }
        .mobile-nav li {
            padding: 0.8rem 0;
            border-bottom: 1px solid var(--border-color);
        }
        .mobile-nav a {
            display: block;
            font-weight: 600;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb a:hover {
            color: var(--accent-light);
        }
        .search-bar {
            margin: 1.5rem 0;
            display: flex;
        }
        .search-bar input {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            border: 2px solid var(--border-color);
            background-color: var(--secondary-dark);
            color: var(--text-primary);
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }
        .search-bar button {
            padding: 0.8rem 1.5rem;
            background-color: var(--accent-rust);
            color: white;
            border: none;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-bar button:hover {
            background-color: var(--accent-light);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 0;
        }
        @media (max-width: 768px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: var(--secondary-dark);
            padding: 2rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }
        .article-header h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--accent-light);
            line-height: 1.2;
        }
        .article-meta {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--border-color);
        }
        .article-meta span {
            margin-right: 1rem;
        }
        .article-meta i {
            margin-right: 0.3rem;
        }
        .featured-image {
            width: 100%;
            margin: 2rem 0;
            text-align: center;
        }
        .featured-image img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            border: 2px solid var(--border-color);
        }
        .image-caption {
            font-style: italic;
            color: var(--text-secondary);
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        .article-body h2 {
            font-size: 1.8rem;
            margin: 2.5rem 0 1rem;
            color: var(--accent-light);
            border-left: 4px solid var(--accent-rust);
            padding-left: 1rem;
        }
        .article-body h3 {
            font-size: 1.4rem;
            margin: 2rem 0 1rem;
            color: var(--text-primary);
        }
        .article-body p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .article-body emoji {
            font-size: 1.2em;
            margin-right: 0.3em;
        }
        .article-body strong {
            color: var(--accent-light);
            font-weight: 700;
        }
        .internal-link-highlight {
            background-color: rgba(230, 126, 34, 0.1);
            padding: 0.2em 0.4em;
            border-radius: 3px;
            border-bottom: 1px dashed var(--accent-light);
        }
        .quote-box {
            border-left: 4px solid var(--accent-rust);
            padding: 1.5rem;
            margin: 2rem 0;
            background-color: rgba(255, 255, 255, 0.05);
            font-style: italic;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background-color: var(--primary-dark);
            padding: 1.5rem;
            border-radius: 8px;
            text-align: center;
            border: 1px solid var(--border-color);
        }
        .stat-card h4 {
            color: var(--accent-light);
            margin-bottom: 0.5rem;
        }
        .stat-card .number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--accent-rust);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background-color: var(--secondary-dark);
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--accent-light);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent-rust);
        }
        .related-links ul {
            list-style: none;
        }
        .related-links li {
            padding: 0.8rem 0;
            border-bottom: 1px solid var(--border-color);
        }
        .related-links li:last-child {
            border-bottom: none;
        }
        .user-interaction {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 2px solid var(--border-color);
        }
        .rating-widget {
            margin-bottom: 2rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        .star {
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: #ffcc00;
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            background-color: var(--primary-dark);
            border: 1px solid var(--border-color);
            color: var(--text-primary);
            border-radius: 4px;
        }
        .comment-form button {
            padding: 0.8rem 2rem;
            background-color: var(--accent-rust);
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background-color: var(--accent-light);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
            padding: 2rem 0;
            border-top: 2px solid var(--border-color);
            border-bottom: 2px solid var(--border-color);
        }
        .web-link {
            background-color: var(--secondary-dark);
            padding: 1rem;
            border-radius: 6px;
            text-align: center;
        }
        .site-footer {
            background-color: var(--secondary-dark);
            padding: 2rem 0;
            text-align: center;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        .footer-content p {
            margin-bottom: 0.5rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-nav-toggle {
                display: block;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            .article-body h2 {
                font-size: 1.6rem;
            }
            .article-body h3 {
                font-size: 1.3rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .footer-links {
                grid-template-columns: 1fr;
            }
            .article-content {
                padding: 1.5rem;
            }
        }
