        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: #2c5aa0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #e63946;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul, ol {
            padding-left: 1.5em;
            margin: 1em 0;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        .site-header {
            background: linear-gradient(135deg, #1d3557 0%, #457b9d 100%);
            color: white;
            padding: 1.2rem 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;
            letter-spacing: -0.5px;
        }
        .my-logo a {
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo a:hover {
            color: #a8dadc;
        }
        .my-logo i {
            font-size: 2.5rem;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #f1faee;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
            transition: background 0.3s;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            background: rgba(168, 218, 220, 0.2);
            color: #a8dadc;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 0.8rem 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin: 0 10px;
            color: #6c757d;
        }
        .breadcrumb a {
            color: #495057;
        }
        .breadcrumb a:hover {
            color: #1d3557;
            text-decoration: underline;
        }
        .main-content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            flex: 1;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
        }
        .article-header {
            border-bottom: 3px solid #e63946;
            padding-bottom: 1.5rem;
            margin-bottom: 2.5rem;
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: #1d3557;
            line-height: 1.2;
            margin-bottom: 0.5rem;
        }
        .article-meta {
            color: #6c757d;
            font-size: 0.95rem;
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-top: 1rem;
        }
        .article-meta i {
            margin-right: 5px;
        }
        h2 {
            font-size: 2rem;
            color: #457b9d;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #a8dadc;
        }
        h3 {
            font-size: 1.6rem;
            color: #1d3557;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #e63946;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.05rem;
        }
        .lead {
            font-size: 1.25rem;
            color: #495057;
            font-weight: 500;
            background: #f8f9fa;
            padding: 1.2rem;
            border-left: 4px solid #457b9d;
            border-radius: 0 8px 8px 0;
            margin: 2rem 0;
        }
        b, strong {
            color: #1d3557;
            font-weight: 700;
        }
        .highlight {
            background-color: #fff3cd;
            padding: 0.2rem 0.4rem;
            border-radius: 3px;
        }
        .article-image {
            margin: 2.5rem auto;
            text-align: center;
            max-width: 800px;
        }
        .article-image img {
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            border: 1px solid #dee2e6;
        }
        .article-image figcaption {
            font-style: italic;
            color: #6c757d;
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        .content-link {
            font-weight: 600;
            border-bottom: 1px dotted #2c5aa0;
        }
        .content-link:hover {
            border-bottom-style: solid;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            padding: 1.8rem;
            border-radius: 10px;
            box-shadow: 0 5px 12px rgba(0, 0, 0, 0.05);
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            color: #e63946;
            margin-top: 0;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #dee2e6;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 0.85rem 1rem;
            border: 2px solid #ced4da;
            border-right: none;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        .search-form button {
            background: #457b9d;
            color: white;
            border: none;
            border-radius: 0 8px 8px 0;
            padding: 0 1.5rem;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #1d3557;
        }
        .rating-form,
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #ffd166;
            cursor: pointer;
            margin-bottom: 0.5rem;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: #ff9e00;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-group label {
            font-weight: 600;
            color: #495057;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 0.8rem;
            border: 2px solid #ced4da;
            border-radius: 6px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #457b9d;
        }
        .form-submit {
            background: #e63946;
            color: white;
            border: none;
            padding: 0.9rem 1.5rem;
            border-radius: 6px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s;
            align-self: flex-start;
        }
        .form-submit:hover {
            background: #d00000;
        }
        .site-footer {
            background: #1d3557;
            color: #f1faee;
            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: #a8dadc;
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
        }
        .footer-links {
            list-style: none;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 0.7rem;
        }
        .footer-links a {
            color: #f1faee;
        }
        .footer-links a:hover {
            color: #e63946;
            padding-left: 5px;
            transition: all 0.2s;
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 8px;
            margin-top: 1.5rem;
        }
        friend-link h5 {
            color: #a8dadc;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }
        friend-link a {
            color: #f1faee;
            display: inline-block;
            margin-right: 1rem;
            margin-bottom: 0.5rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #457b9d;
            font-size: 0.9rem;
            color: #a8dadc;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .main-nav {
                width: 100%;
                order: 3;
                margin-top: 1rem;
                display: none;
            }
            .main-nav.active {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0.5rem;
            }
            .main-nav a {
                display: block;
                padding: 0.8rem;
                border: 1px solid rgba(255, 255, 255, 0.1);
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            .article-content {
                padding: 1.5rem;
            }
            .main-content-wrapper {
                padding: 1rem 0;
                gap: 1.5rem;
            }
        }
