        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0b0d17;
            color: #e8eaf0;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f0c27f;
            text-decoration: none;
            transition: color .25s ease;
        }
        a:hover,
        a:focus {
            color: #ffb347;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            margin-top: 1.8rem;
            margin-bottom: 0.65rem;
            color: #f5f3f0;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.5rem;
        }
        h2 {
            font-size: 1.9rem;
            border-left: 5px solid #f0c27f;
            padding-left: 0.9rem;
        }
        h3 {
            font-size: 1.5rem;
        }
        h4 {
            font-size: 1.2rem;
            color: #f0c27f;
        }
        p {
            margin-bottom: 1.1rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        header {
            background: linear-gradient(145deg, #131626, #1a1e35);
            border-bottom: 1px solid #2e3350;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 0.8rem 0;
            gap: 0.5rem 1rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #f0c27f, #fc5c7d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(252, 92, 125, 0.25);
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f0c27f;
            font-size: 1.7rem;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: transparent;
            border: 1px solid #3d4360;
            color: #f0f0f0;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #2a2f4a;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 0.2rem 0.8rem;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: #cfd4e6;
            font-weight: 500;
            padding: 0.4rem 0.9rem;
            border-radius: 30px;
            transition: all 0.25s;
            font-size: 0.95rem;
            white-space: nowrap;
        }
        .nav-menu a:hover,
        .nav-menu a.active {
            background: #f0c27f22;
            color: #f0c27f;
            text-decoration: none;
        }
        .breadcrumb-wrap {
            background: #12162a;
            padding: 0.6rem 0;
            border-bottom: 1px solid #22273f;
            font-size: 0.85rem;
        }
        .breadcrumb-wrap .container {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb-wrap a {
            color: #9da4c5;
        }
        .breadcrumb-wrap a:hover {
            color: #f0c27f;
        }
        .breadcrumb-wrap span {
            color: #6b7299;
        }
        .breadcrumb-wrap .sep {
            color: #4a5177;
            margin: 0 0.2rem;
        }
        main {
            flex: 1;
            padding: 2rem 0 3rem;
        }
        .search-section {
            background: #141a30;
            border-radius: 18px;
            padding: 1.6rem 2rem;
            margin-bottom: 2.8rem;
            border: 1px solid #2a3050;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
        }
        .search-section form {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .search-section input[type="text"] {
            flex: 1 1 240px;
            padding: 0.8rem 1.2rem;
            border-radius: 40px;
            border: 1px solid #3b4166;
            background: #0d1123;
            color: #f0f2fa;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-section input[type="text"]:focus {
            border-color: #f0c27f;
        }
        .search-section button {
            background: linear-gradient(135deg, #f0c27f, #e09f5e);
            border: none;
            color: #0b0d17;
            font-weight: 700;
            padding: 0.8rem 2rem;
            border-radius: 40px;
            cursor: pointer;
            font-size: 1rem;
            transition: transform 0.2s, box-shadow 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-section button:hover {
            transform: scale(1.02);
            box-shadow: 0 6px 20px rgba(240, 194, 127, 0.3);
        }
        .hero {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
            align-items: center;
            margin-bottom: 3rem;
            background: linear-gradient(135deg, #10142b, #1b1f3b);
            border-radius: 24px;
            padding: 2rem 2.5rem;
            border: 1px solid #2a3050;
        }
        .hero-content h1 {
            font-size: 2.6rem;
            margin-top: 0;
            background: linear-gradient(135deg, #f5e7d3, #f0c27f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-content p {
            font-size: 1.1rem;
            color: #bcc2de;
        }
        .hero-img {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
            background: #1e2340;
        }
        .hero-img img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.4s;
        }
        .hero-img:hover img {
            transform: scale(1.02);
        }
        .section-card {
            background: #11162b;
            border-radius: 20px;
            padding: 2rem 2.2rem;
            margin-bottom: 2.5rem;
            border: 1px solid #232942;
            transition: border-color 0.3s;
        }
        .section-card:hover {
            border-color: #3b4368;
        }
        .section-card h2 {
            margin-top: 0;
        }
        .info-highlight {
            background: #1a1f3a;
            border-left: 6px solid #f0c27f;
            border-radius: 0 16px 16px 0;
            padding: 1.2rem 1.8rem;
            margin: 1.6rem 0;
        }
        .info-highlight strong {
            color: #f0c27f;
        }
        .link-inline-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
            margin: 1.2rem 0;
            padding: 0.6rem 0;
            list-style: none;
        }
        .link-inline-list li {
            display: inline;
        }
        .link-inline-list a {
            font-weight: 500;
            background: #1e2342;
            padding: 0.25rem 1rem;
            border-radius: 40px;
            font-size: 0.9rem;
            border: 1px solid #30375a;
            transition: all 0.2s;
        }
        .link-inline-list a:hover {
            background: #2a3155;
            border-color: #f0c27f;
            text-decoration: none;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            background: #0d1125;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 0.75rem 1rem;
            text-align: left;
            border-bottom: 1px solid #222844;
        }
        th {
            background: #1c2240;
            color: #f0c27f;
            font-weight: 600;
        }
        tr:hover td {
            background: #171d36;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 1.8rem 0;
        }
        .feedback-card {
            background: #0e1329;
            border-radius: 18px;
            padding: 1.6rem 1.8rem;
            border: 1px solid #252b4a;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 0.8rem;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            background: #0a0e1f;
            border: 1px solid #2f365a;
            border-radius: 10px;
            padding: 0.65rem 1rem;
            color: #e8eaf0;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.3s;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #f0c27f;
        }
        .feedback-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .feedback-card button {
            align-self: flex-start;
            background: #f0c27f;
            color: #0b0d17;
            font-weight: 700;
            padding: 0.65rem 2rem;
            border: none;
            border-radius: 40px;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
        }
        .feedback-card button:hover {
            background: #ffb347;
            transform: scale(1.02);
        }
        .score-display {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin: 0.5rem 0;
            font-size: 1.1rem;
        }
        .score-stars {
            color: #f0c27f;
            letter-spacing: 2px;
        }
        .featured-img-wrap {
            margin: 2rem 0;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
            background: #1a1f38;
        }
        .featured-img-wrap img {
            width: 100%;
            height: auto;
            max-height: 500px;
            object-fit: cover;
        }
        .featured-img-wrap figcaption {
            padding: 0.7rem 1.2rem;
            background: #0e1329;
            font-size: 0.9rem;
            color: #aab1d4;
            border-top: 1px solid #252b4a;
        }
        .last-updated {
            display: inline-block;
            background: #1a1f38;
            padding: 0.3rem 1.2rem;
            border-radius: 40px;
            font-size: 0.8rem;
            color: #9da4c5;
            border: 1px solid #2a3155;
            margin-bottom: 1.2rem;
        }
        footer {
            background: #0a0d1b;
            border-top: 1px solid #1f2440;
            padding: 2.5rem 0 1.5rem;
            margin-top: 2rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .footer-grid h4 {
            color: #f0c27f;
            margin-top: 0;
            font-size: 1.1rem;
        }
        .footer-grid ul {
            list-style: none;
            padding-left: 0;
        }
        .footer-grid ul li {
            margin-bottom: 0.4rem;
        }
        .footer-grid ul li a {
            color: #b0b7d5;
            font-size: 0.9rem;
        }
        .footer-grid ul li a:hover {
            color: #f0c27f;
        }
        friend-link {
            display: block;
            margin-top: 1.2rem;
            padding-top: 1.2rem;
            border-top: 1px solid #1f2440;
            font-size: 0.9rem;
        }
        friend-link a {
            color: #b0b7d5;
            margin-right: 1.5rem;
        }
        friend-link a:hover {
            color: #f0c27f;
        }
        .copyright {
            text-align: center;
            color: #5e6588;
            font-size: 0.8rem;
            padding-top: 1.5rem;
            margin-top: 1.5rem;
            border-top: 1px solid #1a1f36;
        }
        @media (max-width: 900px) {
            .hero {
                grid-template-columns: 1fr;
                padding: 1.5rem;
            }
            .hero-content h1 {
                font-size: 2rem;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 700px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #141a2e;
                padding: 1rem 0.5rem;
                border-radius: 0 0 16px 16px;
                gap: 0.2rem;
                border-top: 1px solid #2e3350;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                width: 100%;
                text-align: center;
                padding: 0.6rem 0;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .section-card {
                padding: 1.2rem 1.2rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
            .search-section {
                padding: 1.2rem;
            }
            .search-section form {
                flex-direction: column;
            }
            .search-section input[type="text"] {
                width: 100%;
            }
            .search-section button {
                width: 100%;
                justify-content: center;
            }
        }
        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 1.5rem;
            }
            .container {
                padding: 0 0.8rem;
            }
            .feedback-card {
                padding: 1rem;
            }
        }
        .tagline {
            font-size: 1rem;
            color: #bcc2de;
            letter-spacing: 0.3px;
        }
        .emoji-big {
            font-size: 1.4rem;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.6rem;
        }
        .pill {
            display: inline-block;
            background: #1f2544;
            padding: 0.15rem 0.8rem;
            border-radius: 40px;
            font-size: 0.75rem;
            color: #bcc2de;
        }
