        *,
        *::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, sans-serif;
            background: #0b0a0c;
            color: #e8e4e0;
            line-height: 1.75;
            padding: 0 16px;
            max-width: 1280px;
            margin: 0 auto;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f05454;
            text-decoration: none;
            transition: color 0.25s ease, transform 0.2s ease;
        }
        a:hover,
        a:focus {
            color: #ff8a80;
            transform: translateY(-1px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #f5f0eb;
            margin-top: 1.6em;
            margin-bottom: 0.6em;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 4px solid #c0392b;
            display: inline-block;
            padding-bottom: 0.2em;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 6px solid #e74c3c;
            padding-left: 0.7rem;
        }
        h3 {
            font-size: 1.35rem;
            color: #f0c0b0;
        }
        h4 {
            font-size: 1.1rem;
            color: #d9b8a8;
        }
        p {
            margin-bottom: 1.2rem;
        }
        blockquote {
            border-left: 4px solid #e74c3c;
            background: #1e1a1c;
            padding: 0.8rem 1.2rem;
            margin: 1.2rem 0;
            border-radius: 0 8px 8px 0;
            font-style: italic;
            color: #cfc5c0;
        }
        hr {
            border: none;
            height: 2px;
            background: linear-gradient(90deg, #c0392b, transparent);
            margin: 2rem 0;
        }
        header {
            padding: 20px 0 10px;
            border-bottom: 2px solid #2c2022;
            position: relative;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #e74c3c, #f39c12);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(231, 76, 60, 0.25);
            transition: transform 0.3s ease;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .my-logo small {
            font-size: 0.55rem;
            -webkit-text-fill-color: #a89a92;
            color: #a89a92;
            display: block;
            letter-spacing: 1px;
            font-weight: 400;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .nav-links {
            display: flex;
            gap: 8px 20px;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
        }
        .nav-links li a {
            padding: 6px 12px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            color: #ddd6d0;
            background: transparent;
            transition: background 0.25s, color 0.25s;
        }
        .nav-links li a:hover {
            background: #c0392b;
            color: #fff;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #e8e4e0;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #2c2022;
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            font-size: 0.85rem;
            padding: 10px 0 6px;
            color: #9a8e88;
            list-style: none;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #e74c3c;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #bfa89c;
        }
        .breadcrumb a:hover {
            color: #f05454;
        }
        .search-form {
            display: flex;
            gap: 6px;
            max-width: 400px;
            margin: 18px 0 10px;
        }
        .search-form input[type="text"] {
            flex: 1;
            padding: 10px 16px;
            border-radius: 30px;
            border: 2px solid #3d2e2a;
            background: #1a1618;
            color: #f0ebe7;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #e74c3c;
        }
        .search-form button {
            padding: 10px 22px;
            border-radius: 30px;
            border: none;
            background: #c0392b;
            color: #fff;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.25s, transform 0.2s;
        }
        .search-form button:hover {
            background: #e74c3c;
            transform: scale(1.02);
        }
        main {
            flex: 1;
            padding: 24px 0 40px;
        }
        .featured-image {
            margin: 20px 0 30px;
            border-radius: 16px;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
            background: #1a1618;
            padding: 8px;
        }
        .featured-image img {
            border-radius: 10px;
            width: 100%;
            max-height: 520px;
            object-fit: cover;
        }
        .featured-image figcaption {
            font-size: 0.85rem;
            color: #a89a92;
            padding: 10px 8px 4px;
            text-align: center;
        }
        .update-badge {
            display: inline-block;
            background: #2c2022;
            padding: 4px 16px;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #cfb8b0;
            margin-bottom: 12px;
        }
        .update-badge i {
            margin-right: 6px;
            color: #e74c3c;
        }
        section {
            margin-bottom: 3rem;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.2rem 0;
            background: #1a1618;
            border-radius: 10px;
            overflow: hidden;
        }
        .data-table th,
        .data-table td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid #2c2022;
        }
        .data-table th {
            background: #2c2022;
            color: #f0c0b0;
            font-weight: 700;
        }
        .data-table tr:hover td {
            background: #252022;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
            margin: 20px 0;
        }
        .card {
            background: #1a1618;
            border-radius: 14px;
            padding: 20px 18px;
            border: 1px solid #2c2022;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 32px rgba(192, 57, 43, 0.2);
            border-color: #c0392b;
        }
        .card h3,
        .card h4 {
            margin-top: 0;
        }
        .feedback-forms {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 30px 0;
        }
        @media (max-width:720px) {
            .feedback-forms {
                grid-template-columns: 1fr;
            }
        }
        .form-box {
            background: #1a1618;
            padding: 24px 22px;
            border-radius: 16px;
            border: 1px solid #2c2022;
        }
        .form-box h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .form-box label {
            display: block;
            margin: 12px 0 4px;
            font-weight: 600;
            color: #cfc5c0;
        }
        .form-box input,
        .form-box textarea,
        .form-box select {
            width: 100%;
            padding: 10px 14px;
            border-radius: 10px;
            border: 2px solid #3d2e2a;
            background: #0f0c0e;
            color: #f0ebe7;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .form-box input:focus,
        .form-box textarea:focus,
        .form-box select:focus {
            border-color: #e74c3c;
        }
        .form-box textarea {
            min-height: 80px;
            resize: vertical;
        }
        .form-box .btn-submit {
            margin-top: 16px;
            padding: 10px 30px;
            border-radius: 30px;
            border: none;
            background: #c0392b;
            color: #fff;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.25s, transform 0.2s;
        }
        .form-box .btn-submit:hover {
            background: #e74c3c;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.6rem;
            color: #f39c12;
            cursor: pointer;
            margin: 6px 0 10px;
        }
        .star-rating i {
            transition: transform 0.2s, color 0.2s;
        }
        .star-rating i:hover,
        .star-rating i.active {
            transform: scale(1.25);
            color: #f1c40f;
        }
        friend-link {
            display: block;
            padding: 20px 0 10px;
            border-top: 2px solid #2c2022;
            margin-top: 20px;
        }
        friend-link .friend-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            list-style: none;
            padding: 12px 0 0;
        }
        friend-link .friend-list li a {
            color: #bfa89c;
            font-weight: 500;
            padding: 4px 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.25s;
        }
        friend-link .friend-list li a:hover {
            border-bottom-color: #e74c3c;
            color: #f0ccc0;
        }
        footer {
            border-top: 2px solid #2c2022;
            padding: 24px 0 32px;
            font-size: 0.9rem;
            color: #90807a;
            text-align: center;
        }
        footer .copyright {
            margin-top: 12px;
            font-size: 0.82rem;
        }
        @media (max-width:860px) {
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a1618;
                padding: 16px 12px;
                border-radius: 12px;
                margin-top: 8px;
                border: 1px solid #2c2022;
            }
            .nav-links.show {
                display: flex;
            }
            .hamburger {
                display: inline-block;
            }
            .header-top {
                flex-wrap: wrap;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .feedback-forms {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width:480px) {
            body {
                padding: 0 10px;
            }
            h1 {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
            .data-table th,
            .data-table td {
                padding: 8px 10px;
                font-size: 0.8rem;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0b0a0c;
        }
        ::-webkit-scrollbar-thumb {
            background: #3d2e2a;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #c0392b;
        }
        .text-accent {
            color: #f05454;
        }
        .text-gold {
            color: #f39c12;
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .gap-8 {
            gap: 8px;
        }
        .btn-link {
            display: inline-block;
            padding: 6px 20px;
            border-radius: 30px;
            background: #c0392b;
            color: #fff;
            font-weight: 600;
            font-size: 0.9rem;
            transition: background 0.25s, transform 0.2s;
        }
        .btn-link:hover {
            background: #e74c3c;
            transform: scale(1.03);
            color: #fff;
        }
