        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
            background: #f8fafc;
            color: #1e293b;
            line-height: 1.8;
            padding: 0 1rem;
        }
        a {
            color: #1e40af;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #f97316;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        :root {
            --primary: #1e3a5f;
            --primary-light: #2d5a8e;
            --accent: #f97316;
            --accent-light: #fb923c;
            --green: #15803d;
            --bg-soft: #f1f5f9;
            --bg-card: #ffffff;
            --border: #e2e8f0;
            --text: #1e293b;
            --text-muted: #64748b;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            --radius: 16px;
        }
        .site-header {
            background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8e 100%);
            color: #fff;
            padding: 1rem 0;
            border-radius: 0 0 var(--radius) var(--radius);
            box-shadow: 0 8px 30px rgba(30, 58, 95, 0.3);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem 1.5rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .my-logo i {
            color: var(--accent);
        }
        .my-logo:hover {
            color: var(--accent-light);
            text-decoration: none;
        }
        .my-logo span {
            font-weight: 300;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            display: block;
            font-size: 0.7rem;
            letter-spacing: 1px;
        }
        .nav-bar {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            flex-wrap: wrap;
        }
        .nav-bar a {
            color: rgba(255, 255, 255, 0.85);
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.25s;
            white-space: nowrap;
        }
        .nav-bar a:hover {
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
            text-decoration: none;
        }
        .nav-bar a.active {
            background: var(--accent);
            color: #fff;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 0.3rem 0.6rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            padding: 1.2rem 0 0.5rem;
            font-size: 0.85rem;
            color: var(--text-muted);
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
            align-items: center;
        }
        .breadcrumb a {
            color: var(--primary-light);
        }
        .breadcrumb a:hover {
            color: var(--accent);
        }
        .breadcrumb i {
            font-size: 0.6rem;
            color: var(--text-muted);
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 1.5rem 0 3rem;
        }
        .content-area {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 2.2rem 2.5rem;
            box-shadow: var(--shadow);
        }
        .sidebar-area {
            display: flex;
            flex-direction: column;
            gap: 1.8rem;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            color: var(--primary);
            margin-bottom: 0.8rem;
            letter-spacing: -0.5px;
        }
        h1 i {
            color: var(--accent);
        }
        h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin: 2.2rem 0 1rem;
            color: var(--primary);
            border-left: 5px solid var(--accent);
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.35rem;
            font-weight: 600;
            margin: 1.8rem 0 0.8rem;
            color: var(--primary-light);
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 1.4rem 0 0.5rem;
            color: #334155;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
            color: #334155;
        }
        .lead {
            font-size: 1.2rem;
            line-height: 1.9;
            color: var(--primary);
            font-weight: 500;
            background: var(--bg-soft);
            padding: 1.2rem 1.8rem;
            border-radius: 12px;
            border-left: 4px solid var(--accent);
        }
        .highlight {
            background: linear-gradient(to right, #fef3c7, #fde68a);
            padding: 0.1rem 0.4rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .emoji-big {
            font-size: 1.4rem;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            background: #e2e8f0;
            position: relative;
        }
        .featured-image img {
            width: 100%;
            object-fit: cover;
            min-height: 250px;
            background: #cbd5e1;
        }
        .featured-image .img-caption {
            padding: 0.8rem 1.2rem;
            font-size: 0.85rem;
            color: var(--text-muted);
            background: #f1f5f9;
            font-style: italic;
        }
        .widget {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 1.5rem 1.8rem;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }
        .widget h3 {
            font-size: 1.2rem;
            margin-top: 0;
            margin-bottom: 1rem;
            border-bottom: 2px solid var(--accent);
            padding-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .widget ul {
            list-style: none;
            padding: 0;
        }
        .widget ul li {
            padding: 0.5rem 0;
            border-bottom: 1px solid var(--border);
            font-size: 0.95rem;
        }
        .widget ul li:last-child {
            border-bottom: none;
        }
        .widget ul li a {
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .widget ul li a i {
            color: var(--accent);
            font-size: 0.8rem;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            margin: 1.5rem 0;
        }
        .search-form input {
            flex: 1;
            padding: 0.8rem 1.2rem;
            border: 2px solid var(--border);
            border-radius: 30px;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
            background: var(--bg-soft);
        }
        .search-form input:focus {
            border-color: var(--accent);
            background: #fff;
        }
        .search-form button {
            background: var(--accent);
            color: #fff;
            border: none;
            padding: 0.8rem 1.6rem;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #ea580c;
        }
        .comment-box,
        .rating-box {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 1.8rem 2.2rem;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            margin: 2rem 0 1rem;
        }
        .comment-box h3,
        .rating-box h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--border);
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            min-height: 120px;
            transition: border 0.3s;
            background: var(--bg-soft);
        }
        .comment-form textarea:focus {
            border-color: var(--accent);
            background: #fff;
            outline: none;
        }
        .comment-form .form-row {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 0.8rem;
        }
        .comment-form .form-row input {
            flex: 1;
            padding: 0.7rem 1rem;
            border: 2px solid var(--border);
            border-radius: 30px;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.3s;
            background: var(--bg-soft);
            min-width: 180px;
        }
        .comment-form .form-row input:focus {
            border-color: var(--accent);
            background: #fff;
        }
        .comment-form .btn-submit {
            background: var(--primary);
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .comment-form .btn-submit:hover {
            background: var(--primary-light);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            gap: 0.3rem;
            justify-content: flex-end;
            margin: 0.8rem 0 1.2rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #cbd5e1;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating label i {
            font-size: 2rem;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f59e0b;
        }
        .rating-form .btn-submit {
            background: var(--green);
            color: #fff;
            border: none;
            padding: 0.6rem 2rem;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        .rating-form .btn-submit:hover {
            background: #166534;
        }
        .site-footer {
            background: var(--primary);
            color: rgba(255, 255, 255, 0.9);
            padding: 2.5rem 0 1.5rem;
            border-radius: var(--radius) var(--radius) 0 0;
            margin-top: 2rem;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .footer-inner h4 {
            color: #fff;
            font-size: 1.1rem;
            margin-bottom: 1rem;
            border-bottom: 2px solid var(--accent);
            padding-bottom: 0.4rem;
            display: inline-block;
        }
        .footer-inner a {
            color: rgba(255, 255, 255, 0.75);
            display: block;
            padding: 0.25rem 0;
            font-size: 0.9rem;
        }
        .footer-inner a:hover {
            color: var(--accent-light);
            text-decoration: none;
        }
        friend-link {
            display: block;
            margin: 1rem 0 0.5rem;
        }
        friend-link a {
            display: inline-block;
            margin-right: 1.2rem;
            padding: 0.2rem 0;
        }
        .copyright {
            text-align: center;
            padding-top: 1.8rem;
            margin-top: 1.8rem;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
        }
        .last-updated {
            display: inline-block;
            background: rgba(255, 255, 255, 0.08);
            padding: 0.3rem 1rem;
            border-radius: 30px;
            font-size: 0.8rem;
            margin-top: 0.5rem;
        }
        @media (max-width: 992px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .sidebar-area {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1.5rem;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
            h1 {
                font-size: 2.1rem;
            }
            .content-area {
                padding: 1.5rem;
            }
        }
        @media (max-width: 768px) {
            body {
                padding: 0 0.6rem;
            }
            .header-inner {
                flex-wrap: nowrap;
            }
            .nav-bar {
                display: none;
                width: 100%;
                flex-direction: column;
                background: rgba(255, 255, 255, 0.08);
                border-radius: 12px;
                padding: 0.8rem;
                margin-top: 0.5rem;
                gap: 0.2rem;
            }
            .nav-bar a {
                padding: 0.6rem 1rem;
                width: 100%;
                border-radius: 8px;
            }
            .hamburger {
                display: block;
            }
            #nav-toggle:checked~.nav-bar {
                display: flex;
            }
            .sidebar-area {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .content-area {
                padding: 1.2rem;
            }
            .comment-box,
            .rating-box {
                padding: 1.2rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                justify-content: center;
            }
            .comment-form .form-row {
                flex-direction: column;
            }
            .comment-form .form-row input {
                min-width: auto;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.5rem;
            }
            .content-area {
                padding: 0.8rem;
            }
            .widget {
                padding: 1rem;
            }
            .star-rating label {
                font-size: 1.6rem;
            }
            .star-rating label i {
                font-size: 1.6rem;
            }
        }
        .text-accent {
            color: var(--accent);
        }
        .text-green {
            color: var(--green);
        }
        .mt-2 {
            margin-top: 1rem;
        }
        .mb-2 {
            margin-bottom: 1rem;
        }
        .flex {
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .gap-1 {
            gap: 0.5rem;
        }
        .fw-700 {
            font-weight: 700;
        }
        .fs-small {
            font-size: 0.9rem;
        }
        .rounded-pill {
            border-radius: 30px;
        }
        .bg-soft {
            background: var(--bg-soft);
        }
        .p-2 {
            padding: 1rem;
        }
        .list-icon {
            list-style: none;
            padding-left: 0;
        }
        .list-icon li {
            padding: 0.4rem 0;
            display: flex;
            align-items: flex-start;
            gap: 0.7rem;
        }
        .list-icon li i {
            color: var(--accent);
            margin-top: 0.25rem;
            font-size: 0.9rem;
        }
        .img-placeholder {
            background: linear-gradient(135deg, #1e3a5f, #2d5a8e);
            min-height: 320px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.2rem;
            flex-direction: column;
            gap: 0.8rem;
        }
        .img-placeholder i {
            font-size: 3rem;
            color: var(--accent);
        }
