* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
            background: #f8f7f4;
            color: #1e1e2a;
            line-height: 1.7;
            padding: 0 16px;
            scroll-behavior: smooth;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 0 60px rgba(0, 0, 0, 0.04);
            border-radius: 32px;
            padding: 24px 28px 20px;
            margin-top: 18px;
            margin-bottom: 24px;
        }
        .header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding-bottom: 16px;
            border-bottom: 2px solid #f0ede8;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            text-decoration: none;
            background: linear-gradient(135deg, #b06ab3, #4568dc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: opacity 0.2s;
        }
        .my-logo:hover {
            opacity: 0.75;
        }
        .my-logo small {
            font-size: 0.9rem;
            font-weight: 400;
            -webkit-text-fill-color: #6b6b7b;
            color: #6b6b7b;
            background: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #dcd8d0;
            border-radius: 12px;
            padding: 8px 12px;
            font-size: 1.6rem;
            color: #2c2c3e;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #f0ede8;
        }
        .navbar {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 18px;
            align-items: center;
        }
        .navbar a {
            text-decoration: none;
            color: #2c2c3e;
            font-weight: 500;
            font-size: 0.98rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.15s;
        }
        .navbar a:hover {
            border-bottom-color: #b06ab3;
            color: #4568dc;
        }
        .breadcrumb {
            width: 100%;
            margin-top: 12px;
            font-size: 0.85rem;
            color: #7a7a8a;
            display: flex;
            flex-wrap: wrap;
            gap: 4px 10px;
        }
        .breadcrumb a {
            color: #4568dc;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #9a9aaa;
        }
        .hero-img-wrap {
            margin: 28px 0 18px;
            border-radius: 24px;
            overflow: hidden;
            background: #e9e6e0;
            position: relative;
        }
        .hero-img-wrap img {
            width: 100%;
            height: auto;
            max-height: 420px;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }
        .hero-img-wrap img:hover {
            transform: scale(1.01);
        }
        .hero-img-wrap .img-credit {
            position: absolute;
            bottom: 8px;
            right: 14px;
            background: rgba(0, 0, 0, 0.5);
            color: #f0ede8;
            font-size: 0.7rem;
            padding: 4px 12px;
            border-radius: 40px;
            backdrop-filter: blur(4px);
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 22px 0 10px;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #2c2c3e, #4568dc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            margin: 48px 0 14px;
            padding-bottom: 6px;
            border-bottom: 3px solid #f0ede8;
            color: #1e1e2a;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin: 32px 0 10px;
            color: #2c2c3e;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 22px 0 6px;
            color: #3d3d52;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.02rem;
            color: #2a2a38;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 400;
            color: #4a4a5e;
            border-left: 4px solid #b06ab3;
            padding-left: 20px;
            margin: 18px 0 26px;
        }
        strong {
            color: #1a1a2a;
            font-weight: 700;
        }
        .highlight {
            background: linear-gradient(to right, #fbf0d9, #f5e6d0);
            padding: 0 6px;
            border-radius: 4px;
        }
        ul,
        ol {
            margin: 10px 0 22px 28px;
        }
        li {
            margin-bottom: 8px;
            font-size: 1.0rem;
        }
        a {
            color: #4568dc;
            transition: 0.15s;
        }
        a:hover {
            color: #b06ab3;
        }
        .search-box {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            background: #f5f3ef;
            border-radius: 60px;
            padding: 6px 6px 6px 22px;
            align-items: center;
            max-width: 520px;
            margin: 28px 0 18px;
            border: 1px solid #e3dfd8;
            transition: 0.25s;
        }
        .search-box:focus-within {
            border-color: #b06ab3;
            box-shadow: 0 0 0 4px rgba(176, 106, 179, 0.12);
        }
        .search-box input {
            flex: 1;
            border: none;
            background: transparent;
            padding: 12px 0;
            font-size: 1rem;
            outline: none;
            min-width: 120px;
            color: #1e1e2a;
        }
        .search-box button {
            background: linear-gradient(135deg, #4568dc, #b06ab3);
            border: none;
            color: #fff;
            font-weight: 600;
            padding: 10px 26px;
            border-radius: 40px;
            cursor: pointer;
            font-size: 0.95rem;
            transition: 0.2s;
            white-space: nowrap;
        }
        .search-box button:hover {
            transform: scale(0.96);
            opacity: 0.9;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 24px;
            margin: 24px 0 32px;
        }
        .card {
            background: #faf9f6;
            border-radius: 20px;
            padding: 20px 18px 22px;
            border: 1px solid #efebe5;
            transition: 0.2s;
        }
        .card:hover {
            border-color: #b06ab3;
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
        }
        .card i {
            font-size: 2rem;
            color: #4568dc;
            margin-bottom: 10px;
        }
        .card h4 {
            margin: 6px 0 8px;
        }
        .styled-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0 32px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .styled-table thead {
            background: linear-gradient(135deg, #2c2c3e, #4568dc);
            color: #fff;
        }
        .styled-table th,
        .styled-table td {
            padding: 14px 18px;
            text-align: left;
            font-size: 0.98rem;
        }
        .styled-table tbody tr {
            border-bottom: 1px solid #efebe5;
            transition: 0.1s;
        }
        .styled-table tbody tr:hover {
            background: #f5f2ec;
        }
        .styled-table tbody tr:nth-of-type(even) {
            background: #fcfbf9;
        }
        .feedback-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 48px 0 20px;
            padding-top: 30px;
            border-top: 2px solid #f0ede8;
        }
        .feedback-card {
            background: #faf9f6;
            border-radius: 24px;
            padding: 24px 26px 30px;
            border: 1px solid #efebe5;
        }
        .feedback-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 12px 16px;
            border-radius: 12px;
            border: 1px solid #ddd8d0;
            font-size: 0.98rem;
            background: #fff;
            transition: 0.2s;
            font-family: inherit;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #b06ab3;
            box-shadow: 0 0 0 3px rgba(176, 106, 179, 0.1);
            outline: none;
        }
        .feedback-card textarea {
            min-height: 90px;
            resize: vertical;
        }
        .feedback-card .btn-submit {
            background: linear-gradient(135deg, #4568dc, #b06ab3);
            color: #fff;
            font-weight: 600;
            padding: 12px 24px;
            border: none;
            border-radius: 40px;
            cursor: pointer;
            font-size: 1rem;
            transition: 0.2s;
            align-self: flex-start;
        }
        .feedback-card .btn-submit:hover {
            transform: scale(0.96);
            opacity: 0.9;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #e0d8cc;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            transition: 0.15s;
            color: #ddd8d0;
            cursor: pointer;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f7c948;
        }
        .footer {
            margin-top: 48px;
            padding-top: 28px;
            border-top: 2px solid #f0ede8;
            font-size: 0.92rem;
            color: #5a5a6e;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 28px;
        }
        friend-link {
            display: block;
            background: #f5f3ef;
            border-radius: 16px;
            padding: 18px 22px;
            font-weight: 500;
            line-height: 2;
        }
        friend-link a {
            margin: 0 12px 0 4px;
            white-space: nowrap;
        }
        .copyright {
            margin-top: 18px;
            padding-top: 14px;
            border-top: 1px solid #e8e4dc;
            text-align: center;
            font-size: 0.85rem;
            color: #8a8a9a;
        }
        .update-badge {
            display: inline-block;
            background: #e8e4dc;
            padding: 2px 16px;
            border-radius: 40px;
            font-size: 0.8rem;
            color: #3d3d52;
            margin-bottom: 12px;
        }
        @media (max-width: 820px) {
            .container {
                padding: 16px 16px 20px;
                border-radius: 20px;
            }
            h1 {
                font-size: 2.0rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .feedback-section {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .navbar {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 16px 0 8px;
                gap: 6px;
            }
            .navbar.open {
                display: flex;
            }
            .nav-toggle {
                display: inline-block;
            }
            .header {
                align-items: center;
            }
            .styled-table {
                font-size: 0.85rem;
            }
            .styled-table th,
            .styled-table td {
                padding: 10px 10px;
            }
            .search-box {
                max-width: 100%;
                border-radius: 30px;
            }
            .search-box button {
                padding: 8px 18px;
                font-size: 0.85rem;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                flex-direction: column;
                gap: 16px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 12px 12px 16px;
                margin-top: 8px;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .hero-img-wrap {
                margin: 14px 0 12px;
            }
            .feedback-card {
                padding: 16px 14px 20px;
            }
            .star-rating {
                font-size: 1.5rem;
            }
        }
        :target {
            scroll-margin-top: 20px;
        }
        .emoji-lg {
            font-size: 1.4em;
            line-height: 1;
        }
        .divider {
            height: 2px;
            background: linear-gradient(to right, transparent, #e0d8cc, transparent);
            margin: 36px 0;
        }
        .tip-box {
            background: #f0f4fe;
            border-left: 5px solid #4568dc;
            padding: 18px 22px;
            border-radius: 12px;
            margin: 22px 0;
        }
        .tip-box i {
            color: #4568dc;
            margin-right: 10px;
        }
