        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #f8f6f2;
            color: #1e2a3a;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #8b6508;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        hr {
            border: none;
            border-top: 2px solid #e2dcd0;
            margin: 2.5rem 0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(135deg, #0b1a2e 0%, #1a2f44 100%);
            padding: 1rem 0;
            border-bottom: 4px solid #d4a017;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            color: #f5d742;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
            color: #ffe66d;
            text-decoration: none;
        }
        .my-logo i {
            margin-right: 0.4rem;
            color: #d4a017;
        }
        .my-logo span {
            font-weight: 300;
            color: #c0cbd6;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #e8edf3;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-size: 0.95rem;
            font-weight: 500;
            transition: background 0.3s ease, color 0.3s ease;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            background: rgba(212, 160, 23, 0.25);
            color: #f5d742;
            text-decoration: none;
        }
        .main-nav a.active {
            background: #d4a017;
            color: #0b1a2e;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid #d4a017;
            color: #f5d742;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .hamburger:hover {
            background: rgba(212, 160, 23, 0.2);
        }
        .nav-toggle {
            display: none;
        }
        .breadcrumb {
            background: #ece8e0;
            padding: 0.7rem 0;
            font-size: 0.9rem;
            color: #4a5568;
            border-bottom: 1px solid #dcd6cc;
        }
        .breadcrumb a {
            color: #7a6b4a;
        }
        .breadcrumb a:hover {
            color: #b8860b;
        }
        .breadcrumb span {
            margin: 0 0.4rem;
            color: #a09888;
        }
        .hero {
            background: linear-gradient(145deg, #0f2538, #1a3a4e);
            color: #ffffff;
            padding: 3.5rem 0 4rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "✦";
            font-size: 18rem;
            color: rgba(212, 160, 23, 0.06);
            position: absolute;
            right: -4rem;
            bottom: -5rem;
            pointer-events: none;
            transform: rotate(15deg);
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #f5d742;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
            margin-bottom: 1rem;
            letter-spacing: -0.5px;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 780px;
            margin: 0 auto 1.8rem;
            color: #dce4ed;
            font-weight: 400;
        }
        .hero .meta-info {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            font-size: 0.95rem;
            color: #bccbd6;
        }
        .hero .meta-info i {
            color: #d4a017;
            margin-right: 0.4rem;
        }
        .search-section {
            background: #ffffff;
            padding: 2rem 0;
            border-bottom: 1px solid #e2dcd0;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            border: 1px solid #dcd6cc;
        }
        .search-form input[type="text"] {
            flex: 1;
            padding: 0.9rem 1.5rem;
            border: none;
            font-size: 1rem;
            outline: none;
            background: #faf9f6;
        }
        .search-form button {
            background: #d4a017;
            color: #0b1a2e;
            border: none;
            padding: 0 1.8rem;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #b8860b;
            color: #ffffff;
        }
        .main-content {
            padding: 3rem 0 4rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        .content-body h2 {
            font-size: 2rem;
            color: #0b1a2e;
            border-bottom: 3px solid #d4a017;
            padding-bottom: 0.5rem;
            margin-top: 3rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        .content-body h2:first-of-type {
            margin-top: 0;
        }
        .content-body h3 {
            font-size: 1.5rem;
            color: #1a2f44;
            margin-top: 2rem;
            margin-bottom: 0.8rem;
            font-weight: 600;
        }
        .content-body h4 {
            font-size: 1.2rem;
            color: #2c3e50;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .content-body p {
            margin-bottom: 1.2rem;
            color: #2d3e50;
        }
        .content-body ul,
        .content-body ol {
            margin-bottom: 1.5rem;
        }
        .content-body li {
            margin-bottom: 0.5rem;
        }
        .content-body strong {
            color: #0b1a2e;
        }
        .content-body .highlight-box {
            background: #f0ede6;
            border-left: 5px solid #d4a017;
            padding: 1.5rem 2rem;
            border-radius: 0 12px 12px 0;
            margin: 1.8rem 0;
        }
        .content-body .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .featured-image {
            margin: 2.5rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }
        .featured-image img {
            width: 100%;
            display: block;
        }
        .featured-image figcaption {
            background: #f0ede6;
            padding: 0.8rem 1.5rem;
            font-size: 0.9rem;
            color: #4a5568;
            font-style: italic;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 1.8rem;
            margin-bottom: 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid #e8e2d6;
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            color: #0b1a2e;
            margin-bottom: 1rem;
            border-bottom: 2px solid #d4a017;
            padding-bottom: 0.5rem;
        }
        .sidebar-link-list {
            list-style: none;
            padding: 0;
        }
        .sidebar-link-list li {
            margin-bottom: 0.7rem;
            padding-left: 0;
        }
        .sidebar-link-list a {
            display: block;
            padding: 0.5rem 0.8rem;
            border-radius: 8px;
            background: #f9f7f2;
            transition: background 0.3s ease, transform 0.2s ease;
            font-weight: 500;
        }
        .sidebar-link-list a:hover {
            background: #d4a017;
            color: #0b1a2e;
            transform: translateX(4px);
            text-decoration: none;
        }
        .sidebar-link-list a i {
            margin-right: 0.6rem;
            color: #b8860b;
            width: 1.2rem;
        }
        .rating-area,
        .comment-area {
            background: #ffffff;
            border-radius: 16px;
            padding: 2rem;
            margin: 2.5rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid #e8e2d6;
        }
        .rating-area h3,
        .comment-area h3 {
            font-size: 1.4rem;
            color: #0b1a2e;
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 2rem;
            color: #ddd6c8;
            cursor: pointer;
            margin-bottom: 1rem;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            transition: color 0.2s ease;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #d4a017;
        }
        .rating-form button,
        .comment-form button {
            background: #d4a017;
            color: #0b1a2e;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s ease;
        }
        .rating-form button:hover,
        .comment-form button:hover {
            background: #b8860b;
            color: #ffffff;
            transform: translateY(-2px);
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 0.8rem 1.2rem;
            border: 1px solid #dcd6cc;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            margin-bottom: 1rem;
            outline: none;
            transition: border-color 0.3s ease;
        }
        .comment-form textarea:focus,
        .comment-form input:focus {
            border-color: #d4a017;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .site-footer {
            background: #0b1a2e;
            color: #c0cbd6;
            padding: 3rem 0 2rem;
            border-top: 4px solid #d4a017;
            margin-top: 3rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2.5rem;
            margin-bottom: 2rem;
        }
        .footer-col h4 {
            color: #f5d742;
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }
        .footer-col p,
        .footer-col li {
            font-size: 0.95rem;
            color: #b0bccb;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
        }
        .footer-col ul li {
            margin-bottom: 0.5rem;
        }
        .footer-col ul li a {
            color: #c0cbd6;
        }
        .footer-col ul li a:hover {
            color: #f5d742;
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 12px;
            padding: 1.2rem 1.5rem;
            margin-top: 1.5rem;
            border: 1px solid rgba(212, 160, 23, 0.2);
        }
        friend-link::before {
            content: "🔗 Friendly Links";
            display: block;
            font-weight: 700;
            color: #f5d742;
            margin-bottom: 0.8rem;
            font-size: 1rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 1rem 0.3rem 0;
            color: #b0bccb;
            font-size: 0.95rem;
        }
        friend-link a:hover {
            color: #f5d742;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 0.9rem;
            color: #7a8a9e;
        }
        .copyright strong {
            color: #c0cbd6;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1.5rem;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 1rem 0 0.5rem;
                gap: 0.2rem;
            }
            .nav-toggle:checked~.main-nav {
                display: flex;
            }
            .main-nav a {
                padding: 0.7rem 1.2rem;
                border-radius: 8px;
                width: 100%;
                text-align: center;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .hero .meta-info {
                flex-direction: column;
                gap: 0.5rem;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .search-form {
                flex-direction: column;
                border-radius: 16px;
            }
            .search-form button {
                padding: 0.8rem;
                justify-content: center;
            }
            .star-rating {
                font-size: 1.8rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.9rem;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .content-body h2 {
                font-size: 1.5rem;
            }
            .content-body h3 {
                font-size: 1.25rem;
            }
            .rating-area,
            .comment-area {
                padding: 1.2rem;
            }
        }
        .skip-link {
            position: absolute;
            top: -100%;
            left: 1rem;
            background: #d4a017;
            color: #0b1a2e;
            padding: 0.5rem 1rem;
            border-radius: 0 0 8px 8px;
            font-weight: 600;
            z-index: 200;
        }
        .skip-link:focus {
            top: 0;
        }
        :focus-visible {
            outline: 3px solid #d4a017;
            outline-offset: 2px;
        }
        ::selection {
            background: #d4a017;
            color: #0b1a2e;
        }
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #d4a017;
            color: #0b1a2e;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, background 0.3s ease;
            z-index: 50;
            border: none;
            cursor: pointer;
        }
        .back-to-top:hover {
            transform: translateY(-4px);
            background: #b8860b;
            color: #ffffff;
        }
        @media (max-width: 480px) {
            .back-to-top {
                bottom: 1rem;
                right: 1rem;
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
        }
