        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            background: #0b0d10;
            color: #e8eaed;
            line-height: 1.75;
            font-size: 1.05rem;
            padding: 0;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: #f0483e;
            text-decoration: none;
            transition: color .2s;
        }
        a:hover,
        a:focus {
            color: #ff7a3d;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #fff;
            margin-top: 1.8rem;
            margin-bottom: .6rem;
        }
        h1 {
            font-size: 2.4rem;
            border-left: 6px solid #f0483e;
            padding-left: 1rem;
            margin-top: .5rem;
        }
        h2 {
            font-size: 1.9rem;
            border-bottom: 2px solid #2a2e35;
            padding-bottom: .4rem;
            margin-top: 2.8rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #f0b43e;
        }
        h4 {
            font-size: 1.2rem;
            color: #aab0b8;
        }
        p {
            margin-bottom: 1.2rem;
        }
        ul,
        ol {
            margin: .8rem 0 1.4rem 1.8rem;
        }
        li {
            margin-bottom: .4rem;
        }
        strong,
        b {
            color: #ffb347;
            font-weight: 700;
        }
        em {
            color: #8ab4f8;
            font-style: italic;
        }
        hr {
            border: none;
            border-top: 1px solid #2a2e35;
            margin: 2.4rem 0;
        }
        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: #14181c;
            border-bottom: 3px solid #f0483e;
            padding: .6rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(6px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, .6);
        }
        .header-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: .8rem 1.6rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f0483e, #f0b43e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -.5px;
            text-transform: uppercase;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            -webkit-text-fill-color: #f0483e;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: .9;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f0483e;
            color: #f0483e;
            font-size: 1.5rem;
            padding: .3rem .8rem;
            border-radius: 6px;
            cursor: pointer;
            transition: .2s;
        }
        .nav-toggle:hover {
            background: #f0483e;
            color: #14181c;
        }
        nav ul {
            display: flex;
            flex-wrap: wrap;
            gap: .2rem 1rem;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        nav ul li a {
            color: #c8ccd0;
            font-weight: 500;
            padding: .3rem .2rem;
            border-bottom: 2px solid transparent;
            transition: .2s;
            font-size: .95rem;
        }
        nav ul li a:hover {
            color: #f0483e;
            border-bottom-color: #f0483e;
            text-decoration: none;
        }
        .nav-active a {
            color: #f0483e;
            border-bottom-color: #f0483e;
        }
        .breadcrumb {
            background: #1a1e24;
            padding: .6rem 1rem;
            border-radius: 8px;
            margin: 1.2rem 0 1.8rem;
            font-size: .9rem;
            display: flex;
            flex-wrap: wrap;
            gap: .3rem .6rem;
            color: #9aa0a8;
        }
        .breadcrumb a {
            color: #f0483e;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #6c757d;
        }
        .search-wrap {
            background: #1a1e24;
            border-radius: 10px;
            padding: 1.6rem 2rem;
            margin: 2rem 0;
            display: flex;
            flex-wrap: wrap;
            gap: .8rem;
            align-items: center;
            border: 1px solid #2a2e35;
        }
        .search-wrap label {
            font-weight: 600;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 8px;
            color: #f0b43e;
        }
        .search-wrap input[type="text"] {
            flex: 1 1 260px;
            padding: .7rem 1rem;
            border-radius: 6px;
            border: 1px solid #3a3f47;
            background: #0b0d10;
            color: #e8eaed;
            font-size: 1rem;
            transition: .2s;
        }
        .search-wrap input[type="text"]:focus {
            outline: none;
            border-color: #f0483e;
            box-shadow: 0 0 0 3px rgba(240, 72, 62, .25);
        }
        .search-wrap button {
            background: #f0483e;
            color: #fff;
            border: none;
            padding: .7rem 1.8rem;
            border-radius: 6px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: .2s;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .search-wrap button:hover {
            background: #d63a2e;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2.8rem 0;
        }
        @media (max-width:700px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .card {
            background: #14181c;
            border: 1px solid #2a2e35;
            border-radius: 12px;
            padding: 1.8rem 2rem;
            transition: border-color .2s;
        }
        .card:hover {
            border-color: #f0483e;
        }
        .card h3 {
            margin-top: 0;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .card form {
            display: flex;
            flex-direction: column;
            gap: .8rem;
            margin-top: 1rem;
        }
        .card input,
        .card textarea,
        .card select {
            padding: .7rem 1rem;
            border-radius: 6px;
            border: 1px solid #3a3f47;
            background: #0b0d10;
            color: #e8eaed;
            font-size: .95rem;
            font-family: inherit;
            transition: .2s;
            width: 100%;
        }
        .card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .card input:focus,
        .card textarea:focus,
        .card select:focus {
            outline: none;
            border-color: #f0483e;
            box-shadow: 0 0 0 3px rgba(240, 72, 62, .2);
        }
        .card button {
            background: #f0483e;
            color: #fff;
            border: none;
            padding: .7rem 1.6rem;
            border-radius: 6px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: .2s;
            align-self: flex-start;
        }
        .card button:hover {
            background: #d63a2e;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            gap: 4px;
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
        }
        .star-rating i {
            transition: color .15s;
        }
        .star-rating i.active {
            color: #f0b43e;
        }
        .featured-img {
            margin: 2rem 0;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, .5);
            background: #1a1e24;
            padding: 4px;
        }
        .featured-img img {
            border-radius: 10px;
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .featured-img figcaption {
            padding: .6rem 1rem .4rem;
            font-size: .9rem;
            color: #9aa0a8;
            text-align: center;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.6rem 0;
            background: #14181c;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid #2a2e35;
        }
        th,
        td {
            padding: .7rem 1rem;
            text-align: left;
            border-bottom: 1px solid #2a2e35;
        }
        th {
            background: #1f242b;
            color: #f0b43e;
            font-weight: 700;
        }
        tr:hover td {
            background: #1a1e24;
        }
        footer {
            background: #0f1216;
            border-top: 3px solid #2a2e35;
            padding: 2.4rem 0 1.6rem;
            margin-top: 3.6rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        @media (max-width:700px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
        .footer-grid h4 {
            color: #f0b43e;
            margin-top: 0;
            font-size: 1.1rem;
        }
        friend-link {
            display: block;
            background: #1a1e24;
            border-radius: 10px;
            padding: 1.2rem 1.6rem;
            margin: 1.4rem 0;
            border-left: 4px solid #f0483e;
            font-size: .95rem;
        }
        friend-link a {
            display: inline-block;
            margin: .2rem .8rem .2rem 0;
            padding: .2rem .4rem;
        }
        .copyright {
            text-align: center;
            border-top: 1px solid #2a2e35;
            padding-top: 1.6rem;
            margin-top: 1.6rem;
            color: #7a808a;
            font-size: .9rem;
        }
        .copyright a {
            color: #f0483e;
        }
        .last-updated {
            background: #1a1e24;
            display: inline-block;
            padding: .3rem 1rem;
            border-radius: 30px;
            font-size: .85rem;
            color: #9aa0a8;
            margin-bottom: 1.2rem;
            border: 1px solid #2a2e35;
        }
        @media (max-width:768px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            body {
                font-size: .98rem;
            }
            .nav-toggle {
                display: inline-block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #14181c;
                padding: 1rem 0 .6rem;
                border-top: 1px solid #2a2e35;
                margin-top: .6rem;
            }
            nav ul.open {
                display: flex;
            }
            nav ul li a {
                padding: .5rem 1rem;
                display: block;
            }
            .header-inner {
                align-items: center;
            }
            .search-wrap {
                padding: 1.2rem;
            }
            .feedback-grid {
                gap: 1.2rem;
            }
            .card {
                padding: 1.2rem;
            }
            .footer-grid {
                gap: 1.2rem;
            }
        }
        @media (min-width:769px) {
            nav ul {
                display: flex !important;
            }
        }
        .text-accent {
            color: #f0b43e;
        }
        .text-red {
            color: #f0483e;
        }
        .mt-2 {
            margin-top: 1.6rem;
        }
        .mb-1 {
            margin-bottom: .8rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .badge {
            display: inline-block;
            background: #f0483e;
            color: #fff;
            font-size: .7rem;
            font-weight: 700;
            padding: .15rem .6rem;
            border-radius: 30px;
            letter-spacing: .3px;
        }
        .badge.green {
            background: #2a9d8f;
        }
        .badge.yellow {
            background: #e9c46a;
            color: #1a1e24;
        }
