* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f8f9fc;
            color: #1e2a3a;
            line-height: 1.7;
            padding: 0 16px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
            border-radius: 24px;
            padding: 20px 24px;
            margin-top: 16px;
            margin-bottom: 40px;
        }
        a {
            color: #e74c3c;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #c0392b;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 16px;
            display: block;
            margin: 24px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.3;
            color: #0f1a2c;
            margin-top: 1.6em;
            margin-bottom: 0.5em;
        }
        h1 {
            font-size: 2.4rem;
            border-left: 6px solid #e74c3c;
            padding-left: 20px;
            margin-top: 0.4em;
        }
        h2 {
            font-size: 1.8rem;
            color: #1a2a44;
            border-bottom: 2px solid #eef2f7;
            padding-bottom: 8px;
        }
        h3 {
            font-size: 1.35rem;
            color: #243b55;
        }
        h4 {
            font-size: 1.1rem;
            color: #2c3e50;
        }
        p {
            margin-bottom: 1.2em;
            font-size: 1.02rem;
            letter-spacing: 0.01em;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            font-size: 0.9rem;
            padding: 14px 0 10px;
            color: #5a6a7a;
            border-bottom: 1px solid #edf2f7;
            margin-bottom: 20px;
            list-style: none;
        }
        .breadcrumb li {
            display: inline;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #b0bec5;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #e74c3c;
        }
        .breadcrumb a:hover {
            color: #a93226;
        }
        .header-top {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 8px 0 12px;
            border-bottom: 2px solid #f0f4fa;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            -webkit-text-fill-color: #e74c3c;
            font-size: 1.6rem;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #5a6a7a;
            font-weight: 400;
            letter-spacing: 0.3px;
        }
        .nav-bar {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px 24px;
        }
        .nav-bar a {
            font-weight: 500;
            color: #1e2a3a;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .nav-bar a:hover {
            border-bottom-color: #e74c3c;
            color: #e74c3c;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #1e2a3a;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #f0f2f5;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            gap: 6px;
            padding: 12px 0 16px;
            border-bottom: 1px solid #edf2f7;
        }
        .nav-mobile a {
            padding: 8px 12px;
            border-radius: 8px;
            font-weight: 500;
            color: #1e2a3a;
        }
        .nav-mobile a:hover {
            background: #f8e8e6;
            color: #e74c3c;
            text-decoration: none;
        }
        .search-box {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            background: #f4f7fc;
            padding: 16px 20px;
            border-radius: 16px;
            margin: 24px 0 20px;
            align-items: center;
        }
        .search-box input {
            flex: 1;
            min-width: 160px;
            padding: 12px 18px;
            border: 2px solid #e0e7ef;
            border-radius: 12px;
            font-size: 1rem;
            outline: none;
            transition: border 0.25s;
            background: #fff;
        }
        .search-box input:focus {
            border-color: #e74c3c;
        }
        .search-box button {
            padding: 12px 28px;
            background: #e74c3c;
            color: #fff;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.1s;
        }
        .search-box button:hover {
            background: #c0392b;
            transform: scale(1.02);
        }
        .comment-area,
        .score-area {
            background: #fafcff;
            border: 1px solid #eef2f7;
            border-radius: 20px;
            padding: 20px 24px;
            margin: 28px 0 18px;
        }
        .comment-area h3,
        .score-area h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.3rem;
        }
        .comment-area textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #e0e7ef;
            border-radius: 14px;
            font-size: 1rem;
            resize: vertical;
            min-height: 100px;
            font-family: inherit;
            transition: border 0.25s;
            background: #fff;
        }
        .comment-area textarea:focus {
            border-color: #e74c3c;
            outline: none;
        }
        .comment-area button,
        .score-area button {
            padding: 10px 28px;
            background: #1a2a44;
            color: #fff;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s;
            margin-top: 10px;
        }
        .comment-area button:hover,
        .score-area button:hover {
            background: #2c3e6b;
        }
        .score-stars {
            display: flex;
            gap: 8px;
            font-size: 2rem;
            color: #dcdde1;
            cursor: pointer;
            margin: 6px 0 12px;
            flex-wrap: wrap;
        }
        .score-stars i {
            transition: color 0.2s, transform 0.15s;
        }
        .score-stars i:hover,
        .score-stars i.active {
            color: #f1c40f;
            transform: scale(1.15);
        }
        .friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 28px;
            padding: 24px 0 14px;
            border-top: 2px solid #edf2f7;
            margin-top: 20px;
            font-size: 0.95rem;
        }
        .friend-link a {
            color: #2c3e50;
            font-weight: 500;
            padding: 2px 0;
        }
        .friend-link a:hover {
            color: #e74c3c;
        }
        .footer-copy {
            text-align: center;
            padding: 18px 0 10px;
            font-size: 0.9rem;
            color: #5a6a7a;
            border-top: 1px solid #eef2f7;
            margin-top: 10px;
        }
        .footer-copy strong {
            color: #1e2a3a;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #6a7a8a;
            background: #f4f7fc;
            display: inline-block;
            padding: 4px 16px;
            border-radius: 30px;
            margin: 6px 0 16px;
        }
        .highlight-box {
            background: #fdf4f2;
            border-left: 5px solid #e74c3c;
            padding: 18px 22px;
            border-radius: 12px;
            margin: 20px 0;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 20px 0;
        }
        .emoji-lg {
            font-size: 1.4rem;
            margin-right: 6px;
        }
        @media (max-width: 768px) {
            .container {
                padding: 16px 14px;
                border-radius: 16px;
            }
            h1 {
                font-size: 1.7rem;
                padding-left: 14px;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .header-top {
                flex-direction: row;
            }
            .nav-bar {
                display: none;
            }
            .hamburger {
                display: inline-block;
            }
            .nav-mobile.open {
                display: flex;
            }
            .grid-2 {
                grid-template-columns: 1fr;
            }
            .search-box {
                flex-direction: column;
                align-items: stretch;
            }
            .search-box button {
                width: 100%;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
                gap: 4px 8px;
            }
            .score-stars {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 12px 10px;
            }
            h1 {
                font-size: 1.4rem;
            }
            p {
                font-size: 0.96rem;
            }
            .comment-area,
            .score-area {
                padding: 14px 16px;
            }
        }
        .flex-between {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }
        .mt-1 {
            margin-top: 12px;
        }
        .mb-1 {
            margin-bottom: 12px;
        }
        .tag {
            display: inline-block;
            background: #f0f2f5;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #2c3e50;
            font-weight: 500;
        }
