        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
            background: #0b0e14;
            color: #e8edf0;
            line-height: 1.7;
            padding: 0;
            margin: 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f5c542;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #ffffff;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 3px solid #e63946;
            padding-bottom: 0.5rem;
            display: inline-block;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #e63946;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #f5c542;
        }
        h4 {
            font-size: 1.15rem;
            color: #a8d8ea;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        .skip-link {
            position: absolute;
            top: -100px;
            left: 0;
            background: #e63946;
            color: #fff;
            padding: 0.5rem 1.2rem;
            z-index: 10000;
            font-weight: 600;
            border-radius: 0 0 8px 0;
        }
        .skip-link:focus {
            top: 0;
        }
        .site-header {
            background: #141a22;
            padding: 0.6rem 1.5rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            border-bottom: 2px solid #e63946;
            position: sticky;
            top: 0;
            z-index: 999;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #e63946, #f5c542);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            -webkit-text-fill-color: #e63946;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .nav-list {
            list-style: none;
            display: flex;
            gap: 1.2rem;
            padding: 0;
            margin: 0;
        }
        .nav-list li a {
            color: #cbd5e1;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s, color 0.2s;
        }
        .nav-list li a:hover,
        .nav-list li a:focus {
            background: #e63946;
            color: #fff;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: transparent;
            border: 2px solid #e63946;
            color: #e63946;
            font-size: 1.6rem;
            padding: 0.2rem 0.7rem;
            border-radius: 6px;
            cursor: pointer;
            transition: 0.2s;
        }
        .hamburger:hover {
            background: #e63946;
            color: #fff;
        }
        .breadcrumb-wrap {
            background: #1e2630;
            padding: 0.6rem 1.5rem;
            font-size: 0.9rem;
            border-bottom: 1px solid #2a3440;
            overflow-x: auto;
            white-space: nowrap;
        }
        .breadcrumb-wrap ol {
            list-style: none;
            display: flex;
            gap: 0.5rem;
            align-items: center;
            padding: 0;
            margin: 0;
        }
        .breadcrumb-wrap ol li+li::before {
            content: "/";
            margin-right: 0.5rem;
            color: #6b7a8f;
        }
        .breadcrumb-wrap a {
            color: #a8c0d0;
        }
        .breadcrumb-wrap a:hover {
            color: #f5c542;
        }
        .breadcrumb-wrap .current {
            color: #e63946;
            font-weight: 600;
        }
        .main-wrapper {
            flex: 1;
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1.5rem 3rem;
            width: 100%;
        }
        .search-section {
            background: #1a222c;
            border-radius: 14px;
            padding: 2rem;
            margin-bottom: 2.5rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1.2rem;
            border: 1px solid #2e3a48;
        }
        .search-section label {
            font-weight: 600;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form {
            display: flex;
            flex: 1;
            gap: 0.6rem;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            min-width: 180px;
            padding: 0.7rem 1rem;
            border-radius: 8px;
            border: 2px solid #2e3a48;
            background: #0f151c;
            color: #fff;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .search-form input:focus {
            border-color: #e63946;
            outline: none;
        }
        .search-form button {
            background: #e63946;
            color: #fff;
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #c1121f;
            transform: scale(1.02);
        }
        .featured-image {
            margin: 2rem 0 2.5rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.7);
            background: #141c26;
            padding: 0.5rem;
        }
        .featured-image img {
            width: 100%;
            border-radius: 12px;
        }
        .featured-image figcaption {
            text-align: center;
            font-size: 0.9rem;
            color: #a0b3c9;
            padding: 0.6rem 0 0.2rem;
            font-style: italic;
        }
        .info-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.8rem 0;
            background: #151d27;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        }
        .info-table th,
        .info-table td {
            padding: 0.9rem 1.2rem;
            text-align: left;
            border-bottom: 1px solid #25303e;
        }
        .info-table th {
            background: #1f2a36;
            color: #f5c542;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.85rem;
        }
        .info-table tr:last-child td {
            border-bottom: none;
        }
        .info-table tr:hover td {
            background: #1c2633;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 3rem 0 2rem;
        }
        .card {
            background: #151d27;
            border-radius: 16px;
            padding: 2rem;
            border: 1px solid #25303e;
            transition: box-shadow 0.3s;
        }
        .card:hover {
            box-shadow: 0 8px 30px rgba(230, 57, 70, 0.15);
        }
        .card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .card form {
            display: flex;
            flex-direction: column;
            gap: 0.9rem;
            margin-top: 1rem;
        }
        .card form input,
        .card form textarea,
        .card form select {
            padding: 0.7rem 1rem;
            border-radius: 8px;
            border: 2px solid #2e3a48;
            background: #0f151c;
            color: #fff;
            font-size: 0.95rem;
            font-family: inherit;
            transition: border 0.3s;
        }
        .card form input:focus,
        .card form textarea:focus,
        .card form select:focus {
            border-color: #f5c542;
            outline: none;
        }
        .card form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .card form button {
            background: #e63946;
            color: #fff;
            border: none;
            padding: 0.7rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            align-self: flex-start;
        }
        .card form button:hover {
            background: #c1121f;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.3rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #445566;
            cursor: pointer;
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5c542;
            transform: scale(1.1);
        }
        .site-footer {
            background: #0f151c;
            border-top: 2px solid #1e2a36;
            padding: 2.5rem 1.5rem 1.5rem;
            margin-top: 3rem;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        .footer-inner section {
            flex: 1 1 240px;
        }
        .footer-inner h4 {
            color: #f5c542;
            margin-top: 0;
            font-size: 1.1rem;
        }
        .footer-inner ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-inner ul li {
            margin-bottom: 0.4rem;
        }
        .footer-inner ul li a {
            color: #a0b3c9;
            font-size: 0.95rem;
        }
        .footer-inner ul li a:hover {
            color: #f5c542;
        }
        friend-link {
            display: block;
            margin-top: 1.2rem;
            padding: 1rem 0;
            border-top: 1px solid #1e2a36;
            font-size: 0.95rem;
            color: #a0b3c9;
        }
        friend-link a {
            color: #f5c542;
            margin: 0 0.3rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            font-size: 0.85rem;
            color: #6b7a8f;
            border-top: 1px solid #1a232f;
            margin-top: 1.5rem;
        }
        .copyright strong {
            color: #a0b3c9;
        }
        @media (max-width: 820px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .site-header {
                padding: 0.5rem 1rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 680px) {
            .hamburger {
                display: block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #141a22;
                padding: 1rem 0.5rem;
                border-radius: 0 0 12px 12px;
                gap: 0.3rem;
                margin-top: 0.5rem;
                border-top: 1px solid #2a3440;
            }
            .nav-list.show {
                display: flex;
            }
            .nav-list li a {
                display: block;
                padding: 0.6rem 1rem;
            }
            .nav-wrapper {
                flex-wrap: wrap;
            }
            .breadcrumb-wrap {
                font-size: 0.8rem;
                padding: 0.4rem 1rem;
            }
            .main-wrapper {
                padding: 1.2rem 1rem 2rem;
            }
            .search-section {
                flex-direction: column;
                align-items: stretch;
                padding: 1.2rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                justify-content: center;
            }
            .info-table th,
            .info-table td {
                padding: 0.5rem 0.7rem;
                font-size: 0.85rem;
            }
            .card {
                padding: 1.2rem;
            }
            .footer-inner {
                flex-direction: column;
                gap: 1.2rem;
            }
        }
        @media (max-width: 440px) {
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.2rem;
            }
            h3 {
                font-size: 1.1rem;
            }
            p {
                font-size: 0.95rem;
            }
            .my-logo {
                font-size: 1.1rem;
            }
            .my-logo i {
                font-size: 1.2rem;
            }
        }
        .last-updated {
            display: inline-block;
            background: #1f2a36;
            padding: 0.3rem 1rem;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #a0b3c9;
            margin-bottom: 1.2rem;
        }
        .last-updated i {
            margin-right: 0.4rem;
            color: #f5c542;
        }
        .highlight {
            color: #f5c542;
            font-weight: 600;
        }
        .badge-red {
            background: #e63946;
            color: #fff;
            padding: 0.15rem 0.7rem;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            display: inline-block;
        }
        .emoji-lg {
            font-size: 1.6rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin: 2rem 0;
        }
        @media (max-width: 700px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .tip-box {
            background: #1a2632;
            border-left: 6px solid #f5c542;
            padding: 1.2rem 1.5rem;
            border-radius: 0 12px 12px 0;
            margin: 1.8rem 0;
        }
        .tip-box strong {
            color: #f5c542;
        }
        .quote-box {
            background: #1c2530;
            padding: 1.5rem 2rem;
            border-radius: 16px;
            font-style: italic;
            border: 1px solid #2e3a48;
            margin: 1.8rem 0;
            position: relative;
        }
        .quote-box::before {
            content: "\201C";
            font-size: 4rem;
            color: #e63946;
            position: absolute;
            top: -0.2rem;
            left: 0.8rem;
            line-height: 1;
            font-family: Georgia, serif;
            opacity: 0.3;
        }
        .quote-box p {
            margin-bottom: 0.4rem;
        }
        .quote-box .author {
            font-weight: 600;
            color: #f5c542;
            font-style: normal;
        }
        .btn-top {
            position: fixed;
            bottom: 1.5rem;
            right: 1.5rem;
            background: #e63946;
            color: #fff;
            border: none;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            font-size: 1.4rem;
            cursor: pointer;
            box-shadow: 0 4px 16px rgba(230, 57, 70, 0.4);
            transition: 0.3s;
            z-index: 99;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .btn-top:hover {
            background: #c1121f;
            transform: translateY(-4px);
        }
