        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f9f9f9;
            max-width: 100%;
            overflow-x: hidden;
        }
        h1, h2, h3, h4 {
            font-family: 'Georgia', serif;
            color: #1a5276;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        h1 {
            font-size: 2.8rem;
            line-height: 1.2;
            margin-top: 1.5rem;
            color: #154360;
            text-align: center;
        }
        h2 {
            font-size: 2.2rem;
            border-bottom: 3px solid #2e86c1;
            padding-bottom: 0.5rem;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #2874a6;
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }
        @media (min-width: 992px) {
            .main-grid {
                grid-template-columns: 2.5fr 1fr;
            }
        }
        .site-header {
            background: linear-gradient(135deg, #154360 0%, #1b4f72 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;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            color: #f1c40f;
            text-decoration: none;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            font-size: 2.5rem;
        }
        .nav-desktop {
            display: none;
        }
        @media (min-width: 768px) {
            .nav-desktop {
                display: flex;
                gap: 1.8rem;
            }
        }
        .nav-desktop a {
            color: #d6eaf8;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .nav-desktop a:hover {
            background-color: #2e86c1;
            color: white;
            transform: translateY(-2px);
        }
        .hamburger {
            display: block;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        @media (min-width: 768px) {
            .hamburger {
                display: none;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #1b4f72;
            width: 100%;
            padding: 1rem;
            margin-top: 1rem;
            border-radius: 8px;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: #d6eaf8;
            text-decoration: none;
            padding: 0.8rem;
            border-bottom: 1px solid #2e86c1;
            font-weight: 600;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .nav-mobile a:hover {
            background-color: #2e86c1;
            border-radius: 4px;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #eaf2f8;
            font-size: 0.95rem;
            margin-bottom: 2rem;
            border-radius: 0 0 8px 8px;
        }
        .breadcrumb a {
            color: #2e86c1;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #7f8c8d;
        }
        .search-widget {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 2rem;
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .search-input {
            flex-grow: 1;
            padding: 0.9rem 1.2rem;
            border: 2px solid #d6eaf8;
            border-radius: 50px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        .search-input:focus {
            outline: none;
            border-color: #2e86c1;
        }
        .search-btn {
            background: linear-gradient(to right, #2e86c1, #154360);
            color: white;
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(46, 134, 193, 0.4);
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.06);
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px dashed #d6eaf8;
            color: #7f8c8d;
            font-size: 0.95rem;
        }
        .featured-image {
            width: 100%;
            height: auto;
            border-radius: 12px;
            margin: 2rem 0;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            transition: transform 0.5s ease;
        }
        .featured-image:hover {
            transform: scale(1.01);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #7f8c8d;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: white;
            padding: 1.8rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .widget-title {
            font-size: 1.5rem;
            color: #154360;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #f1c40f;
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-label {
            font-weight: 600;
            color: #2c3e50;
        }
        .form-input, .form-textarea, .form-select {
            padding: 0.9rem;
            border: 2px solid #d6eaf8;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        .form-input:focus, .form-textarea:focus, .form-select:focus {
            outline: none;
            border-color: #2e86c1;
        }
        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(to right, #27ae60, #229954);
            color: white;
            border: none;
            padding: 1rem 1.8rem;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.3s, transform 0.3s;
            align-self: flex-start;
        }
        .submit-btn:hover {
            background: linear-gradient(to right, #229954, #1e8449);
            transform: translateY(-3px);
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #f1c40f;
            cursor: pointer;
        }
        .rating-stars i:hover {
            transform: scale(1.2);
        }
        .internal-link {
            color: #2e86c1;
            text-decoration: none;
            font-weight: 600;
            border-bottom: 2px dotted #2e86c1;
            transition: color 0.3s;
        }
        .internal-link:hover {
            color: #154360;
            border-bottom-style: solid;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .highlight {
            background-color: #fef9e7;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
            color: #d35400;
        }
        .block-quote {
            border-left: 5px solid #2e86c1;
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: #555;
            background-color: #f4f9fd;
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
        }
        .site-footer {
            background: linear-gradient(135deg, #154360 0%, #0e2a3a 100%);
            color: #d6eaf8;
            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-logo {
            font-size: 2rem;
            font-weight: 900;
            color: #f1c40f;
            margin-bottom: 1rem;
        }
        friend-link {
            display: block;
            margin-top: 1.5rem;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .friend-links a {
            color: #aed6f1;
            text-decoration: none;
            padding: 0.5rem 1rem;
            background-color: rgba(255,255,255,0.1);
            border-radius: 4px;
            transition: background-color 0.3s;
        }
        .friend-links a:hover {
            background-color: rgba(255,255,255,0.2);
            color: white;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #2e86c1;
            color: #aed6f1;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .article-content {
                padding: 1.5rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-btn {
                width: 100%;
                justify-content: center;
            }
        }
        @media print {
            .site-header, .sidebar, .search-widget, .site-footer, .comment-form, .rating-form {
                display: none;
            }
            body {
                background: white;
                color: black;
            }
            .article-content {
                box-shadow: none;
                padding: 0;
            }
        }
