:root {
            --primary-blue: #1a5fb4;
            --primary-red: #e01b24;
            --primary-yellow: #f9f06b;
            --primary-green: #26a269;
            --dark-bg: #241f31;
            --light-bg: #f6f5f4;
            --text-dark: #2a2a2a;
            --text-light: #fafafa;
            --card-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
            --transition: all 0.3s ease;
            --border-radius: 12px;
        }
        * {
            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 {
            color: var(--primary-blue);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary-red);
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--dark-bg) 0%, #3d3846 100%);
            color: var(--text-light);
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(to right, var(--primary-red), var(--primary-yellow), var(--primary-green), var(--primary-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -1px;
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .desktop-nav {
            display: flex;
            gap: 2rem;
        }
        .desktop-nav a {
            color: var(--text-light);
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .desktop-nav a:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--primary-yellow);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--dark-bg);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: var(--text-light);
            padding: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .mobile-nav a:hover {
            background-color: rgba(255, 255, 255, 0.05);
            padding-left: 1.5rem;
        }
        .breadcrumb {
            background-color: #e9e8e6;
            padding: 0.8rem 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: #666;
        }
        .breadcrumb a:hover {
            color: var(--primary-blue);
        }
        .breadcrumb span {
            color: #999;
            margin: 0 0.5rem;
        }
        main {
            padding: 2rem 0 4rem;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 3px dashed var(--primary-blue);
        }
        h1 {
            font-size: 2.8rem;
            color: var(--dark-bg);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 2rem;
            color: #666;
            font-size: 0.95rem;
            margin-top: 1.5rem;
        }
        .article-meta i {
            margin-right: 0.5rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--card-shadow);
        }
        h2 {
            color: var(--primary-blue);
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary-yellow);
        }
        h3 {
            color: var(--primary-green);
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
        }
        h4 {
            color: var(--primary-red);
            font-size: 1.3rem;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: rgba(249, 240, 107, 0.25);
            padding: 1.5rem;
            border-left: 5px solid var(--primary-yellow);
            margin: 2rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .feature-img {
            width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            transition: transform 0.5s ease;
        }
        .feature-img:hover {
            transform: scale(1.005);
        }
        .internal-link {
            font-weight: 600;
            border-bottom: 2px dotted var(--primary-blue);
        }
        .internal-link:hover {
            border-bottom-style: solid;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        blockquote {
            font-style: italic;
            color: #555;
            border-left: 4px solid var(--primary-green);
            padding-left: 1.5rem;
            margin: 2rem 0 2rem 1.5rem;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            padding: 1.8rem;
            border-radius: var(--border-radius);
            box-shadow: var(--card-shadow);
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            margin-top: 0;
            color: var(--dark-bg);
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.9rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 3px rgba(26, 95, 180, 0.2);
        }
        button, .btn {
            background: linear-gradient(to right, var(--primary-blue), var(--primary-green));
            color: white;
            border: none;
            padding: 1rem 1.8rem;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.7rem;
        }
        button:hover, .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(26, 95, 180, 0.3);
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #ddd;
            margin: 1rem 0;
        }
        .star-rating .active {
            color: #ffc107;
        }
        .star-rating label {
            cursor: pointer;
        }
        .star-rating input {
            display: none;
        }
        .quick-links ul {
            list-style: none;
        }
        .quick-links li {
            margin-bottom: 0.8rem;
            padding-left: 1.2rem;
            position: relative;
        }
        .quick-links li:before {
            content: '▶';
            color: var(--primary-red);
            position: absolute;
            left: 0;
            font-size: 0.8rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            text-align: center;
        }
        .stat-box {
            padding: 1rem;
            background-color: #f0f7ff;
            border-radius: 8px;
        }
        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary-blue);
            line-height: 1;
        }
        footer {
            background-color: var(--dark-bg);
            color: var(--text-light);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 3rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(to right, var(--primary-red), var(--primary-yellow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }
        .footer-links h4 {
            color: var(--primary-yellow);
            font-size: 1.2rem;
            margin-bottom: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.7rem;
        }
        .footer-links a {
            color: #ccc;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 0.5rem;
        }
        friend-link {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.05);
            padding: 0.8rem 1.2rem;
            border-radius: 6px;
            margin: 0.3rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition);
        }
        friend-link:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            aside {
                order: -1;
            }
            .stats-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            article {
                padding: 1.8rem;
            }
            .article-meta {
                flex-direction: column;
                gap: 0.5rem;
                align-items: center;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            h1 {
                font-size: 1.9rem;
            }
            .my-logo {
                font-size: 1.8rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
