        * {
            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: 100vw;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        h1, h2, h3, h4 {
            font-family: Georgia, 'Times New Roman', Times, serif;
            color: #2c3e50;
            margin-top: 1.5em;
            margin-bottom: 0.7em;
            line-height: 1.3;
        }
        h1 {
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            text-align: center;
            border-bottom: 4px solid #3498db;
            padding-bottom: 20px;
            margin-top: 0.5em;
        }
        h2 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            color: #2980b9;
            border-left: 5px solid #e74c3c;
            padding-left: 15px;
        }
        h3 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            color: #16a085;
        }
        h4 {
            font-size: clamp(1.2rem, 2.5vw, 1.6rem);
            color: #8e44ad;
        }
        p {
            margin-bottom: 1.2em;
            font-size: clamp(1rem, 2.5vw, 1.1rem);
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: #555;
            text-align: center;
            max-width: 800px;
            margin: 1em auto 2em;
        }
        strong {
            color: #c0392b;
            font-weight: 700;
        }
        em {
            color: #27ae60;
        }
        a {
            color: #3498db;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #e74c3c;
            text-decoration: underline;
        }
        ul, ol {
            margin-left: 2em;
            margin-bottom: 1.5em;
        }
        li {
            margin-bottom: 0.5em;
        }
        blockquote {
            border-left: 5px solid #f1c40f;
            background-color: #fffde7;
            padding: 1.5em;
            margin: 2em 0;
            font-style: italic;
            border-radius: 0 8px 8px 0;
        }
        .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(135deg, #2c3e50, #4a6491);
            color: white;
            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-family: 'Arial Black', Gadget, sans-serif;
            font-size: 2rem;
            color: #f1c40f;
            text-decoration: none;
        }
        .my-logo:hover {
            text-decoration: none;
            color: #fff;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .main-nav a {
            color: #ecf0f1;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
        }
        .main-nav a:hover, .main-nav a:focus {
            background-color: rgba(241, 196, 15, 0.2);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: #ecf0f1;
            padding: 0.8rem 20px;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: #7f8c8d;
        }
        .breadcrumb span {
            color: #34495e;
        }
        .search-module {
            background-color: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin: 2rem auto;
            max-width: 600px;
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex-grow: 1;
            padding: 12px 15px;
            border: 2px solid #bdc3c7;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        .search-btn {
            background-color: #3498db;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-btn:hover {
            background-color: #2980b9;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        .featured-img {
            width: 100%;
            border-radius: 10px;
            margin: 2em auto;
            border: 5px solid #f1c40f;
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #7f8c8d;
            margin-top: 0.5em;
        }
        .sidebar {
            background-color: white;
            padding: 1.8rem;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.06);
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            margin-top: 0;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #3498db;
        }
        .related-links ul {
            list-style: none;
            margin-left: 0;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            padding-left: 1.2rem;
            position: relative;
        }
        .related-links li::before {
            content: '▶';
            color: #e74c3c;
            position: absolute;
            left: 0;
        }
        .rating-module, .comments-module {
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin: 3rem 0;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            max-width: 600px;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 2rem;
            color: #bdc3c7;
            cursor: pointer;
        }
        .stars .active {
            color: #f1c40f;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-control {
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 1rem;
            font-family: inherit;
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background-color: #27ae60;
            color: white;
            border: none;
            padding: 14px 25px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            align-self: flex-start;
            transition: background 0.3s;
        }
        .submit-btn:hover {
            background-color: #219653;
        }
        .site-footer {
            background-color: #2c3e50;
            color: #ecf0f1;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h4 {
            color: #f1c40f;
            border-left: none;
            padding-left: 0;
            margin-top: 0;
        }
        .footer-links {
            list-style: none;
            margin-left: 0;
        }
        .footer-links a {
            color: #bdc3c7;
        }
        friend-link {
            display: block;
            background-color: #34495e;
            padding: 1.5rem;
            border-radius: 8px;
            margin-top: 2rem;
        }
        friend-link a {
            color: #f1c40f;
            font-weight: bold;
        }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid #4a6572;
            color: #95a5a6;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #34495e;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                box-shadow: 0 5px 10px rgba(0,0,0,0.2);
            }
            .main-nav.active ul {
                display: flex;
            }
            .article-content {
                padding: 1.5rem;
            }
            .search-module, .rating-module, .comments-module {
                padding: 1.2rem;
            }
        }
        .text-center { text-align: center; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mt-2 { margin-top: 2rem; }
        .updated {
            font-size: 0.9rem;
            color: #7f8c8d;
            text-align: right;
            margin-top: 2em;
            border-top: 1px dotted #bdc3c7;
            padding-top: 1em;
        }
        .highlight-box {
            background: linear-gradient(to right, #e3f2fd, #f3e5f5);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 6px solid #9b59b6;
            margin: 2rem 0;
        }
