:root {
            --primary-color: #e63946;
            --secondary-color: #1d3557;
            --accent-color: #f1faee;
            --dark-bg: #0a1128;
            --light-text: #f1faee;
            --dark-text: #1d3557;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f8f9fa;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        .site-header {
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--secondary-color) 100%);
            color: var(--light-text);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(to right, #e63946, #a8dadc);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a:hover {
            color: var(--primary-color);
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--light-text);
            font-size: 1.5rem;
            cursor: pointer;
        }
        .breadcrumb {
            max-width: 1200px;
            margin: 1rem auto;
            padding: 0 2rem;
            font-size: 0.9rem;
        }
        .breadcrumb a:hover {
            color: var(--primary-color);
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #777;
        }
        .main-container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .main-container {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            border-radius: 12px;
            padding: 3rem;
            box-shadow: var(--shadow);
        }
        .article-header {
            margin-bottom: 3rem;
            border-bottom: 3px solid var(--accent-color);
            padding-bottom: 1.5rem;
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .meta-info {
            display: flex;
            gap: 1.5rem;
            color: #666;
            font-size: 0.95rem;
        }
        .meta-info i {
            margin-right: 0.5rem;
            color: var(--primary-color);
        }
        h2 {
            font-size: 2rem;
            color: var(--secondary-color);
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #a8dadc;
        }
        h3 {
            font-size: 1.6rem;
            color: var(--dark-bg);
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #555;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--secondary-color);
            background-color: var(--accent-color);
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 5px solid var(--primary-color);
            margin-bottom: 2rem;
        }
        .highlight-box {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-left: 4px solid var(--primary-color);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 12px;
            margin: 2rem 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            transition: transform 0.5s ease;
        }
        .featured-image:hover {
            transform: scale(1.01);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        .content-link {
            color: var(--primary-color);
            font-weight: 600;
            border-bottom: 1px dotted var(--primary-color);
        }
        .content-link:hover {
            border-bottom-style: solid;
        }
        .keyword-highlight {
            background-color: #ffebee;
            padding: 0.1rem 0.4rem;
            border-radius: 4px;
            font-weight: 600;
        }
        blockquote {
            font-style: italic;
            padding: 1.5rem 2rem;
            background-color: #f1f8ff;
            border-radius: 10px;
            border-left: 5px solid #1d3557;
            margin: 2rem 0;
        }
        blockquote p {
            margin-bottom: 0.5rem;
        }
        .author {
            font-weight: bold;
            color: var(--secondary-color);
            text-align: right;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: white;
            border-radius: 12px;
            padding: 1.8rem;
            box-shadow: var(--shadow);
        }
        .widget h3 {
            font-size: 1.4rem;
            margin-top: 0;
            color: var(--secondary-color);
            border-bottom: 1px solid #eee;
            padding-bottom: 0.8rem;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            border: 2px solid #ddd;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: #c1121f;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #ffd700;
        }
        .stars i {
            cursor: pointer;
            transition: var(--transition);
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            resize: vertical;
            min-height: 150px;
            margin-bottom: 1rem;
        }
        .comment-form button {
            background-color: var(--secondary-color);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            width: 100%;
        }
        .comment-form button:hover {
            background-color: var(--dark-bg);
        }
        .site-footer {
            background-color: var(--dark-bg);
            color: var(--light-text);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: var(--accent-color);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section li {
            margin-bottom: 0.8rem;
        }
        .footer-section a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }
        friend-link {
            display: block;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid #2a3d5f;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #2a3d5f;
            color: #a8dadc;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            .main-nav {
                position: fixed;
                top: 70px;
                left: 0;
                background-color: var(--dark-bg);
                width: 100%;
                padding: 2rem;
                transform: translateX(-100%);
                transition: transform 0.4s ease;
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            }
            .main-nav.active {
                transform: translateX(0);
            }
            .main-nav ul {
                flex-direction: column;
                gap: 1.5rem;
            }
            .article-content {
                padding: 2rem 1.5rem;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            .header-container, .breadcrumb, .main-container, .footer-container {
                padding-left: 1.5rem;
                padding-right: 1.5rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
        }
        .text-center { text-align: center; }
        .mt-3 { margin-top: 3rem; }
        .mb-3 { margin-bottom: 3rem; }
        .emoji { font-size: 1.2em; }
