:root {
            --primary-red: #E63946;
            --primary-blue: #457B9D;
            --primary-yellow: #FFD166;
            --primary-green: #06D6A0;
            --dark-bg: #1D3557;
            --light-bg: #F1FAEE;
            --text-dark: #293241;
            --text-light: #F1FAEE;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --radius: 12px;
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: var(--light-bg);
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-blue) 100%);
            color: var(--text-light);
            padding: 1.2rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--primary-yellow);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .my-logo span:nth-child(1) { color: var(--primary-red); }
        .my-logo span:nth-child(2) { color: var(--primary-green); }
        .my-logo span:nth-child(3) { color: var(--primary-blue); }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: var(--radius);
            position: relative;
        }
        .nav-desktop a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            background: transparent;
            border: none;
            padding: 5px;
        }
        @media (max-width: 768px) {
            .hamburger { display: flex; }
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--text-light);
            border-radius: 2px;
            transition: var(--transition);
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }
        .nav-mobile {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--dark-bg);
            flex-direction: column;
            padding: 1rem;
            box-shadow: var(--shadow);
            z-index: 999;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-weight: 600;
        }
        .nav-mobile a:hover {
            background-color: rgba(255,255,255,0.1);
            padding-left: 1.5rem;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #e9ecef;
            color: #6c757d;
            font-size: 0.9rem;
        }
        .breadcrumb a:hover {
            color: var(--primary-red);
            text-decoration: underline;
        }
        .breadcrumb span {
            margin: 0 5px;
        }
        .search-section {
            background: linear-gradient(to right, var(--primary-green), var(--primary-blue));
            padding: 2.5rem 0;
            text-align: center;
            margin: 1.5rem 0;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .search-section h2 {
            color: var(--text-light);
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 6px 15px rgba(0,0,0,0.2);
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: none;
            font-size: 1.1rem;
            outline: none;
        }
        .search-button {
            background-color: var(--primary-red);
            color: white;
            border: none;
            padding: 1rem 2rem;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-button:hover {
            background-color: #c1121f;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2.5rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-area {
            background-color: white;
            padding: 2.5rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .sidebar {
            background-color: white;
            padding: 1.8rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        h1 {
            color: var(--dark-bg);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 6px solid var(--primary-red);
            padding-left: 1rem;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
        }
        h2 {
            color: var(--primary-blue);
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem 0;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--primary-yellow);
        }
        h3 {
            color: var(--dark-bg);
            font-size: 1.5rem;
            margin: 2rem 0 1rem 0;
        }
        h4 {
            color: var(--primary-green);
            font-size: 1.2rem;
            margin: 1.5rem 0 0.8rem 0;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--dark-bg);
            background-color: rgba(6, 214, 160, 0.1);
            padding: 1.5rem;
            border-radius: var(--radius);
            margin-bottom: 2rem;
            border-left: 4px solid var(--primary-green);
        }
        .highlight {
            background-color: rgba(255, 209, 102, 0.3);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .article-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: var(--radius);
            margin: 2rem auto;
            display: block;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .article-image:hover {
            transform: scale(1.01);
        }
        .content-link {
            color: var(--primary-blue);
            font-weight: 600;
            border-bottom: 2px dotted var(--primary-blue);
        }
        .content-link:hover {
            color: var(--primary-red);
            border-bottom: 2px solid var(--primary-red);
        }
        ul, ol {
            margin-left: 1.8rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.7rem;
        }
        .interactive-section {
            background-color: #f8f9fa;
            padding: 2.5rem;
            border-radius: var(--radius);
            margin: 3rem 0;
            border: 2px solid #e9ecef;
        }
        .rating-box {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }
        .stars {
            display: flex;
            gap: 5px;
        }
        .star {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: #FFD700;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-input, .form-textarea {
            padding: 1rem;
            border: 1px solid #ced4da;
            border-radius: var(--radius);
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 3px rgba(69, 123, 157, 0.2);
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-button {
            background-color: var(--primary-green);
            color: white;
            border: none;
            padding: 1rem 2rem;
            font-size: 1.1rem;
            border-radius: var(--radius);
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            align-self: flex-start;
        }
        .submit-button:hover {
            background-color: #05b586;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget-title {
            color: var(--dark-bg);
            font-size: 1.4rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary-red);
        }
        .link-list {
            list-style: none;
            margin-left: 0;
        }
        .link-list li {
            margin-bottom: 0.8rem;
            padding: 0.8rem;
            background-color: #f8f9fa;
            border-radius: 8px;
            transition: var(--transition);
        }
        .link-list li:hover {
            background-color: #e9ecef;
            padding-left: 1.2rem;
        }
        .link-list a {
            color: var(--primary-blue);
            display: block;
            font-weight: 500;
        }
        .site-footer {
            background-color: var(--dark-bg);
            color: var(--text-light);
            padding: 3rem 0 1.5rem 0;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary-yellow);
            margin-bottom: 1rem;
        }
        .footer-heading {
            color: var(--primary-green);
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
        }
        friend-link a {
            color: #ddd;
            padding: 0.3rem 0;
            display: block;
        }
        friend-link a:hover {
            color: var(--primary-yellow);
            padding-left: 0.5rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        .update-time {
            font-style: italic;
            color: #6c757d;
            text-align: right;
            margin-top: 2rem;
            font-size: 0.9rem;
        }
        @media (max-width: 576px) {
            .article-area, .sidebar {
                padding: 1.5rem;
            }
            .interactive-section {
                padding: 1.5rem;
            }
        }
