* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #f5f3ef;
            color: #1e1e1e;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #b33a2c;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #7a241a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: #1c2a3a;
            color: #fff;
            padding: 18px 0;
            border-bottom: 4px solid #e0a800;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #f5d742;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
            transition: transform 0.2s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #ffec7a;
        }
        .my-logo span {
            color: #fff;
            font-weight: 300;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        nav {
            display: flex;
            gap: 12px;
            align-items: center;
            flex-wrap: wrap;
        }
        nav a {
            color: #e8e4de;
            font-weight: 500;
            padding: 8px 14px;
            border-radius: 30px;
            transition: background 0.2s, color 0.2s;
            font-size: 0.95rem;
        }
        nav a:hover {
            background: rgba(255, 255, 255, 0.12);
            color: #f5d742;
            text-decoration: none;
        }
        nav a i {
            margin-right: 6px;
            font-size: 0.85rem;
        }
        .breadcrumb {
            background: #f0ede8;
            padding: 12px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #ddd;
        }
        .breadcrumb .container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:hover {
            color: #b33a2c;
        }
        .breadcrumb span {
            color: #888;
            margin: 0 4px;
        }
        .breadcrumb .current {
            color: #1e1e1e;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #1c2a3a 0%, #2a3f54 100%);
            color: #fff;
            padding: 60px 0 50px;
            text-align: center;
            position: relative;
        }
        .hero h1 {
            font-size: 3.2rem;
            font-weight: 900;
            letter-spacing: -1px;
            line-height: 1.2;
            margin-bottom: 16px;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .hero h1 i {
            color: #f5d742;
            margin-right: 12px;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 28px;
            opacity: 0.92;
        }
        .hero .btn-cta {
            display: inline-block;
            background: #e0a800;
            color: #1c2a3a;
            padding: 14px 42px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: background 0.3s, transform 0.2s;
            box-shadow: 0 8px 30px rgba(224, 168, 0, 0.35);
        }
        .hero .btn-cta:hover {
            background: #f5c722;
            transform: translateY(-2px);
            text-decoration: none;
            color: #1c2a3a;
        }
        .hero .last-updated {
            margin-top: 24px;
            font-size: 0.9rem;
            opacity: 0.7;
        }
        .search-section {
            background: #fff;
            padding: 30px 0;
            border-bottom: 1px solid #e0dbd4;
        }
        .search-form {
            display: flex;
            max-width: 620px;
            margin: 0 auto;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid #ddd;
        }
        .search-form input {
            flex: 1;
            padding: 16px 24px;
            border: none;
            font-size: 1rem;
            outline: none;
            background: #fafafa;
        }
        .search-form button {
            background: #b33a2c;
            color: #fff;
            border: none;
            padding: 0 30px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.2s;
        }
        .search-form button:hover {
            background: #8a2b20;
        }
        main {
            padding: 40px 0 60px;
        }
        main .container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .content-area {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 140px;
            align-self: start;
        }
        .content-area h2 {
            font-size: 2rem;
            font-weight: 800;
            color: #1c2a3a;
            margin-top: 48px;
            margin-bottom: 18px;
            border-bottom: 3px solid #e0a800;
            padding-bottom: 8px;
        }
        .content-area h2:first-of-type {
            margin-top: 0;
        }
        .content-area h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #2a3f54;
            margin-top: 32px;
            margin-bottom: 12px;
        }
        .content-area h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #3d3d3d;
            margin-top: 24px;
            margin-bottom: 8px;
        }
        .content-area p {
            margin-bottom: 18px;
            color: #2e2e2e;
        }
        .content-area ul,
        .content-area ol {
            margin-bottom: 20px;
            padding-left: 28px;
        }
        .content-area li {
            margin-bottom: 6px;
        }
        .content-area .highlight {
            background: #fcf3d9;
            padding: 2px 10px;
            border-radius: 4px;
            font-weight: 600;
        }
        .content-area .inset-box {
            background: #f0ede8;
            border-left: 4px solid #e0a800;
            padding: 18px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .content-area .inset-box p:last-child {
            margin-bottom: 0;
        }
        .featured-image {
            margin: 32px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
            background: #e8e4de;
        }
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        .featured-image figcaption {
            padding: 12px 20px;
            font-size: 0.85rem;
            color: #666;
            background: #fff;
            border-top: 1px solid #eee;
        }
        .sidebar-widget {
            background: #fff;
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 28px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid #e8e4de;
        }
        .sidebar-widget h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #1c2a3a;
            margin-bottom: 16px;
            border-bottom: 2px solid #e0a800;
            padding-bottom: 8px;
        }
        .sidebar-widget ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-widget ul li {
            margin-bottom: 10px;
        }
        .sidebar-widget ul li a {
            display: block;
            padding: 6px 0;
            font-weight: 500;
            border-bottom: 1px solid #f0ede8;
        }
        .sidebar-widget ul li a:hover {
            padding-left: 6px;
        }
        .sidebar-widget .stars {
            color: #e0a800;
            font-size: 1.2rem;
            letter-spacing: 2px;
        }
        .rating-form,
        .comment-form {
            background: #faf8f5;
            padding: 20px 24px;
            border-radius: 14px;
            border: 1px solid #e8e4de;
            margin: 28px 0;
        }
        .rating-form h3,
        .comment-form h3 {
            margin-top: 0;
        }
        .rating-form select,
        .rating-form input,
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            margin-bottom: 14px;
            background: #fff;
            font-family: inherit;
        }
        .rating-form select {
            max-width: 200px;
        }
        .rating-form button,
        .comment-form button {
            background: #b33a2c;
            color: #fff;
            border: none;
            padding: 12px 32px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .rating-form button:hover,
        .comment-form button:hover {
            background: #8a2b20;
            transform: translateY(-1px);
        }
        .comments-list {
            margin-top: 20px;
        }
        .comment-item {
            background: #faf8f5;
            padding: 16px 20px;
            border-radius: 12px;
            margin-bottom: 14px;
            border-left: 3px solid #e0a800;
        }
        .comment-item .author {
            font-weight: 700;
            color: #1c2a3a;
        }
        .comment-item .date {
            font-size: 0.8rem;
            color: #999;
            margin-left: 12px;
        }
        .comment-item .text {
            margin-top: 6px;
        }
        footer {
            background: #1c2a3a;
            color: #ccc;
            padding: 40px 0 20px;
            border-top: 4px solid #e0a800;
        }
        footer .container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 30px;
        }
        footer h4 {
            color: #f5d742;
            margin-bottom: 14px;
            font-size: 1.1rem;
        }
        footer a {
            color: #bbb;
        }
        footer a:hover {
            color: #f5d742;
        }
        footer .copyright {
            grid-column: 1 / -1;
            border-top: 1px solid #334a5e;
            padding-top: 18px;
            margin-top: 18px;
            text-align: center;
            font-size: 0.9rem;
            color: #888;
        }
        friend-link {
            display: block;
            margin-top: 10px;
        }
        friend-link a {
            display: inline-block;
            margin-right: 16px;
            margin-bottom: 6px;
        }
        @media (max-width: 992px) {
            main .container {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                margin-top: 30px;
            }
            footer .container {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #1c2a3a;
                padding: 16px 0 10px;
                margin-top: 12px;
                border-top: 1px solid rgba(255, 255, 255, 0.08);
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 12px 20px;
                width: 100%;
                border-radius: 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            }
            footer .container {
                grid-template-columns: 1fr;
            }
            .search-form {
                flex-direction: column;
                border-radius: 16px;
            }
            .search-form button {
                padding: 14px;
            }
            .content-area h2 {
                font-size: 1.6rem;
            }
            .content-area h3 {
                font-size: 1.25rem;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.7rem;
            }
            .hero .btn-cta {
                padding: 12px 28px;
                font-size: 1rem;
            }
            .container {
                padding: 0 14px;
            }
        }
        .text-center {
            text-align: center;
        }
        .mt-20 {
            margin-top: 20px;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .tag {
            display: inline-block;
            background: #e8e4de;
            padding: 2px 12px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            color: #555;
        }
