* {
            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: color 0.2s;
        }
        a:hover {
            color: #a33426;
            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, #1e1e2a 0%, #2a2a3e 100%);
            color: #fff;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            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 20px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f9d976, #f39c12);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 12px rgba(243, 156, 18, 0.2);
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: #f9d976;
            margin-right: 6px;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #f9d976;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px 12px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        nav {
            display: flex;
            gap: 8px 20px;
            flex-wrap: wrap;
            align-items: center;
        }
        nav a {
            color: #e8e4dd;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 2px;
            border-bottom: 2px solid transparent;
            transition: all 0.2s;
        }
        nav a:hover {
            color: #f9d976;
            border-bottom-color: #f9d976;
            text-decoration: none;
        }
        nav a i {
            margin-right: 6px;
            font-size: 0.85rem;
        }
        .breadcrumb {
            background: #efebe7;
            padding: 12px 0;
            font-size: 0.85rem;
            color: #555;
        }
        .breadcrumb .container {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb a {
            color: #c44536;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #777;
        }
        .hero {
            background: linear-gradient(135deg, #1e1e2a 0%, #2d2d44 100%);
            color: #fff;
            padding: 60px 0 50px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "🎯";
            position: absolute;
            right: -40px;
            bottom: -40px;
            font-size: 180px;
            opacity: 0.06;
            transform: rotate(-15deg);
        }
        .hero h1 {
            font-size: 3.2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f9d976, #f5a623);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 16px;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 720px;
            margin: 0 auto 12px;
            opacity: 0.88;
        }
        .hero .last-updated {
            font-size: 0.85rem;
            opacity: 0.55;
            margin-top: 20px;
            display: block;
        }
        .search-section {
            background: #fff;
            padding: 28px 0 20px;
            border-bottom: 1px solid #e8e0d8;
        }
        .search-form {
            display: flex;
            gap: 12px;
            max-width: 560px;
            margin: 0 auto;
            flex-wrap: wrap;
            justify-content: center;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: 2px solid #ddd;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
            background: #fafafa;
        }
        .search-form input:focus {
            border-color: #c44536;
        }
        .search-form button {
            padding: 14px 32px;
            background: #c44536;
            color: #fff;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #a33426;
            transform: translateY(-2px);
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0 60px;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            min-width: 0;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 24px 20px;
            margin-bottom: 24px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #f0ebe5;
        }
        .sidebar-card h4 {
            font-size: 1.1rem;
            color: #1e1e2a;
            margin-bottom: 12px;
            border-left: 4px solid #f9d976;
            padding-left: 12px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card ul li {
            margin-bottom: 10px;
        }
        .sidebar-card ul li a {
            font-size: 0.92rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar-card ul li a i {
            color: #c44536;
            font-size: 0.75rem;
        }
        .main-content h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #1e1e2a;
            margin: 48px 0 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid #f9d976;
            display: inline-block;
        }
        .main-content h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2a2a3e;
            margin: 32px 0 12px;
        }
        .main-content h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #444;
            margin: 24px 0 10px;
        }
        .main-content p {
            margin-bottom: 18px;
            color: #2d2d2d;
        }
        .main-content .highlight {
            background: #fef9e7;
            border-left: 4px solid #f9d976;
            padding: 16px 20px;
            border-radius: 0 12px 12px 0;
            margin: 20px 0;
        }
        .main-content .highlight strong {
            color: #c44536;
        }
        .main-content ul,
        .main-content ol {
            margin: 12px 0 20px 24px;
            color: #2d2d2d;
        }
        .main-content li {
            margin-bottom: 8px;
        }
        .main-content .emoji-big {
            font-size: 1.4rem;
            margin-right: 6px;
        }
        .main-content .image-wrapper {
            margin: 28px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }
        .main-content .image-wrapper figcaption {
            background: #f8f6f2;
            padding: 12px 16px;
            font-size: 0.88rem;
            color: #666;
            text-align: center;
            font-style: italic;
        }
        .main-content .quote-block {
            background: #f0ebe5;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 24px 0;
            font-style: italic;
            position: relative;
        }
        .main-content .quote-block::before {
            content: "“";
            font-size: 4rem;
            color: #c44536;
            opacity: 0.2;
            position: absolute;
            top: 4px;
            left: 12px;
            line-height: 1;
        }
        .main-content .quote-block .author {
            font-style: normal;
            font-weight: 600;
            margin-top: 12px;
            color: #c44536;
        }
        .interaction-section {
            background: #fff;
            border-radius: 20px;
            padding: 32px 28px;
            margin-top: 48px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
            border: 1px solid #f0ebe5;
        }
        .interaction-section h3 {
            margin-top: 0;
            border-bottom: 2px solid #f9d976;
            padding-bottom: 10px;
            display: inline-block;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin-top: 20px;
        }
        .comment-form label,
        .rating-form label {
            display: block;
            font-weight: 600;
            margin-bottom: 6px;
            color: #1e1e2a;
        }
        .comment-form input,
        .comment-form textarea,
        .rating-form select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #ddd;
            border-radius: 12px;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.2s;
            background: #fafafa;
            font-family: inherit;
        }
        .comment-form input:focus,
        .comment-form textarea:focus,
        .rating-form select:focus {
            border-color: #c44536;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form .btn,
        .rating-form .btn {
            padding: 12px 28px;
            background: #c44536;
            color: #fff;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            margin-top: 8px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .comment-form .btn:hover,
        .rating-form .btn:hover {
            background: #a33426;
            transform: translateY(-2px);
        }
        .star-rating {
            display: flex;
            gap: 8px;
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            margin: 8px 0 12px;
        }
        .star-rating i {
            transition: color 0.15s, transform 0.15s;
        }
        .star-rating i.active,
        .star-rating i:hover {
            color: #f9d976;
            transform: scale(1.1);
        }
        footer {
            background: #1e1e2a;
            color: #ccc;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        footer .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 28px;
        }
        footer h4 {
            color: #f9d976;
            font-size: 1.1rem;
            margin-bottom: 12px;
        }
        footer p,
        footer a {
            color: #bbb;
            font-size: 0.9rem;
        }
        footer a:hover {
            color: #f9d976;
        }
        footer .copyright {
            border-top: 1px solid #333;
            padding-top: 20px;
            text-align: center;
            font-size: 0.85rem;
            color: #888;
        }
        friend-link {
            display: block;
            margin-top: 8px;
        }
        friend-link a {
            display: inline-block;
            margin-right: 20px;
            margin-bottom: 6px;
        }
        @media (max-width: 992px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: 2;
            }
            footer .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding-top: 12px;
                border-top: 1px solid rgba(255, 255, 255, 0.08);
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 10px 0;
                width: 100%;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .interaction-grid {
                grid-template-columns: 1fr;
            }
            footer .footer-grid {
                grid-template-columns: 1fr;
            }
            .search-form input {
                min-width: 140px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .main-content h2 {
                font-size: 1.5rem;
            }
            .main-content h3 {
                font-size: 1.2rem;
            }
        }
        .tag {
            display: inline-block;
            background: #f0ebe5;
            padding: 2px 14px;
            border-radius: 50px;
            font-size: 0.78rem;
            color: #666;
            margin-right: 6px;
        }
        .btn-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #c44536;
            color: #fff;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            box-shadow: 0 4px 20px rgba(196, 69, 54, 0.3);
            cursor: pointer;
            transition: background 0.2s, transform 0.2s;
            border: none;
            z-index: 999;
        }
        .btn-top:hover {
            background: #a33426;
            transform: translateY(-4px);
        }
