:root {
            --primary-color: #1a365d;
            --secondary-color: #e53e3e;
            --accent-color: #f6ad55;
            --light-color: #f7fafc;
            --dark-color: #2d3748;
            --text-color: #2d3748;
            --text-light: #718096;
            --border-color: #e2e8f0;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --transition: all 0.3s ease;
        }
        * {
            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: var(--text-color);
            background-color: #fff;
            overflow-x: hidden;
        }
        a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary-color);
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: var(--primary-color);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            color: white;
            font-size: 1.8rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
        }
        .logo i {
            color: var(--accent-color);
            margin-right: 10px;
            font-size: 2rem;
        }
        .logo a:hover {
            text-decoration: none;
            color: var(--accent-color);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a:hover {
            color: var(--accent-color);
            text-decoration: none;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-color);
            transition: var(--transition);
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        .breadcrumb {
            background-color: var(--light-color);
            padding: 1rem 0;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin-left: 0.5rem;
            color: var(--text-light);
        }
        .breadcrumb a {
            color: var(--text-light);
        }
        .breadcrumb a:hover {
            color: var(--secondary-color);
        }
        .search-container {
            background: linear-gradient(135deg, var(--primary-color), #2c5282);
            padding: 2rem 0;
            margin-bottom: 2rem;
            border-radius: 10px;
            color: white;
        }
        .search-box {
            max-width: 600px;
            margin: 0 auto;
        }
        .search-box h2 {
            margin-bottom: 1rem;
            text-align: center;
        }
        .search-form {
            display: flex;
            box-shadow: var(--shadow);
            border-radius: 50px;
            overflow: hidden;
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: none;
            font-size: 1rem;
        }
        .search-input:focus {
            outline: none;
        }
        .search-btn {
            background-color: var(--secondary-color);
            color: white;
            border: none;
            padding: 0 1.5rem;
            cursor: pointer;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        .search-btn:hover {
            background-color: #c53030;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 3rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            border-radius: 10px;
            overflow: hidden;
        }
        .article-header {
            margin-bottom: 2rem;
        }
        .article-title {
            font-size: 2.5rem;
            line-height: 1.2;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        .article-meta {
            display: flex;
            gap: 1.5rem;
            color: var(--text-light);
            font-size: 0.9rem;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 1rem;
            margin-bottom: 2rem;
        }
        .article-meta span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .featured-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .featured-image:hover {
            transform: scale(1.01);
        }
        .article-body {
            font-size: 1.1rem;
        }
        .article-body h1 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin: 2rem 0 1rem;
            border-bottom: 3px solid var(--accent-color);
            padding-bottom: 0.5rem;
        }
        .article-body h2 {
            font-size: 2rem;
            color: var(--primary-color);
            margin: 1.8rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--border-color);
        }
        .article-body h3 {
            font-size: 1.5rem;
            color: var(--dark-color);
            margin: 1.5rem 0 0.8rem;
        }
        .article-body h4 {
            font-size: 1.2rem;
            color: var(--dark-color);
            margin: 1.2rem 0 0.5rem;
        }
        .article-body p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .article-body emoji {
            font-size: 1.2em;
            margin: 0 3px;
        }
        .highlight {
            background-color: #fffaf0;
            border-left: 4px solid var(--accent-color);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 5px 5px 0;
        }
        .stat-box {
            background: var(--primary-color);
            color: white;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: var(--shadow);
        }
        .stat-box h3 {
            color: white;
            border-bottom: 1px solid rgba(255,255,255,0.2);
        }
        .quote {
            font-style: italic;
            font-size: 1.2rem;
            color: var(--dark-color);
            border-left: 4px solid var(--secondary-color);
            padding-left: 1.5rem;
            margin: 2rem 0;
        }
        .author {
            display: block;
            text-align: right;
            font-weight: bold;
            color: var(--text-light);
            margin-top: 0.5rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
        }
        .widget-title {
            font-size: 1.2rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent-color);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.2rem;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #f6ad55;
        }
        .star {
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover {
            transform: scale(1.2);
        }
        .rating-form {
            display: none;
            margin-top: 1rem;
        }
        .rating-form.active {
            display: block;
        }
        .rating-form textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid var(--border-color);
            border-radius: 5px;
            margin-bottom: 1rem;
            font-family: inherit;
        }
        .rating-form button {
            background-color: var(--secondary-color);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            width: 100%;
            transition: var(--transition);
        }
        .rating-form button:hover {
            background-color: #c53030;
        }
        .related-links ul {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px dashed var(--border-color);
        }
        .related-links a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .related-links a:hover {
            color: var(--primary-color);
        }
        .related-links i {
            color: var(--secondary-color);
        }
        .comments-section {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 3px solid var(--border-color);
        }
        .comments-section h2 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .comment-form {
            background: var(--light-color);
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 2rem;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-control {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid var(--border-color);
            border-radius: 5px;
            font-family: inherit;
        }
        .comment-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .comment {
            background: white;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border-color);
        }
        .comment-author {
            font-weight: bold;
            color: var(--primary-color);
        }
        .comment-date {
            color: var(--text-light);
            font-size: 0.9rem;
        }
        .site-footer {
            background-color: var(--primary-color);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }
        .footer-links h3 {
            color: var(--accent-color);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.5rem;
        }
        .footer-links a {
            color: #cbd5e0;
        }
        .footer-links a:hover {
            color: white;
            text-decoration: underline;
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.1);
            padding: 1rem;
            border-radius: 5px;
            margin-top: 1rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #cbd5e0;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--primary-color);
                padding: 1rem;
                transform: translateY(-100%);
                opacity: 0;
                transition: var(--transition);
                box-shadow: var(--shadow);
            }
            .main-nav.active {
                transform: translateY(0);
                opacity: 1;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 1rem;
            }
            .article-title {
                font-size: 2rem;
            }
            .article-body h1 {
                font-size: 2rem;
            }
            .article-body h2 {
                font-size: 1.7rem;
            }
            .featured-image {
                height: 250px;
            }
        }
        .text-center { text-align: center; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mt-1 { margin-top: 1rem; }
        .mt-2 { margin-top: 2rem; }
        .py-1 { padding-top: 1rem; padding-bottom: 1rem; }
        .bold { font-weight: 700; }
        .italic { font-style: italic; }
        .underline { text-decoration: underline; }
        .emoji-large { font-size: 1.5em; }
