* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f4f4f9;
            color: #1e1e2a;
            line-height: 1.7;
            padding: 0 16px;
        }
        a {
            color: #c53030;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #9b2c2c;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
            border-radius: 24px;
            padding: 24px 32px 40px;
            margin-top: 20px;
            margin-bottom: 40px;
        }
        header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0 16px;
            border-bottom: 2px solid #e8e8f0;
            position: relative;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #c53030, #e53e3e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 4px 12px rgba(197, 48, 48, 0.15);
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #c53030;
            margin-right: 6px;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        nav a {
            font-weight: 600;
            font-size: 0.95rem;
            padding: 6px 12px;
            border-radius: 30px;
            transition: background 0.2s, color 0.2s;
            color: #2d2d3f;
        }
        nav a:hover {
            background: #c53030;
            color: #fff;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #2d2d3f;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #f0f0f5;
        }
        .nav-links {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
        }
        .breadcrumb {
            padding: 16px 0 8px;
            font-size: 0.9rem;
            color: #5a5a72;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            list-style: none;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 8px;
            color: #b0b0c0;
        }
        .breadcrumb a {
            color: #5a5a72;
        }
        .breadcrumb a:hover {
            color: #c53030;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 24px 0 16px;
            background: linear-gradient(135deg, #1e1e2a, #c53030);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 48px 0 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid #c53030;
            color: #1a1a2e;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 32px 0 12px;
            color: #2d2d3f;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 24px 0 8px;
            color: #3d3d5c;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            color: #2a2a3a;
        }
        .hero-img {
            margin: 32px 0 24px;
            border-radius: 16px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
        }
        .last-updated {
            display: inline-block;
            background: #f0f0f8;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #5a5a72;
            margin-bottom: 20px;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(197, 48, 48, 0.08), rgba(197, 48, 48, 0.02));
            padding: 4px 12px;
            border-radius: 6px;
            font-weight: 600;
        }
        .stat-box {
            background: #f9f9ff;
            border-left: 4px solid #c53030;
            padding: 20px 24px;
            border-radius: 12px;
            margin: 24px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
        }
        .stat-box p {
            margin-bottom: 4px;
        }
        .emoji-big {
            font-size: 1.4rem;
            margin-right: 6px;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            margin: 32px 0;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-section {
            background: #f4f4fb;
            border-radius: 20px;
            padding: 28px 32px;
            margin: 40px 0 32px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 16px;
        }
        .search-section input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: 2px solid #ddddee;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
            background: #fff;
        }
        .search-section input:focus {
            border-color: #c53030;
        }
        .search-section button {
            padding: 14px 36px;
            background: #c53030;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-section button:hover {
            background: #9b2c2c;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 40px 0;
        }
        .card-feedback {
            background: #fafaff;
            border-radius: 20px;
            padding: 24px 28px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
            border: 1px solid #ececf5;
        }
        .card-feedback h3 {
            margin-top: 0;
            font-size: 1.4rem;
        }
        .card-feedback textarea,
        .card-feedback input[type="number"],
        .card-feedback input[type="text"] {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #ddddee;
            border-radius: 12px;
            font-size: 1rem;
            margin-bottom: 12px;
            outline: none;
            transition: border 0.2s;
            background: #fff;
            font-family: inherit;
        }
        .card-feedback textarea:focus,
        .card-feedback input:focus {
            border-color: #c53030;
        }
        .card-feedback textarea {
            min-height: 100px;
            resize: vertical;
        }
        .card-feedback button {
            padding: 12px 32px;
            background: #c53030;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .card-feedback button:hover {
            background: #9b2c2c;
            transform: scale(1.02);
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #f5a623;
            margin-bottom: 12px;
            cursor: pointer;
        }
        .rating-stars i {
            transition: transform 0.15s, color 0.15s;
        }
        .rating-stars i:hover {
            transform: scale(1.2);
        }
        .rating-stars i.active {
            color: #f5a623;
        }
        .rating-stars i.inactive {
            color: #d0d0e0;
        }
        friend-link {
            display: block;
            background: #f0f0f8;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 32px 0 16px;
            font-style: normal;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 16px 4px 0;
            font-weight: 600;
        }
        footer {
            border-top: 2px solid #e8e8f0;
            padding: 28px 0 12px;
            margin-top: 32px;
            text-align: center;
            color: #5a5a72;
            font-size: 0.9rem;
        }
        footer p {
            margin-bottom: 6px;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .container {
                padding: 16px 16px 32px;
                margin-top: 12px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .grid-2 {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .search-section {
                padding: 20px;
            }
            .search-section button {
                width: 100%;
                justify-content: center;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #ffffff;
                padding: 16px 0;
                border-top: 1px solid #e8e8f0;
                margin-top: 12px;
            }
            .nav-links.open {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            header {
                align-items: center;
            }
            .my-logo {
                font-size: 1.6rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
            .stat-box {
                padding: 16px 18px;
            }
            .card-feedback {
                padding: 18px 16px;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 8px;
            }
            .container {
                padding: 12px 10px 24px;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            h3 {
                font-size: 1.1rem;
            }
            p {
                font-size: 0.95rem;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        .inline-link-icon {
            margin-right: 4px;
        }
        .btn-icon {
            margin-right: 6px;
        }
        .badge {
            display: inline-block;
            background: #c53030;
            color: #fff;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            background: #fafaff;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid #e8e8f0;
        }
        th {
            background: #c53030;
            color: #fff;
            font-weight: 700;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #f0f0fa;
        }
        .comment-list {
            margin-top: 16px;
            max-height: 240px;
            overflow-y: auto;
            background: #f8f8ff;
            border-radius: 12px;
            padding: 12px 16px;
        }
        .comment-item {
            padding: 8px 0;
            border-bottom: 1px solid #e8e8f0;
            font-size: 0.9rem;
        }
        .comment-item:last-child {
            border-bottom: none;
        }
        .comment-item strong {
            color: #c53030;
        }
        .toast {
            background: #1e1e2a;
            color: #fff;
            padding: 10px 20px;
            border-radius: 40px;
            font-size: 0.85rem;
            display: inline-block;
            margin-top: 8px;
        }
