* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: #f8f9fc;
            color: #1a1a2e;
            line-height: 1.8;
            padding: 0 20px;
            scroll-behavior: smooth;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.04);
            border-radius: 32px;
            padding: 0 30px 30px;
        }
        header {
            padding: 20px 0 10px;
            border-bottom: 2px solid #f0f2f7;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            letter-spacing: -1px;
            background: linear-gradient(135deg, #e91e63, #9c27b0, #3f51b5);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            -webkit-text-fill-color: #e91e63;
            font-size: 2rem;
        }
        .my-logo:hover {
            opacity: 0.85;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            background: none;
            border: none;
            color: #1a1a2e;
            padding: 4px 12px;
            border-radius: 12px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #f0f2f7;
        }
        .hamburger.active {
            color: #e91e63;
        }
        nav {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
        }
        nav a {
            text-decoration: none;
            color: #2d2d44;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 100px;
            transition: all 0.25s ease;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        nav a i {
            font-size: 0.85rem;
            color: #9c27b0;
        }
        nav a:hover {
            background: #f0e6ff;
            color: #6a1b9a;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(156, 39, 176, 0.12);
        }
        .breadcrumb {
            padding: 14px 0 10px;
            font-size: 0.9rem;
            color: #666;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 10px;
            align-items: center;
            border-bottom: 1px solid #f0f2f7;
            margin-bottom: 24px;
        }
        .breadcrumb a {
            color: #6a1b9a;
            text-decoration: none;
            font-weight: 500;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #999;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 900;
            line-height: 1.2;
            margin: 20px 0 16px;
            background: linear-gradient(135deg, #1a1a2e, #3f51b5);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 800;
            margin: 48px 0 16px;
            padding-bottom: 8px;
            border-bottom: 4px solid #f0e6ff;
            color: #1a1a2e;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        h2 i {
            color: #9c27b0;
            font-size: 1.6rem;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 32px 0 12px;
            color: #2d2d44;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        h3 i {
            color: #e91e63;
            font-size: 1.2rem;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 700;
            margin: 24px 0 10px;
            color: #3f51b5;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            color: #2d2d44;
        }
        .highlight {
            background: #f0e6ff;
            padding: 2px 10px;
            border-radius: 6px;
            font-weight: 700;
            color: #6a1b9a;
        }
        .emoji-big {
            font-size: 1.8rem;
            vertical-align: middle;
            margin-right: 6px;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            border-radius: 100px;
            background: linear-gradient(135deg, #e91e63, #9c27b0);
            color: #fff;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(233, 30, 99, 0.3);
        }
        .btn i {
            margin-right: 8px;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
            margin: 24px 0 32px;
        }
        .card {
            background: #fafbff;
            border-radius: 24px;
            padding: 24px 20px;
            border: 1px solid #eee;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
        }
        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(156, 39, 176, 0.10);
            border-color: #d0c4e8;
        }
        .card i {
            font-size: 2.2rem;
            color: #9c27b0;
            margin-bottom: 12px;
        }
        .card h4 {
            margin: 0 0 8px;
            color: #1a1a2e;
        }
        .card p {
            font-size: 0.95rem;
            margin: 0;
            color: #555;
        }
        .card a {
            color: #6a1b9a;
            font-weight: 600;
            text-decoration: none;
        }
        .card a:hover {
            text-decoration: underline;
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 18px;
            margin: 20px 0 24px;
            padding: 0;
            list-style: none;
        }
        .link-list li a {
            color: #6a1b9a;
            font-weight: 600;
            text-decoration: none;
            padding: 4px 0;
            border-bottom: 2px solid transparent;
            transition: border 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .link-list li a:hover {
            border-bottom-color: #e91e63;
        }
        .link-list li a i {
            font-size: 0.8rem;
            color: #e91e63;
        }
        .img-wrapper {
            margin: 28px 0;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
            background: #f0f2f7;
            text-align: center;
            padding: 20px;
            position: relative;
        }
        .img-wrapper img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 16px;
            margin: 0 auto;
        }
        .img-wrapper .caption {
            margin-top: 12px;
            font-size: 0.9rem;
            color: #888;
            font-style: italic;
        }
        .search-box {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 24px 0 32px;
            max-width: 600px;
        }
        .search-box input {
            flex: 1;
            min-width: 180px;
            padding: 14px 20px;
            border-radius: 100px;
            border: 2px solid #e0e0e0;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
            background: #fafbff;
        }
        .search-box input:focus {
            border-color: #9c27b0;
            box-shadow: 0 0 0 4px rgba(156, 39, 176, 0.08);
        }
        .search-box button {
            padding: 14px 32px;
            border-radius: 100px;
            background: linear-gradient(135deg, #3f51b5, #9c27b0);
            color: #fff;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
        }
        .search-box button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(63, 81, 181, 0.25);
        }
        .feedback-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 40px 0 32px;
            padding: 28px 30px;
            background: #fafbff;
            border-radius: 28px;
            border: 1px solid #eee;
        }
        .feedback-section h3 {
            margin-top: 0;
        }
        .feedback-section form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .feedback-section textarea,
        .feedback-section input,
        .feedback-section select {
            padding: 12px 16px;
            border-radius: 16px;
            border: 2px solid #e0e0e0;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
            background: #fff;
            font-family: inherit;
        }
        .feedback-section textarea:focus,
        .feedback-section input:focus,
        .feedback-section select:focus {
            border-color: #9c27b0;
            box-shadow: 0 0 0 4px rgba(156, 39, 176, 0.06);
        }
        .feedback-section textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-section .btn-submit {
            padding: 12px 24px;
            border-radius: 100px;
            background: linear-gradient(135deg, #e91e63, #9c27b0);
            color: #fff;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
            align-self: flex-start;
        }
        .feedback-section .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(233, 30, 99, 0.2);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            flex-direction: row-reverse;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f9a825;
        }
        footer {
            margin-top: 48px;
            padding: 32px 0 20px;
            border-top: 2px solid #f0f2f7;
        }
        friend-link {
            display: block;
            padding: 16px 0;
            font-style: normal;
        }
        friend-link a {
            color: #6a1b9a;
            text-decoration: none;
            font-weight: 500;
            margin: 0 8px 0 0;
        }
        friend-link a:hover {
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            color: #888;
            font-size: 0.9rem;
            padding-top: 16px;
            border-top: 1px solid #f0f2f7;
            margin-top: 16px;
        }
        .copyright strong {
            color: #3f51b5;
        }
        .last-updated {
            display: inline-block;
            background: #f0e6ff;
            padding: 4px 16px;
            border-radius: 100px;
            font-size: 0.85rem;
            color: #6a1b9a;
            font-weight: 600;
            margin-bottom: 16px;
        }
        @media (max-width: 860px) {
            .container {
                padding: 0 16px 20px;
                border-radius: 20px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .feedback-section {
                grid-template-columns: 1fr;
                padding: 20px;
            }
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 16px 0 8px;
                gap: 4px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 10px 16px;
                width: 100%;
                border-radius: 16px;
            }
            header {
                padding: 12px 0 6px;
            }
            .my-logo {
                font-size: 1.6rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
                flex-wrap: wrap;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            .search-box {
                flex-direction: column;
            }
            .search-box button {
                width: 100%;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            h3 {
                font-size: 1.1rem;
            }
            .container {
                padding: 0 12px 16px;
            }
            .feedback-section {
                padding: 16px;
            }
            .star-rating label {
                font-size: 1.4rem;
            }
        }
        a,
        button,
        input,
        textarea,
        select {
            transition: all 0.2s ease;
        }
        ::selection {
            background: #e0d4f5;
            color: #1a1a2e;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
            border-radius: 16px;
            border: 1px solid #eee;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        th {
            background: #f0e6ff;
            padding: 14px 16px;
            text-align: left;
            font-weight: 700;
            color: #1a1a2e;
        }
        td {
            padding: 12px 16px;
            border-top: 1px solid #f0f2f7;
        }
        tr:hover td {
            background: #fafbff;
        }
        .mt-2 {
            margin-top: 20px;
        }
        .mb-2 {
            margin-bottom: 20px;
        }
        .flex-center {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px;
        }
