        * { 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: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
            min-height: 100vh;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { color: #1a237e; font-weight: 800; margin-bottom: 1rem; }
        h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); line-height: 1.2; }
        h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); border-left: 5px solid #ff6f00; padding-left: 15px; margin-top: 2.5rem; }
        h3 { font-size: clamp(1.4rem, 3vw, 1.8rem); color: #3949ab; margin-top: 2rem; }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; }
        .lead { font-size: 1.3rem; color: #555; font-weight: 500; }
        .highlight { background-color: #fff9c4; padding: 0.2rem 0.5rem; border-radius: 3px; }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(to right, #1a237e, #283593);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            color: #ffcc00;
            font-size: 2rem;
            font-weight: 900;
            text-decoration: none;
            font-family: 'Arial Black', sans-serif;
            text-shadow: 2px 2px 0 #000;
        }
        .logo a:hover { color: #fff; }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #e8eaf6;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .main-nav a:hover, .main-nav a.active {
            background-color: #3949ab;
            color: #ffcc00;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 0.5rem;
        }
        .breadcrumb {
            background-color: #e8eaf6;
            padding: 1rem;
            border-radius: 5px;
            margin: 1rem 0;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
            color: #5c6bc0;
        }
        .breadcrumb a {
            color: #3949ab;
            text-decoration: none;
        }
        .breadcrumb a:hover { text-decoration: underline; }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 0;
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        .sidebar {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
            align-self: start;
            position: sticky;
            top: 100px;
        }
        .search-widget h3 { margin-top: 0; }
        .search-box {
            display: flex;
            margin-bottom: 1.5rem;
        }
        .search-box input {
            flex-grow: 1;
            padding: 0.8rem;
            border: 2px solid #c5cae9;
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
        }
        .search-box button {
            background-color: #3949ab;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            font-size: 1.2rem;
            transition: background 0.3s;
        }
        .search-box button:hover { background-color: #283593; }
        .interaction-module {
            background: #f9f9ff;
            border: 2px dashed #c5cae9;
            border-radius: 10px;
            padding: 2rem;
            margin: 2.5rem 0;
        }
        .interaction-module h3 { color: #1a237e; }
        .rating-widget {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        .stars {
            display: flex;
            gap: 5px;
        }
        .star {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover, .star.active { color: #ffcc00; }
        .comment-form textarea, .comment-form input {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #c5cae9;
            border-radius: 6px;
            font-family: inherit;
        }
        .comment-form button {
            background: linear-gradient(to right, #ff6f00, #ff8f00);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .comment-form button:hover { transform: translateY(-2px); }
        .featured-img {
            margin: 2rem 0;
            text-align: center;
        }
        .featured-img img {
            border-radius: 12px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
            transition: transform 0.5s;
        }
        .featured-img img:hover { transform: scale(1.02); }
        .img-caption {
            font-style: italic;
            color: #666;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .long-tail-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1rem;
            margin: 3rem 0;
        }
        .web-link {
            background: #e8eaf6;
            padding: 1rem;
            border-radius: 8px;
            transition: all 0.3s;
        }
        .web-link:hover {
            background: #3949ab;
            transform: translateX(5px);
        }
        .web-link a {
            color: #1a237e;
            text-decoration: none;
            font-weight: 600;
        }
        .web-link:hover a { color: white; }
        .site-footer {
            background: #1a237e;
            color: #e8eaf6;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: #ffcc00;
            margin-bottom: 1.5rem;
        }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 0.8rem; }
        .footer-links a {
            color: #c5cae9;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover { color: #ffcc00; }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #3949ab;
            font-size: 0.9rem;
            color: #9fa8da;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
            .sidebar { position: static; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                background: #283593;
                transition: left 0.5s ease;
                padding: 2rem;
                z-index: 999;
            }
            .main-nav.active { left: 0; }
            .main-nav ul {
                flex-direction: column;
                gap: 1rem;
            }
            .header-content { position: relative; }
            .article-content { padding: 1.5rem; }
        }
