* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #f8f6f2;
            color: #1e1e2a;
            line-height: 1.7;
            font-size: 16px;
            scroll-behavior: smooth;
        }
        a {
            color: #c44536;
            text-decoration: none;
            transition: all 0.2s ease;
        }
        a:hover {
            color: #982b1f;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
            color: #fff;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #f7d44a;
            text-shadow: 0 2px 8px rgba(247, 212, 74, 0.25);
            transition: transform 0.3s ease;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #ffe270;
        }
        .my-logo small {
            font-size: 0.9rem;
            font-weight: 400;
            color: #b8c6db;
            letter-spacing: 0.3px;
            display: block;
            margin-top: 2px;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        nav#main-nav ul {
            display: flex;
            list-style: none;
            gap: 8px;
            align-items: center;
            flex-wrap: wrap;
        }
        nav#main-nav ul li a {
            color: #e8ecf1;
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.92rem;
            transition: all 0.25s ease;
            display: inline-block;
        }
        nav#main-nav ul li a:hover {
            background: rgba(247, 212, 74, 0.15);
            color: #f7d44a;
            text-decoration: none;
        }
        .nav-cta a {
            background: #f7d44a;
            color: #1a1a2e !important;
            font-weight: 700;
            padding: 8px 20px !important;
        }
        .nav-cta a:hover {
            background: #ffe270 !important;
            color: #1a1a2e !important;
        }
        .breadcrumb {
            background: #f0ede6;
            padding: 12px 0;
            font-size: 0.88rem;
            border-bottom: 1px solid #e2dcd0;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            align-items: center;
        }
        .breadcrumb ol li+li::before {
            content: "›";
            color: #9a8c7a;
            margin-right: 12px;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #6b5d4e;
        }
        .breadcrumb .current {
            color: #1e1e2a;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #2d1b3a 0%, #1a2a3a 100%);
            color: #fff;
            padding: 48px 0 40px;
            margin-bottom: 32px;
            border-radius: 0 0 40px 40px;
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }
        .hero h1 span {
            color: #f7d44a;
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 720px;
            color: #cfd9e6;
            margin-bottom: 20px;
        }
        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px 40px;
            font-size: 0.95rem;
            color: #b0c0d4;
        }
        .hero-meta i {
            color: #f7d44a;
            margin-right: 6px;
        }
        main {
            padding-bottom: 60px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-body h2 {
            font-size: 1.9rem;
            margin: 48px 0 16px;
            color: #1a1a2e;
            border-left: 5px solid #f7d44a;
            padding-left: 18px;
            font-weight: 700;
        }
        .article-body h3 {
            font-size: 1.4rem;
            margin: 32px 0 12px;
            color: #2d2d44;
            font-weight: 600;
        }
        .article-body h4 {
            font-size: 1.15rem;
            margin: 24px 0 8px;
            color: #3d3d55;
            font-weight: 600;
        }
        .article-body p {
            margin-bottom: 18px;
            color: #2a2a38;
        }
        .article-body ul,
        .article-body ol {
            margin: 12px 0 22px 24px;
            color: #2a2a38;
        }
        .article-body li {
            margin-bottom: 8px;
        }
        .article-body strong {
            color: #1a1a2e;
            font-weight: 700;
        }
        .highlight-box {
            background: #fcf9f2;
            border-left: 4px solid #f7d44a;
            padding: 20px 24px;
            margin: 24px 0;
            border-radius: 0 12px 12px 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .featured-image-wrap {
            margin: 32px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }
        .featured-image-wrap img {
            width: 100%;
            object-fit: cover;
        }
        .featured-image-wrap figcaption {
            padding: 12px 18px;
            background: #f0ede6;
            font-size: 0.88rem;
            color: #5a4e3e;
            font-style: italic;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 24px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid #eae6de;
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            margin-bottom: 14px;
            color: #1a1a2e;
            border-bottom: 2px solid #f7d44a;
            padding-bottom: 8px;
            display: inline-block;
        }
        .sidebar-links a {
            display: block;
            padding: 8px 0;
            border-bottom: 1px solid #f0ede6;
            font-size: 0.92rem;
            color: #3d3d55;
            transition: all 0.2s;
        }
        .sidebar-links a:hover {
            color: #c44536;
            padding-left: 6px;
            text-decoration: none;
        }
        .sidebar-links a i {
            color: #f7d44a;
            width: 20px;
            margin-right: 6px;
        }
        .search-box {
            display: flex;
            gap: 8px;
            margin-top: 8px;
        }
        .search-box input {
            flex: 1;
            padding: 10px 16px;
            border: 2px solid #e2dcd0;
            border-radius: 30px;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.3s;
            background: #fcfaf7;
        }
        .search-box input:focus {
            border-color: #f7d44a;
        }
        .search-box button {
            background: #1a1a2e;
            color: #fff;
            border: none;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #2d2d44;
        }
        .comment-area,
        .score-area {
            background: #fff;
            border-radius: 16px;
            padding: 28px 30px;
            margin-top: 40px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid #eae6de;
        }
        .comment-area h3,
        .score-area h3 {
            font-size: 1.5rem;
            margin-bottom: 16px;
            color: #1a1a2e;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .comment-area textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #e2dcd0;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            min-height: 100px;
            outline: none;
            transition: border 0.3s;
            background: #fcfaf7;
        }
        .comment-area textarea:focus {
            border-color: #f7d44a;
        }
        .comment-area .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 12px;
            align-items: center;
        }
        .comment-area .form-row input {
            flex: 1;
            min-width: 180px;
            padding: 10px 16px;
            border: 2px solid #e2dcd0;
            border-radius: 30px;
            font-size: 0.95rem;
            outline: none;
            background: #fcfaf7;
        }
        .comment-area .form-row input:focus {
            border-color: #f7d44a;
        }
        .btn-primary {
            background: #c44536;
            color: #fff;
            border: none;
            padding: 10px 28px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.15s;
        }
        .btn-primary:hover {
            background: #982b1f;
            transform: translateY(-1px);
        }
        .score-area .star-rating {
            display: flex;
            gap: 6px;
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            margin: 8px 0 16px;
        }
        .score-area .star-rating i {
            transition: color 0.2s, transform 0.15s;
        }
        .score-area .star-rating i:hover,
        .score-area .star-rating i.active {
            color: #f7c948;
            transform: scale(1.1);
        }
        .score-area .star-rating i.fa-solid {
            color: #f7c948;
        }
        footer {
            background: #1a1a2e;
            color: #c8d0dc;
            padding: 48px 0 30px;
            border-top: 4px solid #f7d44a;
        }
        footer .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 32px;
        }
        @media (max-width: 768px) {
            footer .footer-inner {
                grid-template-columns: 1fr;
                gap: 28px;
            }
        }
        footer h4 {
            color: #f7d44a;
            font-size: 1.1rem;
            margin-bottom: 14px;
            font-weight: 600;
        }
        footer a {
            color: #b0c0d4;
        }
        footer a:hover {
            color: #f7d44a;
        }
        .friend-link {
            display: block;
            padding: 6px 0;
            font-size: 0.92rem;
        }
        .friend-link i {
            margin-right: 8px;
            color: #f7d44a;
            width: 16px;
        }
        .copyright {
            border-top: 1px solid #2d2d44;
            padding-top: 24px;
            text-align: center;
            font-size: 0.88rem;
            color: #8a9ab0;
        }
        .copyright strong {
            color: #e8ecf1;
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            nav#main-nav {
                display: none;
                width: 100%;
                margin-top: 14px;
                border-top: 1px solid rgba(255, 255, 255, 0.08);
                padding-top: 14px;
            }
            nav#main-nav.open {
                display: block;
            }
            nav#main-nav ul {
                flex-direction: column;
                align-items: stretch;
                gap: 4px;
            }
            nav#main-nav ul li a {
                display: block;
                padding: 10px 16px;
                border-radius: 10px;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .article-body h2 {
                font-size: 1.5rem;
            }
            .article-body h3 {
                font-size: 1.2rem;
            }
            .comment-area,
            .score-area {
                padding: 20px 16px;
            }
            .breadcrumb ol {
                font-size: 0.8rem;
                gap: 4px 8px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .hero {
                padding: 28px 0 24px;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .search-box {
                flex-direction: column;
            }
            .search-box button {
                width: 100%;
            }
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .text-small {
            font-size: 0.88rem;
            color: #6b5d4e;
        }
        .gap-dot {
            display: inline-block;
            margin: 0 6px;
            color: #c8c0b0;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            background: #fcfaf7;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        table th {
            background: #1a1a2e;
            color: #f7d44a;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
        }
        table td {
            padding: 10px 16px;
            border-bottom: 1px solid #ece8e0;
        }
        table tr:last-child td {
            border-bottom: none;
        }
        table tr:hover td {
            background: #f8f4ec;
        }
        .tag {
            display: inline-block;
            background: #f0ede6;
            padding: 2px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #4a3e2e;
            margin-right: 4px;
        }
