        * { 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;
            max-width: 100%;
            overflow-x: hidden;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { color: #1a365d; font-weight: 800; margin-bottom: 1rem; line-height: 1.3; }
        h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); border-bottom: 4px solid #e63946; padding-bottom: 0.5rem; }
        h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-top: 2.5rem; }
        h3 { font-size: 1.6rem; margin-top: 2rem; color: #2a4c7d; }
        h4 { font-size: 1.3rem; margin-top: 1.5rem; color: #457b9d; }
        p { margin-bottom: 1.2rem; font-size: 1.1rem; }
        a { color: #e63946; text-decoration: none; transition: color 0.3s ease; }
        a:hover { color: #1a365d; text-decoration: underline; }
        strong { color: #1a365d; }
        .lead { font-size: 1.3rem; color: #555; font-weight: 500; }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a365d 0%, #2a4c7d 100%);
            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;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        .my-logo span:first-child { color: #e63946; }
        .my-logo:hover { text-decoration: none; }
        .breadcrumb {
            background: #e9ecef;
            padding: 0.8rem 0;
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }
        .breadcrumb a { color: #6c757d; }
        .breadcrumb .separator { margin: 0 8px; color: #999; }
        .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: #ffd166; text-decoration: none; }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #ffd166;
            transition: width 0.3s;
        }
        .main-nav a:hover::after { width: 100%; }
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .menu-toggle { display: block; }
            .main-nav { 
                position: fixed;
                top: 70px;
                left: -100%;
                width: 80%;
                height: calc(100vh - 70px);
                background: #1a365d;
                flex-direction: column;
                padding: 2rem;
                transition: left 0.4s ease;
                box-shadow: 4px 0 12px rgba(0,0,0,0.2);
            }
            .main-nav.active { left: 0; }
            .main-nav ul { flex-direction: column; gap: 1.5rem; }
        }
        .search-box {
            background: #e9f5ff;
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            text-align: center;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-form input {
            flex: 1;
            padding: 0.9rem 1.2rem;
            border: 2px solid #1a365d;
            border-radius: 50px 0 0 50px;
            font-size: 1.1rem;
            outline: none;
        }
        .search-form button {
            background: #e63946;
            color: white;
            border: none;
            padding: 0 1.8rem;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }
        .search-form button:hover { background: #c1121f; }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.05);
        }
        .interactive-panel {
            background: #f1faee;
            border-left: 5px solid #457b9d;
            padding: 1.8rem;
            margin: 2.5rem 0;
            border-radius: 0 10px 10px 0;
        }
        .interactive-panel h3 { margin-top: 0; }
        .rating-form, .comment-form {
            margin-top: 1.5rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        .star {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active { color: #ffd700; }
        .form-group { margin-bottom: 1.2rem; }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 1rem;
            font-family: inherit;
        }
        .form-group textarea { min-height: 120px; resize: vertical; }
        .btn {
            display: inline-block;
            background: #1a365d;
            color: white;
            padding: 0.9rem 2rem;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
        }
        .btn:hover {
            background: #e63946;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
            text-decoration: none;
        }
        .btn i { margin-right: 8px; }
        .sidebar {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.05);
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            border-bottom: 2px solid #e63946;
            padding-bottom: 0.5rem;
            margin-bottom: 1.2rem;
        }
        .related-links { list-style: none; }
        .related-links li { margin-bottom: 0.9rem; }
        .related-links a {
            display: flex;
            align-items: center;
            padding: 0.8rem;
            background: #f8f9fa;
            border-radius: 8px;
            transition: all 0.3s;
        }
        .related-links a:hover {
            background: #e9ecef;
            transform: translateX(5px);
            text-decoration: none;
        }
        .related-links i { margin-right: 10px; color: #e63946; }
        .featured-image {
            margin: 2.5rem 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .featured-image figcaption {
            padding: 1rem;
            background: #f1faee;
            font-style: italic;
            color: #555;
            text-align: center;
        }
        .site-footer {
            background: #1a365d;
            color: white;
            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: 2.5rem;
        }
        .footer-widget h4 {
            color: #ffd166;
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
        }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 0.8rem; }
        .footer-links a {
            color: #ddd;
            transition: color 0.3s;
        }
        .footer-links a:hover { color: #ffd166; text-decoration: none; }
        friend-link {
            display: inline-block;
            background: #2a4c7d;
            color: white;
            padding: 0.6rem 1.2rem;
            border-radius: 6px;
            margin-right: 0.8rem;
            margin-bottom: 0.8rem;
            transition: all 0.3s;
        }
        friend-link:hover {
            background: #e63946;
            text-decoration: none;
            transform: scale(1.05);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #2a4c7d;
            color: #aaa;
            font-size: 0.95rem;
        }
        .text-center { text-align: center; }
        .mt-4 { margin-top: 2rem; }
        .mb-4 { margin-bottom: 2rem; }
        .highlight {
            background: linear-gradient(120deg, #ffd16630 0%, #ffd16630 100%);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
        }
