*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --primary: #1a3a5c;
            --primary-light: #2a5a8c;
            --secondary: #e8a838;
            --secondary-light: #f0c060;
            --accent: #d94a3a;
            --bg: #f8f6f2;
            --bg-card: #ffffff;
            --text: #1e1e1e;
            --text-light: #555;
            --border: #ddd;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            --radius: 12px;
            --max-width: 1200px;
            --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font);
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: var(--primary-light);
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: var(--accent);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .header {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
        }
        .header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            color: var(--secondary);
            font-size: 1.8rem;
        }
        .my-logo:hover {
            color: var(--secondary-light);
            text-decoration: none;
        }
        .my-logo span {
            font-weight: 300;
            color: var(--secondary);
        }
        .nav {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .nav a {
            color: rgba(255, 255, 255, 0.9);
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.25s, color 0.25s;
            white-space: nowrap;
        }
        .nav a:hover {
            background: rgba(255, 255, 255, 0.15);
            color: var(--secondary-light);
            text-decoration: none;
        }
        .nav a.active {
            background: rgba(255, 255, 255, 0.2);
            color: var(--secondary);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            background: var(--bg-card);
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
            font-size: 0.85rem;
        }
        .breadcrumb .container {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .breadcrumb a {
            color: var(--text-light);
        }
        .breadcrumb a:hover {
            color: var(--primary-light);
        }
        .breadcrumb span {
            color: var(--text-light);
        }
        .breadcrumb .sep {
            color: var(--border);
        }
        .hero {
            background: linear-gradient(135deg, var(--primary) 0%, #0f2a44 100%);
            color: #fff;
            padding: 60px 0 50px;
            text-align: center;
            position: relative;
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }
        .hero h1 i {
            color: var(--secondary);
            margin-right: 10px;
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 720px;
            margin: 0 auto 20px;
            opacity: 0.9;
            line-height: 1.6;
        }
        .hero .meta {
            font-size: 0.9rem;
            opacity: 0.7;
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }
        .hero .meta i {
            margin-right: 6px;
        }
        .content {
            padding: 40px 0 60px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
        }
        .content-main {
            min-width: 0;
        }
        .content-main section {
            margin-bottom: 48px;
        }
        .content-main h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            margin: 40px 0 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid var(--secondary);
        }
        .content-main h2:first-child {
            margin-top: 0;
        }
        .content-main h3 {
            font-size: 1.35rem;
            font-weight: 600;
            color: var(--primary-light);
            margin: 28px 0 12px;
        }
        .content-main h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text);
            margin: 20px 0 8px;
        }
        .content-main p {
            margin-bottom: 16px;
            color: var(--text);
        }
        .content-main ul,
        .content-main ol {
            margin: 0 0 20px 24px;
        }
        .content-main li {
            margin-bottom: 8px;
        }
        .content-main .highlight-box {
            background: var(--bg-card);
            border-left: 5px solid var(--secondary);
            padding: 20px 24px;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 24px 0;
            box-shadow: var(--shadow);
        }
        .content-main .highlight-box strong {
            color: var(--primary);
        }
        .content-main .emoji-big {
            font-size: 1.8rem;
            margin-right: 8px;
        }
        .img-wrap {
            margin: 28px 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            background: var(--bg-card);
            padding: 12px;
        }
        .img-wrap img {
            width: 100%;
            border-radius: 8px;
        }
        .img-wrap .caption {
            padding: 12px 4px 4px;
            font-size: 0.85rem;
            color: var(--text-light);
            text-align: center;
            font-style: italic;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 24px;
            box-shadow: var(--shadow);
            margin-bottom: 24px;
        }
        .sidebar-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar-card h3 i {
            color: var(--secondary);
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-card ul li {
            padding: 8px 0;
            border-bottom: 1px solid var(--border);
        }
        .sidebar-card ul li:last-child {
            border-bottom: none;
        }
        .sidebar-card ul li a {
            font-size: 0.9rem;
            display: block;
        }
        .search-form {
            display: flex;
            gap: 8px;
            margin-top: 8px;
        }
        .search-form input {
            flex: 1;
            padding: 10px 14px;
            border: 2px solid var(--border);
            border-radius: 8px;
            font-size: 0.9rem;
            outline: none;
            transition: border 0.25s;
        }
        .search-form input:focus {
            border-color: var(--primary-light);
        }
        .search-form button {
            padding: 10px 18px;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s;
        }
        .search-form button:hover {
            background: var(--primary-light);
        }
        .comment-section,
        .score-section {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 28px;
            box-shadow: var(--shadow);
            margin-top: 40px;
        }
        .comment-section h3,
        .score-section h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .comment-section h3 i,
        .score-section h3 i {
            color: var(--secondary);
        }
        .comment-form textarea,
        .score-form select,
        .score-form input {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid var(--border);
            border-radius: 8px;
            font-size: 0.95rem;
            font-family: var(--font);
            outline: none;
            transition: border 0.25s;
            margin-bottom: 12px;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form textarea:focus,
        .score-form select:focus,
        .score-form input:focus {
            border-color: var(--primary-light);
        }
        .comment-form button,
        .score-form button {
            padding: 12px 28px;
            background: var(--secondary);
            color: var(--primary);
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
        }
        .comment-form button:hover,
        .score-form button:hover {
            background: var(--secondary-light);
            transform: translateY(-1px);
        }
        .score-form .star-wrap {
            display: flex;
            gap: 6px;
            font-size: 1.6rem;
            color: var(--border);
            margin-bottom: 12px;
            cursor: pointer;
        }
        .score-form .star-wrap .star.active {
            color: var(--secondary);
        }
        .footer {
            background: var(--primary);
            color: rgba(255, 255, 255, 0.85);
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        .footer .container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
        }
        .footer h4 {
            color: var(--secondary);
            font-size: 1.1rem;
            margin-bottom: 16px;
        }
        .footer a {
            color: rgba(255, 255, 255, 0.8);
        }
        .footer a:hover {
            color: var(--secondary-light);
        }
        .footer ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer ul li {
            padding: 4px 0;
        }
        .footer .copyright {
            grid-column: 1 / -1;
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 16px;
        }
        friend-link {
            display: block;
            grid-column: 1 / -1;
            padding: 16px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 8px;
            font-size: 0.9rem;
        }
        friend-link a {
            margin: 0 8px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                order: 2;
            }
            .footer .container {
                grid-template-columns: 1fr 1fr;
            }
            .hero h1 {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 12px 0 4px;
                gap: 4px;
            }
            .nav.open {
                display: flex;
            }
            .nav a {
                padding: 10px 16px;
                width: 100%;
                border-radius: 6px;
            }
            .header .container {
                align-items: center;
            }
            .hero {
                padding: 40px 0 30px;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .footer .container {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .content-main h2 {
                font-size: 1.4rem;
            }
            .content-main h3 {
                font-size: 1.15rem;
            }
            .comment-section,
            .score-section {
                padding: 20px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .hero h1 {
                font-size: 1.4rem;
            }
            .hero .meta {
                font-size: 0.8rem;
                gap: 12px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
        }
        .fade-up {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        .table-wrap table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
            background: var(--bg-card);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .table-wrap th {
            background: var(--primary);
            color: #fff;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
        }
        .table-wrap td {
            padding: 10px 16px;
            border-bottom: 1px solid var(--border);
        }
        .table-wrap tr:last-child td {
            border-bottom: none;
        }
        .table-wrap tr:hover td {
            background: #f0f4f8;
        }
        .score-display {
            display: flex;
            align-items: center;
            gap: 12px;
            margin: 8px 0 16px;
        }
        .score-display .avg {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
        }
        .score-display .stars {
            color: var(--secondary);
            font-size: 1.2rem;
        }
        .score-display .count {
            color: var(--text-light);
            font-size: 0.9rem;
        }
