        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0c0b0d;
            color: #f0ede8;
            line-height: 1.7;
            padding: 0;
            margin: 0;
            min-height: 100vh;
        }
        a {
            color: #f7b731;
            text-decoration: none;
            transition: color 0.25s ease, transform 0.2s ease;
        }
        a:hover {
            color: #ffd966;
            transform: translateY(-1px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #f7e7c8;
            letter-spacing: 0.02em;
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 1.2rem;
            text-shadow: 0 0 20px rgba(247, 183, 49, 0.15);
        }
        h2 {
            font-size: 2.1rem;
            margin-top: 3rem;
            margin-bottom: 1rem;
            border-left: 6px solid #f7b731;
            padding-left: 1.2rem;
        }
        h3 {
            font-size: 1.6rem;
            margin-top: 2.2rem;
            margin-bottom: 0.8rem;
            color: #f0d9a8;
        }
        h4 {
            font-size: 1.25rem;
            margin-top: 1.6rem;
            margin-bottom: 0.5rem;
            color: #e6cfa0;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
            color: #ddd8d0;
        }
        strong {
            color: #f7d68a;
            font-weight: 600;
        }
        em {
            color: #e6cfa0;
            font-style: italic;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .header {
            background: linear-gradient(145deg, #1a181f 0%, #0f0e12 100%);
            padding: 16px 0;
            border-bottom: 2px solid #2a2530;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(6px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f7b731, #f57c00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 2px;
            text-transform: uppercase;
            display: inline-block;
            transition: transform 0.3s ease;
            font-family: 'Impact', 'Arial Black', sans-serif;
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #aaa;
            color: #aaa;
            display: block;
            font-weight: 300;
            letter-spacing: 1px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f7b731;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #2a2530;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .nav-menu a {
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #cfc8d8;
            transition: all 0.25s ease;
            border: 1px solid transparent;
        }
        .nav-menu a:hover {
            background: #2a2530;
            color: #f7b731;
            border-color: #f7b73133;
        }
        .nav-menu a.active {
            background: #f7b731;
            color: #0c0b0d;
            font-weight: 600;
        }
        .breadcrumb {
            padding: 14px 0 8px;
            font-size: 0.9rem;
            color: #a098a8;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: #c8b898;
        }
        .breadcrumb a:hover {
            color: #f7b731;
        }
        .breadcrumb .sep {
            color: #555;
            margin: 0 4px;
        }
        .hero-img {
            margin: 20px 0 32px;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
            background: #1a181f;
        }
        .hero-img img {
            width: 100%;
            max-height: 520px;
            object-fit: cover;
            border-radius: 18px;
        }
        .hero-caption {
            padding: 12px 20px 18px;
            font-size: 0.95rem;
            color: #b8b0b8;
            background: #1a181f;
            border-radius: 0 0 18px 18px;
            border-top: 1px solid #2a2530;
        }
        .content-card {
            background: #141216;
            border-radius: 18px;
            padding: 28px 30px;
            margin-bottom: 28px;
            border: 1px solid #2a2530;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
            transition: border-color 0.3s ease;
        }
        .content-card:hover {
            border-color: #3d3545;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 18px;
            margin: 24px 0;
        }
        .stat-item {
            background: #1e1b24;
            padding: 20px 18px;
            border-radius: 16px;
            text-align: center;
            border-left: 4px solid #f7b731;
        }
        .stat-item .num {
            font-size: 2.2rem;
            font-weight: 800;
            color: #f7b731;
            display: block;
        }
        .stat-item .label {
            font-size: 0.9rem;
            color: #b8b0b8;
            margin-top: 4px;
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 16px;
            margin: 18px 0;
            padding: 0;
            list-style: none;
        }
        .link-list li a {
            background: #1e1b24;
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 0.9rem;
            border: 1px solid #2a2530;
            display: inline-block;
            transition: all 0.25s ease;
        }
        .link-list li a:hover {
            background: #2a2530;
            border-color: #f7b73155;
            color: #f7b731;
        }
        .search-form {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin: 20px 0 10px;
        }
        .search-form input {
            flex: 1;
            min-width: 180px;
            padding: 14px 20px;
            border-radius: 40px;
            border: 2px solid #2a2530;
            background: #0c0b0d;
            color: #f0ede8;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        .search-form input:focus {
            outline: none;
            border-color: #f7b731;
        }
        .search-form button {
            padding: 14px 32px;
            border-radius: 40px;
            border: none;
            background: #f7b731;
            color: #0c0b0d;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.25s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 20px 0 10px;
        }
        @media (max-width:700px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: #1a181f;
            padding: 22px 24px;
            border-radius: 18px;
            border: 1px solid #2a2530;
        }
        .feedback-card h4 {
            margin-top: 0;
            font-size: 1.2rem;
        }
        .feedback-card textarea,
        .feedback-card input {
            width: 100%;
            padding: 12px 16px;
            border-radius: 12px;
            border: 2px solid #2a2530;
            background: #0c0b0d;
            color: #f0ede8;
            font-size: 0.95rem;
            margin-bottom: 12px;
            font-family: inherit;
            transition: border 0.3s ease;
        }
        .feedback-card textarea:focus,
        .feedback-card input:focus {
            outline: none;
            border-color: #f7b731;
        }
        .feedback-card textarea {
            min-height: 90px;
            resize: vertical;
        }
        .feedback-card .star-group {
            display: flex;
            gap: 6px;
            margin-bottom: 12px;
            font-size: 1.6rem;
            color: #444;
            cursor: pointer;
        }
        .feedback-card .star-group i {
            transition: color 0.2s ease;
        }
        .feedback-card .star-group i.active,
        .feedback-card .star-group i:hover {
            color: #f7b731;
        }
        .feedback-card button {
            padding: 12px 28px;
            border-radius: 40px;
            border: none;
            background: #f7b731;
            color: #0c0b0d;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.25s ease;
        }
        .feedback-card button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .table-wrap {
            overflow-x: auto;
            margin: 20px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            background: #1a181f;
            border-radius: 14px;
            overflow: hidden;
        }
        th,
        td {
            padding: 14px 18px;
            text-align: left;
            border-bottom: 1px solid #2a2530;
        }
        th {
            background: #2a2530;
            color: #f7b731;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            font-size: 0.85rem;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #1e1b24;
        }
        .footer {
            background: #0f0e12;
            border-top: 2px solid #2a2530;
            padding: 40px 0 30px;
            margin-top: 50px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 30px;
        }
        @media (max-width:700px) {
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }
        .footer h4 {
            color: #f7b731;
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        .footer a {
            display: block;
            padding: 4px 0;
            color: #b8b0b8;
            font-size: 0.9rem;
        }
        .footer a:hover {
            color: #f7b731;
        }
        .footer .copyright {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #2a2530;
            text-align: center;
            color: #888;
            font-size: 0.85rem;
            grid-column: 1 / -1;
        }
        friend-link {
            display: block;
            margin: 12px 0;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.0rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding-top: 16px;
                gap: 4px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 12px 20px;
                border-radius: 12px;
                text-align: center;
            }
            .content-card {
                padding: 18px 16px;
            }
            .hero-img img {
                max-height: 280px;
            }
            .my-logo {
                font-size: 1.6rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            h1 {
                font-size: 1.6rem;
            }
            .stat-item .num {
                font-size: 1.6rem;
            }
            .search-form input,
            .search-form button {
                width: 100%;
            }
        }
        .mt-1 {
            margin-top: 12px;
        }
        .mt-2 {
            margin-top: 24px;
        }
        .mb-1 {
            margin-bottom: 12px;
        }
        .mb-2 {
            margin-bottom: 24px;
        }
        .text-muted {
            color: #a098a8;
            font-size: 0.9rem;
        }
        .tag {
            display: inline-block;
            background: #2a2530;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #f7b731;
            margin: 2px 4px 2px 0;
        }
        .divider {
            height: 2px;
            background: linear-gradient(90deg, #2a2530, #f7b73144, #2a2530);
            margin: 32px 0;
            border: none;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0c0b0d;
        }
        ::-webkit-scrollbar-thumb {
            background: #3d3545;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #f7b73166;
        }
