        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-dark: #1a1a2e;
            --primary-accent: #c82c34;
            --secondary-accent: #f0a500;
            --text-light: #f5f5f5;
            --text-gray: #cccccc;
            --bg-card: #252547;
            --border-color: #3a3a5d;
            --success: #4CAF50;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--secondary-accent);
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: #ffcc00;
        }
        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 bottom, #0c0c1a, var(--primary-dark));
            padding: 1rem 0;
            border-bottom: 2px solid var(--primary-accent);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 900;
            background: linear-gradient(to right, var(--secondary-accent), #ff3366);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .desktop-nav a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--secondary-accent);
            left: 0;
            bottom: 0;
            transition: width 0.3s;
        }
        .desktop-nav a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--text-light);
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--primary-dark);
            padding: 1rem;
            flex-direction: column;
            border-top: 1px solid var(--border-color);
            box-shadow: var(--shadow);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
            width: 100%;
        }
        .mobile-nav li {
            margin: 0.8rem 0;
        }
        .mobile-nav a {
            display: block;
            padding: 0.8rem;
            border-left: 3px solid transparent;
            font-size: 1.1rem;
        }
        .mobile-nav a:hover {
            border-left-color: var(--secondary-accent);
            background-color: rgba(255,255,255,0.05);
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: var(--text-gray);
            background-color: rgba(37, 37, 71, 0.5);
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .breadcrumb span {
            margin: 0 0.5rem;
        }
        .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-area h1 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--secondary-accent);
            line-height: 1.2;
            border-left: 5px solid var(--primary-accent);
            padding-left: 1rem;
        }
        .article-area h2 {
            font-size: 1.8rem;
            margin: 2.5rem 0 1.2rem;
            color: #f0a500;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed var(--border-color);
        }
        .article-area h3 {
            font-size: 1.4rem;
            margin: 2rem 0 1rem;
            color: #ffcc80;
        }
        .article-area p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .article-area .lead {
            font-size: 1.3rem;
            font-weight: 300;
            background-color: rgba(200, 44, 52, 0.1);
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 2rem;
            border-left: 4px solid var(--primary-accent);
        }
        .highlight {
            background-color: rgba(240, 165, 0, 0.15);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
            border: 1px solid var(--secondary-accent);
        }
        .highlight strong {
            color: var(--secondary-accent);
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .featured-image figcaption {
            padding: 0.8rem;
            background-color: var(--bg-card);
            font-style: italic;
            font-size: 0.9rem;
            color: var(--text-gray);
            text-align: center;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .stat-card {
            background-color: var(--bg-card);
            padding: 1.5rem;
            border-radius: 8px;
            text-align: center;
            border: 1px solid var(--border-color);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.4);
        }
        .stat-card i {
            font-size: 2.5rem;
            color: var(--secondary-accent);
            margin-bottom: 1rem;
        }
        .stat-card h4 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }
        .stat-card p {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-light);
        }
        .sidebar-widget {
            background-color: var(--bg-card);
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 2rem;
            border: 1px solid var(--border-color);
        }
        .sidebar-widget h3 {
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
            color: var(--secondary-accent);
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border-color);
        }
        .search-form input {
            width: 100%;
            padding: 0.9rem;
            border-radius: 6px;
            border: 1px solid var(--border-color);
            background-color: #1e1e3a;
            color: var(--text-light);
            font-size: 1rem;
        }
        .search-form button {
            width: 100%;
            margin-top: 0.8rem;
            padding: 0.9rem;
            background: linear-gradient(to right, var(--primary-accent), #9c1c24);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: opacity 0.3s;
        }
        .search-form button:hover {
            opacity: 0.9;
        }
        .rating-widget .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #ffd700;
        }
        .rating-widget .stars i {
            cursor: pointer;
            transition: color 0.2s, transform 0.2s;
        }
        .rating-widget .stars i:hover {
            color: #ffcc00;
            transform: scale(1.2);
        }
        .rating-widget button {
            width: 100%;
            padding: 0.8rem;
            background-color: var(--success);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            margin-top: 1rem;
        }
        .comments-section {
            margin-top: 3rem;
            background-color: var(--bg-card);
            padding: 2rem;
            border-radius: 10px;
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border-radius: 6px;
            border: 1px solid var(--border-color);
            background-color: #1e1e3a;
            color: var(--text-light);
            font-size: 1rem;
            min-height: 120px;
            margin-bottom: 1rem;
            resize: vertical;
        }
        .comment-form input[type="text"],
        .comment-form input[type="email"] {
            width: calc(50% - 0.5rem);
            padding: 0.8rem;
            border-radius: 6px;
            border: 1px solid var(--border-color);
            background-color: #1e1e3a;
            color: var(--text-light);
            font-size: 1rem;
            margin-bottom: 1rem;
        }
        @media (max-width: 768px) {
            .comment-form input[type="text"],
            .comment-form input[type="email"] {
                width: 100%;
            }
        }
        .comment-form button {
            padding: 1rem 2rem;
            background-color: var(--primary-accent);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .comment-form button:hover {
            background-color: #a8232a;
        }
        .comment-list {
            margin-top: 2.5rem;
        }
        .comment {
            padding: 1.5rem;
            border-bottom: 1px solid var(--border-color);
        }
        .comment:last-child {
            border-bottom: none;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.8rem;
            font-size: 0.9rem;
            color: var(--text-gray);
        }
        .footer-links {
            background-color: #15152b;
            padding: 3rem 0 2rem;
            margin-top: 3rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: rgba(37, 37, 71, 0.5);
            padding: 1.2rem;
            border-radius: 6px;
            transition: background-color 0.3s;
        }
        .web-link:hover {
            background-color: rgba(200, 44, 52, 0.2);
        }
        .web-link a {
            color: var(--text-light);
            font-weight: 500;
        }
        .web-link a:hover {
            color: var(--secondary-accent);
        }
        .site-footer {
            background-color: #0c0c1a;
            padding: 2rem 0;
            text-align: center;
            color: var(--text-gray);
            font-size: 0.9rem;
            border-top: 1px solid var(--border-color);
        }
        .footer-links a {
            color: var(--secondary-accent);
        }
        .text-center { text-align: center; }
        .mt-3 { margin-top: 3rem; }
        .mb-3 { margin-bottom: 3rem; }
        .emoji { font-size: 1.2em; }
        .bold { font-weight: 700; color: var(--secondary-accent); }
        @media (max-width: 992px) {
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .article-area h1 { font-size: 2rem; }
            .article-area h2 { font-size: 1.6rem; }
        }
        @media (max-width: 576px) {
            .container { padding: 0 15px; }
            .article-area h1 { font-size: 1.8rem; }
            .stats-grid { grid-template-columns: 1fr; }
        }
