* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            background: #f9f5f0;
            color: #2d2a24;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #7a4b8c;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #b07cc6;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #f3e7f0 0%, #e8dce8 100%);
            border-bottom: 2px solid #dcc9db;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(6px);
            box-shadow: 0 2px 12px rgba(0,0,0,0.04);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #5a3d5c;
            text-decoration: none;
            background: rgba(255,255,240,0.5);
            padding: 4px 14px;
            border-radius: 40px;
            border: 1px solid #d4bcd4;
        }
        .my-logo:hover {
            background: #f5eaf5;
            text-decoration: none;
        }
        .my-logo small {
            font-weight: 400;
            font-size: 0.7rem;
            color: #7a5d7c;
            display: block;
            line-height: 1;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .nav-list {
            list-style: none;
            display: flex;
            gap: 4px;
            flex-wrap: wrap;
        }
        .nav-list li a {
            padding: 6px 14px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #3e2e40;
            background: transparent;
            transition: background 0.2s, color 0.2s;
        }
        .nav-list li a:hover {
            background: #dcc4dc;
            color: #2d1a2e;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.7rem;
            color: #5a3d5c;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 8px;
        }
        .hamburger:hover {
            background: #e8d4e8;
        }
        .breadcrumb {
            padding: 14px 0 6px;
            font-size: 0.85rem;
            color: #6b5a6b;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: #7a4b8c;
        }
        .breadcrumb span {
            color: #8f7a8f;
        }
        main {
            padding: 20px 0 50px;
        }
        h1 {
            font-size: 2.4rem;
            line-height: 1.2;
            color: #3d2a3d;
            margin: 0 0 16px;
            font-weight: 800;
            letter-spacing: -0.3px;
        }
        h2 {
            font-size: 1.7rem;
            margin: 48px 0 16px;
            color: #4d324d;
            border-left: 6px solid #c9a8cb;
            padding-left: 18px;
            font-weight: 700;
        }
        h3 {
            font-size: 1.3rem;
            margin: 32px 0 12px;
            color: #5a3d5a;
            font-weight: 600;
        }
        h4 {
            font-size: 1.1rem;
            margin: 24px 0 10px;
            color: #6b4d6b;
            font-weight: 600;
        }
        p {
            margin: 0 0 18px;
        }
        .hero-img {
            margin: 24px 0 30px;
            border-radius: 16px;
            box-shadow: 0 6px 24px rgba(0,0,0,0.06);
        }
        .last-updated {
            display: inline-block;
            background: #ede4ed;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #5a3d5a;
            margin-bottom: 20px;
        }
        .emoji-big {
            font-size: 1.4rem;
        }
        .highlight-box {
            background: #f3ebf3;
            border-left: 6px solid #b993bc;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 28px 0;
        }
        .interview-card {
            background: #ffffff;
            border: 1px solid #e3d3e3;
            border-radius: 16px;
            padding: 24px;
            margin: 24px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.02);
        }
        .interview-card .quote {
            font-style: italic;
            font-size: 1.05rem;
            color: #3d2a3d;
            border-left: 4px solid #c9a8cb;
            padding-left: 20px;
            margin: 12px 0;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 24px 0;
        }
        .stat-badge {
            background: #e8dce8;
            border-radius: 40px;
            padding: 4px 16px;
            font-size: 0.85rem;
            font-weight: 600;
            color: #4d324d;
            display: inline-block;
        }
        .search-section {
            background: #ede4ed;
            padding: 32px 28px;
            border-radius: 20px;
            margin: 48px 0 24px;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            max-width: 580px;
        }
        .search-form input {
            flex: 1;
            min-width: 180px;
            padding: 14px 20px;
            border: 2px solid #d4bcd4;
            border-radius: 40px;
            font-size: 1rem;
            background: #fff;
            outline: none;
            transition: border 0.2s;
        }
        .search-form input:focus {
            border-color: #9a6b9c;
        }
        .search-form button {
            background: #7a4b8c;
            color: #fff;
            border: none;
            padding: 14px 32px;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #9a6b9c;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 48px 0;
        }
        .feedback-card {
            background: #fff;
            border: 1px solid #e3d3e3;
            border-radius: 20px;
            padding: 28px 24px;
        }
        .feedback-card h3 {
            margin-top: 0;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 12px 16px;
            border: 2px solid #e3d3e3;
            border-radius: 12px;
            font-size: 0.95rem;
            font-family: inherit;
            background: #fcfafc;
            outline: none;
            transition: border 0.2s;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #9a6b9c;
        }
        .feedback-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-card button {
            background: #7a4b8c;
            color: #fff;
            border: none;
            padding: 14px 24px;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            align-self: flex-start;
        }
        .feedback-card button:hover {
            background: #9a6b9c;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #d4bcd4;
            cursor: pointer;
            transition: color 0.15s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #c9a040;
        }
        footer {
            background: #2d1a2e;
            color: #dcc9db;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        footer a {
            color: #d4bcd4;
        }
        footer a:hover {
            color: #f0e0f0;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.04);
            padding: 18px 22px;
            border-radius: 16px;
            border: 1px solid rgba(255,255,255,0.06);
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 0;
        }
        .copyright {
            text-align: center;
            padding-top: 28px;
            margin-top: 28px;
            border-top: 1px solid rgba(255,255,255,0.08);
            font-size: 0.85rem;
            color: #b09cb0;
        }
        @media (max-width: 820px) {
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #f3e7f0;
                padding: 12px 0 16px;
                border-radius: 0 0 20px 20px;
                margin-top: 12px;
            }
            .nav-list.open {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .grid-2 {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .footer-inner {
                grid-template-columns: 1fr;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .feedback-card {
                padding: 18px;
            }
        }
        .mt-1 { margin-top: 12px; }
        .mt-2 { margin-top: 24px; }
        .mb-1 { margin-bottom: 12px; }
        .mb-2 { margin-bottom: 24px; }
        .flex-wrap { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
        .text-muted { color: #6b5a6b; }
        .table-wrap { overflow-x: auto; margin: 20px 0; }
        table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
        th, td { padding: 12px 16px; text-align: left; border-bottom: 1px solid #e3d3e3; }
        th { background: #ede4ed; font-weight: 600; color: #3d2a3d; }
        tr:hover td { background: #f7f0f7; }
