* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #f5f3f0;
            color: #2c2c2c;
            line-height: 1.7;
            scroll-behavior: smooth;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
            padding: 16px 0;
            border-bottom: 4px solid #e6b800;
            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: 900;
            color: #e6b800;
            text-decoration: none;
            letter-spacing: 1px;
            text-shadow: 0 2px 8px rgba(230, 184, 0, 0.3);
            transition: transform 0.2s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo small {
            display: block;
            font-size: 0.7rem;
            color: #b0b0c8;
            font-weight: 400;
            letter-spacing: 0.5px;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #fff;
            cursor: pointer;
            background: none;
            border: none;
            padding: 4px 10px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        nav {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        nav a {
            color: #ddddee;
            text-decoration: none;
            font-size: 0.95rem;
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.25s ease;
            white-space: nowrap;
        }
        nav a:hover {
            background: #e6b800;
            color: #1a1a2e;
        }
        .breadcrumb {
            background: #f0ede8;
            padding: 12px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #ddd6cc;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            padding: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 8px;
            color: #999;
        }
        .breadcrumb a {
            color: #7a4a2e;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb .active {
            color: #444;
            font-weight: 600;
        }
        main {
            padding: 40px 0 60px;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 900;
            color: #1a1a2e;
            line-height: 1.2;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }
        h1 span {
            color: #e6b800;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #1a1a2e;
            margin-top: 48px;
            margin-bottom: 18px;
            border-left: 6px solid #e6b800;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2c2c44;
            margin-top: 32px;
            margin-bottom: 14px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #3a3a5a;
            margin-top: 22px;
            margin-bottom: 10px;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
        }
        .hero-image {
            width: 100%;
            border-radius: 18px;
            margin: 28px 0 32px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
            display: block;
            max-height: 500px;
            object-fit: cover;
        }
        .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 24px;
            padding-bottom: 16px;
            border-bottom: 1px solid #ddd6cc;
        }
        .meta-info i {
            margin-right: 6px;
            color: #e6b800;
        }
        .highlight-box {
            background: #faf8f5;
            border-left: 6px solid #e6b800;
            padding: 24px 28px;
            border-radius: 12px;
            margin: 28px 0;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .btn {
            display: inline-block;
            background: #e6b800;
            color: #1a1a2e;
            font-weight: 700;
            padding: 12px 32px;
            border-radius: 40px;
            text-decoration: none;
            transition: all 0.25s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        .btn:hover {
            background: #f0c800;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(230, 184, 0, 0.35);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #e6b800;
            color: #e6b800;
        }
        .btn-outline:hover {
            background: #e6b800;
            color: #1a1a2e;
        }
        .search-section {
            background: #fff;
            border-radius: 18px;
            padding: 32px 36px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
            margin: 40px 0;
        }
        .search-section h2 {
            margin-top: 0;
            border-left-color: #e6b800;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 12px;
        }
        .search-form input {
            flex: 1 1 280px;
            padding: 14px 20px;
            border: 2px solid #ddd6cc;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
            background: #faf8f5;
        }
        .search-form input:focus {
            border-color: #e6b800;
        }
        .search-form button {
            padding: 14px 32px;
            border: none;
            background: #e6b800;
            color: #1a1a2e;
            font-weight: 700;
            border-radius: 40px;
            cursor: pointer;
            font-size: 1rem;
            transition: all 0.25s ease;
        }
        .search-form button:hover {
            background: #f0c800;
            transform: translateY(-2px);
        }
        .feedback-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            margin: 48px 0;
        }
        @media (max-width:800px) {
            .feedback-section {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: #fff;
            border-radius: 18px;
            padding: 28px 32px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .feedback-card h3 i {
            color: #e6b800;
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #ddd6cc;
            border-radius: 12px;
            font-size: 0.95rem;
            margin-bottom: 14px;
            outline: none;
            transition: border 0.3s;
            background: #faf8f5;
            font-family: inherit;
        }
        .comment-form textarea:focus,
        .comment-form input:focus {
            border-color: #e6b800;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            margin-bottom: 16px;
            font-size: 1.8rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #ccc;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #e6b800;
        }
        .btn-submit {
            background: #e6b800;
            color: #1a1a2e;
            border: none;
            padding: 14px 36px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.25s ease;
        }
        .btn-submit:hover {
            background: #f0c800;
            transform: translateY(-2px);
        }
        .base-table {
            width: 100%;
            border-collapse: collapse;
            margin: 28px 0;
            background: #fff;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
        }
        .base-table th {
            background: #1a1a2e;
            color: #e6b800;
            padding: 14px 18px;
            text-align: left;
            font-weight: 600;
        }
        .base-table td {
            padding: 14px 18px;
            border-bottom: 1px solid #f0ede8;
        }
        .base-table tr:last-child td {
            border-bottom: none;
        }
        .base-table tr:hover td {
            background: #faf8f5;
        }
        footer {
            background: #1a1a2e;
            color: #cccce0;
            padding: 40px 0 24px;
            border-top: 4px solid #e6b800;
        }
        footer .container {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
        }
        @media (max-width:700px) {
            footer .container {
                grid-template-columns: 1fr;
                gap: 28px;
            }
        }
        footer h4 {
            color: #e6b800;
            margin-top: 0;
            font-size: 1.1rem;
        }
        footer a {
            color: #ccd;
            text-decoration: none;
            transition: color 0.2s;
        }
        footer a:hover {
            color: #e6b800;
        }
        .footer-links {
            list-style: none;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .copyright {
            grid-column: 1 / -1;
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid #2c2c4a;
            font-size: 0.9rem;
            color: #8888aa;
            margin-top: 16px;
        }
        friend-link {
            display: block;
            background: #0f0f1e;
            padding: 14px 20px;
            border-radius: 12px;
            margin: 8px 0;
            font-size: 0.95rem;
        }
        friend-link a {
            color: #e6b800;
            font-weight: 500;
        }
        friend-link a:hover {
            text-decoration: underline;
        }
        @media (max-width:860px) {
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding-top: 16px;
                gap: 4px;
            }
            nav.show {
                display: flex;
            }
            nav a {
                padding: 12px 20px;
                border-radius: 10px;
                background: rgba(255, 255, 255, 0.04);
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .search-section {
                padding: 22px 18px;
            }
            .feedback-card {
                padding: 20px 18px;
            }
            .base-table {
                font-size: 0.85rem;
            }
            .base-table th,
            .base-table td {
                padding: 10px 12px;
            }
        }
        @media (max-width:480px) {
            h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .search-form input {
                flex: 1 1 100%;
            }
            .search-form button {
                width: 100%;
            }
            .breadcrumb ol {
                font-size: 0.8rem;
            }
        }
        .anchor-offset {
            scroll-margin-top: 100px;
        }
        .mt-2 {
            margin-top: 20px;
        }
        .mb-2 {
            margin-bottom: 20px;
        }
        .badge {
            display: inline-block;
            background: #e6b800;
            color: #1a1a2e;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 2px 14px;
            border-radius: 30px;
            letter-spacing: 0.5px;
        }
