        *,
        *::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, BlinkMacSystemFont, sans-serif;
            background: #faf9f7;
            color: #1e1e1e;
            line-height: 1.7;
            padding: 0 1rem;
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus {
            color: #8b6508;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        .site-header {
            background: linear-gradient(145deg, #0a2a3a 0%, #1b4a5a 100%);
            color: #fff;
            padding: 1.2rem 0;
            border-radius: 0 0 24px 24px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
            margin-bottom: 1.8rem;
        }
        .header-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 0.8rem 1.5rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #f9d976, #f39c12);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 8px rgba(243, 156, 18, 0.25);
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            -webkit-text-fill-color: #f39c12;
            font-size: 1.8rem;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid rgba(255, 255, 255, 0.6);
            color: #fff;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            border-color: #f9d976;
            color: #f9d976;
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 0.2rem 0.6rem;
            list-style: none;
            align-items: center;
        }
        .nav-menu li a {
            color: #f0f0f0;
            padding: 0.4rem 0.9rem;
            border-radius: 30px;
            font-size: 0.92rem;
            font-weight: 500;
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        .nav-menu li a:hover,
        .nav-menu li a:focus {
            background: rgba(249, 217, 118, 0.18);
            color: #f9d976;
            text-decoration: none;
        }
        .breadcrumb {
            padding: 0.8rem 0 0.4rem;
            font-size: 0.85rem;
            color: #5a6a7a;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb a {
            color: #b8860b;
        }
        .breadcrumb span {
            color: #8a9aa8;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem 2rem;
            margin: 1.8rem 0 2.5rem;
        }
        @media (max-width:900px) {
            .main-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }
        .content-area h1 {
            font-size: 2.6rem;
            line-height: 1.2;
            color: #0a2a3a;
            margin-bottom: 0.6rem;
            font-weight: 800;
            letter-spacing: -0.02em;
        }
        .content-area h1 i {
            color: #f39c12;
            margin-right: 0.3rem;
        }
        .content-area h2 {
            font-size: 1.9rem;
            margin-top: 2.4rem;
            margin-bottom: 0.8rem;
            color: #0a2a3a;
            border-left: 5px solid #f39c12;
            padding-left: 1rem;
            font-weight: 700;
        }
        .content-area h3 {
            font-size: 1.4rem;
            margin-top: 1.8rem;
            margin-bottom: 0.5rem;
            color: #1b4a5a;
            font-weight: 600;
        }
        .content-area h4 {
            font-size: 1.15rem;
            margin-top: 1.2rem;
            margin-bottom: 0.3rem;
            color: #2c5f6e;
            font-weight: 600;
        }
        .content-area p {
            margin-bottom: 1.1rem;
            color: #2d2d2d;
        }
        .content-area .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 2rem;
            font-size: 0.9rem;
            color: #6a7a8a;
            margin-bottom: 1.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px solid #e2ddd6;
        }
        .content-area .meta-info i {
            margin-right: 0.4rem;
            color: #b8860b;
        }
        .highlight-box {
            background: #fef8ee;
            border-left: 6px solid #f39c12;
            padding: 1.4rem 1.8rem;
            border-radius: 12px;
            margin: 1.6rem 0;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .highlight-box strong {
            color: #0a2a3a;
        }
        .story-card {
            background: #fff;
            border: 1px solid #e8e3dc;
            border-radius: 16px;
            padding: 1.6rem 1.8rem;
            margin: 1.4rem 0;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .story-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
        }
        .story-card h4 {
            margin-top: 0;
            color: #b8860b;
        }
        .story-card .badge {
            display: inline-block;
            background: #0a2a3a;
            color: #f9d976;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.2rem 0.8rem;
            border-radius: 30px;
            letter-spacing: 0.03em;
            margin-bottom: 0.5rem;
        }
        .featured-image-wrap {
            margin: 1.8rem 0 1.2rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        }
        .featured-image-wrap figcaption {
            background: #f5f0ea;
            padding: 0.6rem 1.2rem;
            font-size: 0.85rem;
            color: #4a5a6a;
            font-style: italic;
        }
        .sidebar {
            background: #ffffff;
            border-radius: 20px;
            padding: 1.8rem 1.6rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid #e8e3dc;
            align-self: start;
            position: sticky;
            top: 1.5rem;
        }
        .sidebar h3 {
            font-size: 1.2rem;
            color: #0a2a3a;
            margin-bottom: 1rem;
            border-bottom: 2px solid #f0ebe4;
            padding-bottom: 0.6rem;
        }
        .sidebar ul {
            list-style: none;
        }
        .sidebar ul li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #f0ebe4;
        }
        .sidebar ul li a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.92rem;
        }
        .sidebar ul li a i {
            color: #f39c12;
            font-size: 0.8rem;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            margin: 1.2rem 0 1.8rem;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 160px;
            padding: 0.7rem 1.2rem;
            border: 2px solid #ddd6ce;
            border-radius: 40px;
            font-size: 0.95rem;
            background: #fff;
            transition: 0.2s;
        }
        .search-form input[type="text"]:focus {
            border-color: #f39c12;
            outline: none;
            box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.15);
        }
        .search-form button {
            padding: 0.7rem 1.6rem;
            background: #b8860b;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            font-size: 0.95rem;
        }
        .search-form button:hover {
            background: #9a7209;
            transform: scale(1.02);
        }
        .feedback-section {
            background: #f8f4ef;
            border-radius: 20px;
            padding: 1.8rem 2rem;
            margin: 2.5rem 0 1.5rem;
            border: 1px solid #e2ddd6;
        }
        .feedback-section h3 {
            margin-top: 0;
            color: #0a2a3a;
        }
        .comment-form textarea,
        .comment-form input[type="text"] {
            width: 100%;
            padding: 0.8rem 1.2rem;
            border: 2px solid #ddd6ce;
            border-radius: 12px;
            font-size: 0.95rem;
            background: #fff;
            transition: 0.2s;
            margin-bottom: 0.8rem;
            font-family: inherit;
        }
        .comment-form textarea:focus,
        .comment-form input[type="text"]:focus {
            border-color: #f39c12;
            outline: none;
            box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.12);
        }
        .comment-form textarea {
            min-height: 90px;
            resize: vertical;
        }
        .comment-form .btn-row {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            align-items: center;
        }
        .comment-form button {
            padding: 0.6rem 1.8rem;
            background: #0a2a3a;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            font-size: 0.92rem;
        }
        .comment-form button:hover {
            background: #1b4a5a;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            gap: 0.2rem;
            font-size: 1.8rem;
            justify-content: flex-end;
            margin: 0.4rem 0 0.8rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #ccc;
            transition: color 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f39c12;
        }
        .rating-display {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 1rem;
            color: #4a5a6a;
        }
        .rating-display .stars-outer {
            position: relative;
            display: inline-block;
            font-size: 1.4rem;
            letter-spacing: 2px;
            color: #ddd;
        }
        .rating-display .stars-inner {
            position: absolute;
            left: 0;
            top: 0;
            overflow: hidden;
            color: #f39c12;
            white-space: nowrap;
        }
        .site-footer {
            background: #0a2a3a;
            color: #d8e2e8;
            padding: 2.2rem 0 1.6rem;
            border-radius: 24px 24px 0 0;
            margin-top: 3rem;
        }
        .site-footer a {
            color: #f9d976;
        }
        .site-footer a:hover {
            color: #fff;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem 2.5rem;
        }
        @media (max-width:620px) {
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
        }
        .footer-inner h4 {
            color: #f9d976;
            font-size: 1.1rem;
            margin-bottom: 0.6rem;
        }
        .footer-inner ul {
            list-style: none;
        }
        .footer-inner ul li {
            padding: 0.2rem 0;
        }
        .footer-inner ul li a {
            font-size: 0.92rem;
        }
        friend-link {
            display: block;
            padding: 0.8rem 0 0.2rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 0.8rem 0.2rem 0;
            font-size: 0.9rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            margin-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 0.85rem;
            color: #9aaab5;
        }
        @media (max-width:768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                background: rgba(10, 42, 58, 0.95);
                border-radius: 16px;
                padding: 1rem 0.8rem;
                margin-top: 0.6rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                padding: 0.6rem 1rem;
                display: block;
                white-space: normal;
            }
            .content-area h1 {
                font-size: 1.9rem;
            }
            .content-area h2 {
                font-size: 1.5rem;
            }
            .sidebar {
                position: static;
            }
            .feedback-section {
                padding: 1.2rem 1.2rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        @media (max-width:480px) {
            body {
                padding: 0 0.5rem;
            }
            .container {
                padding: 0 0.5rem;
            }
            .header-inner {
                gap: 0.4rem;
            }
            .search-form button {
                padding: 0.6rem 1.2rem;
                font-size: 0.85rem;
            }
        }
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #b8860b;
            color: #fff;
            width: 46px;
            height: 46px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
            transition: 0.25s;
            border: none;
            cursor: pointer;
            z-index: 99;
            opacity: 0;
            visibility: hidden;
        }
        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }
        .scroll-top:hover {
            background: #9a7209;
            transform: scale(1.06);
        }
