        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Quicksand', sans-serif;
            background: #fcf5f0;
            color: #2d1b2e;
            line-height: 1.8;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: #b84a79;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #7d2d4e;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 16px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 800;
            line-height: 1.3;
            color: #3e1b3a;
        }
        h1 {
            font-size: 2.6rem;
            margin: 0.5em 0 0.4em;
            background: linear-gradient(135deg, #d9457a, #a63c6e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 2rem;
            margin: 1.6em 0 0.6em;
            border-left: 6px solid #f7b731;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.5rem;
            margin: 1.2em 0 0.5em;
            color: #7d2d4e;
        }
        h4 {
            font-size: 1.2rem;
            margin: 0.8em 0 0.3em;
            color: #b84a79;
        }
        p {
            margin-bottom: 1.2em;
            font-size: 1.05rem;
        }
        .text-muted {
            color: #6b4f62;
        }
        .text-small {
            font-size: 0.9rem;
        }
        .site-header {
            background: linear-gradient(135deg, #fce4ec, #f8d0d8);
            box-shadow: 0 4px 20px rgba(185, 74, 121, 0.15);
            position: sticky;
            top: 0;
            z-index: 999;
            padding: 12px 0;
            backdrop-filter: blur(6px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-family: 'Fredoka One', cursive;
            font-size: 2.2rem;
            color: #b84a79;
            text-shadow: 2px 2px 0 rgba(247, 183, 49, 0.3);
            letter-spacing: -0.5px;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #9a3d63;
        }
        .my-logo i {
            color: #f7b731;
            margin-right: 6px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #b84a79;
            color: #b84a79;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 10px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #b84a79;
            color: #fff;
        }
        .nav-menu {
            display: flex;
            gap: 10px 22px;
            flex-wrap: wrap;
            align-items: center;
            list-style: none;
        }
        .nav-menu li a {
            font-weight: 600;
            padding: 6px 8px;
            border-radius: 8px;
            font-size: 0.95rem;
            color: #3e1b3a;
        }
        .nav-menu li a:hover {
            background: rgba(184, 74, 121, 0.12);
            color: #b84a79;
            text-decoration: none;
        }
        .nav-menu li a i {
            margin-right: 6px;
            color: #b84a79;
        }
        .breadcrumb-wrap {
            background: #fff7f2;
            padding: 10px 0;
            border-bottom: 1px solid #f0d6dc;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            font-size: 0.9rem;
            gap: 6px 12px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 12px;
            color: #b84a79;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #7d2d4e;
        }
        .breadcrumb .active {
            color: #b84a79;
            font-weight: 600;
        }
        .hero-section {
            background: linear-gradient(135deg, #fff0f5, #fce4ec, #fff5f9);
            padding: 40px 0 36px;
            border-radius: 0 0 40px 40px;
            margin-bottom: 30px;
        }
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        .hero-content .badge {
            display: inline-block;
            background: #f7b731;
            color: #3e1b3a;
            font-weight: 700;
            padding: 4px 18px;
            border-radius: 40px;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
        }
        .hero-content .badge i {
            margin-right: 6px;
        }
        .hero-content h1 {
            margin-top: 0.2em;
        }
        .hero-content .subhead {
            font-size: 1.15rem;
            color: #5a3d52;
            margin-bottom: 20px;
        }
        .hero-stats {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
            margin-top: 18px;
        }
        .hero-stats span {
            font-weight: 700;
            color: #7d2d4e;
            font-size: 0.95rem;
        }
        .hero-stats i {
            color: #f7b731;
            margin-right: 6px;
        }
        .hero-image {
            border-radius: 24px;
            box-shadow: 0 20px 40px rgba(185, 74, 121, 0.15);
            transition: transform 0.4s ease;
        }
        .hero-image:hover {
            transform: scale(1.01);
        }
        .hero-image img {
            border-radius: 24px;
            width: 100%;
            height: auto;
        }
        .content-section {
            padding: 20px 0 40px;
        }
        .section-card {
            background: #fff;
            border-radius: 28px;
            padding: 36px 40px;
            box-shadow: 0 8px 32px rgba(185, 74, 121, 0.08);
            margin-bottom: 36px;
            transition: box-shadow 0.3s;
        }
        .section-card:hover {
            box-shadow: 0 12px 48px rgba(185, 74, 121, 0.12);
        }
        .section-card .emoji-icon {
            font-size: 2.2rem;
            margin-right: 10px;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 18px;
            list-style: none;
            padding: 12px 0 6px;
        }
        .link-list-inline li a {
            background: #fce4ec;
            padding: 6px 18px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.9rem;
            color: #7d2d4e;
            transition: all 0.25s;
        }
        .link-list-inline li a:hover {
            background: #b84a79;
            color: #fff;
            text-decoration: none;
            transform: translateY(-2px);
        }
        .link-list-inline li a i {
            margin-right: 6px;
            font-size: 0.8rem;
        }
        .tip-box {
            background: #fef7e9;
            border-left: 6px solid #f7b731;
            padding: 18px 24px;
            border-radius: 12px;
            margin: 18px 0;
        }
        .tip-box strong {
            color: #b84a79;
        }
        .tip-box i {
            color: #f7b731;
            margin-right: 8px;
        }
        .highlight-pink {
            background: #fce4ec;
            padding: 2px 10px;
            border-radius: 6px;
            font-weight: 600;
        }
        .interview-block {
            background: #f5edf2;
            border-radius: 20px;
            padding: 28px 32px;
            margin: 24px 0;
            position: relative;
        }
        .interview-block::before {
            content: "💬";
            font-size: 2.8rem;
            position: absolute;
            top: -12px;
            left: 20px;
        }
        .interview-block .interviewee {
            font-weight: 800;
            color: #7d2d4e;
            margin-top: 8px;
        }
        .interview-block .interviewee i {
            color: #f7b731;
        }
        .data-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 18px;
            margin: 20px 0;
        }
        .data-item {
            background: #fcf5f0;
            border-radius: 16px;
            padding: 18px 20px;
            text-align: center;
            border: 1px solid #f0d6dc;
        }
        .data-item .number {
            font-size: 2.2rem;
            font-weight: 800;
            color: #b84a79;
            display: block;
        }
        .data-item .label {
            font-size: 0.9rem;
            color: #6b4f62;
            font-weight: 600;
        }
        .search-form {
            display: flex;
            gap: 10px;
            max-width: 560px;
            margin: 20px 0;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            padding: 14px 20px;
            border: 2px solid #f0d6dc;
            border-radius: 50px;
            font-size: 1rem;
            background: #fff;
            font-family: inherit;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-form input:focus {
            border-color: #b84a79;
        }
        .search-form button {
            background: #b84a79;
            color: #fff;
            border: none;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.2s;
            font-family: inherit;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #9a3d63;
            transform: translateY(-2px);
        }
        .comment-form,
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            max-width: 620px;
            margin: 20px 0;
        }
        .comment-form textarea,
        .comment-form input,
        .rating-form select,
        .rating-form input {
            padding: 14px 18px;
            border: 2px solid #f0d6dc;
            border-radius: 14px;
            font-size: 1rem;
            font-family: inherit;
            background: #fff;
            outline: none;
            transition: border-color 0.3s;
        }
        .comment-form textarea:focus,
        .comment-form input:focus,
        .rating-form select:focus {
            border-color: #b84a79;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .comment-form button,
        .rating-form button {
            align-self: flex-start;
            background: #7d2d4e;
            color: #fff;
            border: none;
            padding: 12px 36px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.2s;
            font-family: inherit;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            background: #5a1f38;
            transform: translateY(-2px);
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #f7b731;
            cursor: pointer;
        }
        .rating-stars i {
            transition: transform 0.2s;
        }
        .rating-stars i:hover {
            transform: scale(1.2);
        }
        .comment-list {
            margin-top: 28px;
        }
        .comment-item {
            background: #fcf5f0;
            padding: 18px 22px;
            border-radius: 16px;
            margin-bottom: 14px;
            border-left: 4px solid #f7b731;
        }
        .comment-item .meta {
            font-size: 0.85rem;
            color: #6b4f62;
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .comment-item .meta i {
            color: #b84a79;
        }
        .site-footer {
            background: #2d1b2e;
            color: #f0d6dc;
            padding: 40px 0 20px;
            margin-top: 50px;
            border-radius: 48px 48px 0 0;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid #4d2a44;
        }
        .footer-inner h4 {
            color: #f7b731;
            margin-bottom: 16px;
            font-size: 1.2rem;
        }
        .footer-inner p,
        .footer-inner a {
            color: #dbb8cc;
            font-size: 0.95rem;
        }
        .footer-inner a:hover {
            color: #f7b731;
        }
        friend-link {
            display: block;
            margin: 12px 0;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 0;
            padding: 4px 0;
        }
        .copyright {
            text-align: center;
            padding-top: 24px;
            font-size: 0.9rem;
            color: #a88699;
        }
        .copyright i {
            color: #f7b731;
        }
        @media (max-width: 900px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .hero-image {
                order: -1;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .section-card {
                padding: 24px 20px;
            }
        }
        @media (max-width: 700px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 18px 0 8px;
                gap: 8px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                display: block;
                padding: 10px 16px;
                background: #fff5f9;
                border-radius: 12px;
            }
            .header-inner {
                align-items: center;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            h1 {
                font-size: 1.7rem;
            }
            .hero-stats {
                gap: 14px;
                font-size: 0.9rem;
            }
            .search-form button {
                padding: 12px 22px;
            }
            .data-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 480px) {
            body {
                font-size: 15px;
            }
            .container {
                padding: 0 14px;
            }
            .section-card {
                padding: 18px 14px;
                border-radius: 18px;
            }
            .data-grid {
                grid-template-columns: 1fr;
            }
            .hero-stats {
                flex-direction: column;
                gap: 6px;
            }
        }
        .back-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #b84a79;
            color: #fff;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            box-shadow: 0 6px 20px rgba(185, 74, 121, 0.3);
            transition: all 0.3s;
            z-index: 99;
            border: none;
            cursor: pointer;
        }
        .back-top:hover {
            background: #7d2d4e;
            transform: translateY(-4px);
        }
        @media print {
            .site-header {
                position: static;
            }
            .back-top,
            .nav-toggle {
                display: none !important;
            }
        }
