* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #faf9f7;
            color: #1e1e2a;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #b45309;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #7c2d12;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #1e1e2a 0%, #2d2a3e 100%);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #fbbf24;
            background: rgba(251, 191, 36, 0.08);
            padding: 4px 16px 4px 12px;
            border-radius: 40px;
            border-left: 4px solid #fbbf24;
            transition: 0.2s;
            display: inline-block;
        }
        .my-logo:hover {
            background: rgba(251, 191, 36, 0.18);
            text-decoration: none;
            transform: scale(1.02);
        }
        .my-logo small {
            font-size: 0.75rem;
            font-weight: 400;
            color: #cbd5e1;
            letter-spacing: 0.3px;
            margin-left: 6px;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .main-nav {
            display: flex;
            gap: 20px;
            list-style: none;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #e2e8f0;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .main-nav a:hover {
            color: #fbbf24;
            border-bottom-color: #fbbf24;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fbbf24;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: 0.2s;
        }
        .hamburger:hover {
            background: rgba(251, 191, 36, 0.12);
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            background: #f1eee9;
            padding: 10px 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #e3ddd5;
        }
        .breadcrumb ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #8a7f72;
        }
        .breadcrumb a {
            color: #5b4e3e;
        }
        .breadcrumb a:hover {
            color: #b45309;
        }
        .breadcrumb .current {
            color: #1e1e2a;
            font-weight: 600;
        }
        .hero {
            padding: 40px 0 30px;
            background: #f1eee9;
            border-bottom: 1px solid #e3ddd5;
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.5px;
            color: #1e1e2a;
            margin-bottom: 12px;
        }
        .hero h1 .highlight {
            color: #b45309;
            background: linear-gradient(145deg, #b45309, #d97706);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 16px 30px;
            color: #5b4e3e;
            font-size: 0.9rem;
            margin: 8px 0 16px;
        }
        .hero-meta i {
            margin-right: 6px;
            color: #b45309;
        }
        .hero p {
            font-size: 1.1rem;
            max-width: 800px;
            color: #3d352c;
        }
        .last-updated {
            display: inline-block;
            background: #e3ddd5;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            color: #3d352c;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            margin: 40px 0 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid #fbbf24;
            color: #1e1e2a;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin: 32px 0 12px;
            color: #2d2a3e;
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 24px 0 8px;
            color: #3d352c;
        }
        p {
            margin-bottom: 18px;
            color: #2d2a3e;
        }
        .stat-highlight {
            background: #fdf6ed;
            border-left: 4px solid #b45309;
            padding: 12px 20px;
            border-radius: 0 8px 8px 0;
            margin: 20px 0;
        }
        .stat-highlight strong {
            color: #7c2d12;
        }
        .insight-box {
            background: #1e1e2a;
            color: #e2e8f0;
            padding: 24px 28px;
            border-radius: 16px;
            margin: 28px 0;
        }
        .insight-box h4 {
            color: #fbbf24;
            margin-top: 0;
        }
        .insight-box p {
            color: #e2e8f0;
        }
        .featured-img {
            margin: 32px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }
        .featured-img img {
            width: 100%;
            max-height: 420px;
            object-fit: cover;
        }
        .featured-img figcaption {
            background: #f1eee9;
            padding: 10px 20px;
            font-size: 0.85rem;
            color: #5b4e3e;
            text-align: center;
        }
        .search-section {
            background: #e3ddd5;
            padding: 28px 30px;
            border-radius: 16px;
            margin: 40px 0;
        }
        .search-section h3 {
            margin-top: 0;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 12px 18px;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            background: #fff;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }
        .search-form button {
            background: #b45309;
            color: #fff;
            border: none;
            padding: 12px 32px;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            font-size: 1rem;
        }
        .search-form button:hover {
            background: #7c2d12;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 40px 0;
        }
        .comment-box,
        .rating-box {
            background: #f1eee9;
            padding: 24px 28px;
            border-radius: 16px;
        }
        .comment-box h3,
        .rating-box h3 {
            margin-top: 0;
        }
        .comment-box textarea {
            width: 100%;
            padding: 12px 16px;
            border: none;
            border-radius: 12px;
            font-size: 1rem;
            min-height: 100px;
            background: #fff;
            resize: vertical;
        }
        .comment-box input[type="text"] {
            width: 100%;
            padding: 10px 16px;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            background: #fff;
            margin: 8px 0 12px;
        }
        .comment-box button,
        .rating-box button {
            background: #1e1e2a;
            color: #fbbf24;
            border: none;
            padding: 10px 28px;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            font-size: 0.95rem;
        }
        .comment-box button:hover,
        .rating-box button:hover {
            background: #2d2a3e;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #cbd5e1;
            cursor: pointer;
            margin: 8px 0 16px;
        }
        .star-rating i {
            transition: 0.15s;
        }
        .star-rating i.active,
        .star-rating i:hover {
            color: #fbbf24;
        }
        .rating-box .score-value {
            font-weight: 700;
            font-size: 1.2rem;
            color: #b45309;
        }
        .sidebar-card {
            background: #f1eee9;
            border-radius: 16px;
            padding: 20px 24px;
            margin-bottom: 24px;
        }
        .sidebar-card h4 {
            margin-top: 0;
            font-size: 1.1rem;
            border-bottom: 2px solid #fbbf24;
            padding-bottom: 6px;
        }
        .sidebar-links {
            list-style: none;
        }
        .sidebar-links li {
            padding: 6px 0;
        }
        .sidebar-links a {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #2d2a3e;
            font-weight: 500;
        }
        .sidebar-links a:hover {
            color: #b45309;
            text-decoration: none;
        }
        .sidebar-links i {
            color: #b45309;
            font-size: 0.8rem;
        }
        .friend-links-section {
            background: #1e1e2a;
            padding: 40px 0 30px;
            margin-top: 40px;
        }
        .friend-links-section h3 {
            color: #fbbf24;
            margin-top: 0;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            color: #cbd5e1;
            font-size: 0.95rem;
            line-height: 2;
        }
        friend-link a {
            color: #fbbf24;
            margin: 0 8px;
        }
        friend-link a:hover {
            color: #fff;
            text-decoration: underline;
        }
        .site-footer {
            background: #11111a;
            padding: 24px 0;
            text-align: center;
            color: #8a7f72;
            font-size: 0.85rem;
            border-top: 1px solid #2d2a3e;
        }
        .site-footer p {
            color: #8a7f72;
            margin-bottom: 4px;
        }
        .site-footer a {
            color: #fbbf24;
        }
        @media (max-width: 900px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2rem;
            }
        }
        @media (max-width: 720px) {
            .nav-wrapper .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1e1e2a;
                padding: 16px 0 12px;
                border-top: 1px solid #2d2a3e;
                margin-top: 8px;
            }
            .nav-wrapper .main-nav a {
                padding: 10px 20px;
                border-bottom: none;
            }
            .hamburger {
                display: inline-block;
            }
            #nav-toggle:checked~.main-nav {
                display: flex;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .hero h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .search-form input {
                min-width: 140px;
            }
            .feedback-grid {
                gap: 20px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .hero h1 {
                font-size: 1.4rem;
            }
            .hero-meta {
                font-size: 0.8rem;
                gap: 8px 16px;
            }
            .search-form button {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            .sidebar-card {
                padding: 16px;
            }
        }
        @media print {
            .site-header,
            .breadcrumb,
            .search-section,
            .feedback-grid,
            .sidebar,
            .friend-links-section,
            .site-footer {
                display: none;
            }
            .content-grid {
                display: block;
            }
        }
