        *,
        *::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, Arial, sans-serif;
            background: #0f0e17;
            color: #e4e4e7;
            line-height: 1.75;
            padding: 0;
            margin: 0;
        }
        a {
            color: #f9a826;
            text-decoration: none;
            transition: color 0.25s;
        }
        a:hover,
        a:focus {
            color: #ffc857;
            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 {
            color: #fffffe;
            font-weight: 700;
            line-height: 1.3;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 3px solid #f9a826;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #f9a826;
            padding-left: 0.9rem;
            margin-top: 2.4rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #fcd34d;
        }
        h4 {
            font-size: 1.15rem;
            color: #f5e6c8;
        }
        p {
            margin-bottom: 1.1rem;
        }
        .container {
            max-width: 1160px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: #1a1a2e;
            padding: 12px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            color: #f9a826;
            letter-spacing: -0.5px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            font-size: 1.9rem;
            color: #fcd34d;
        }
        .my-logo:hover {
            text-decoration: none;
            color: #ffc857;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f9a826;
            color: #f9a826;
            font-size: 1.5rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
        }
        .nav-menu {
            display: flex;
            gap: 10px 20px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            color: #e4e4e7;
            font-weight: 500;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .nav-menu a:hover {
            border-bottom-color: #f9a826;
            color: #f9a826;
            text-decoration: none;
        }
        .nav-menu .active {
            color: #f9a826;
            border-bottom-color: #f9a826;
        }
        .breadcrumb {
            background: #1e1d2b;
            padding: 10px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #2d2b44;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "▸";
            margin-right: 10px;
            color: #f9a826;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #f9a826;
        }
        .breadcrumb .current {
            color: #fcd34d;
        }
        .hero-img-wrap {
            margin: 24px 0 16px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(249, 168, 38, 0.2);
        }
        .hero-img-wrap img {
            width: 100%;
            object-fit: cover;
            max-height: 460px;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
            gap: 18px;
            margin: 28px 0;
        }
        .stat-card {
            background: #1e1d2b;
            padding: 18px 16px;
            border-radius: 14px;
            border-left: 4px solid #f9a826;
            text-align: center;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(249, 168, 38, 0.25);
        }
        .stat-card i {
            font-size: 2rem;
            color: #f9a826;
            margin-bottom: 6px;
        }
        .stat-card .num {
            font-size: 1.8rem;
            font-weight: 800;
            color: #fffffe;
        }
        .stat-card .label {
            font-size: 0.85rem;
            color: #b0afb9;
        }
        .link-group {
            background: #1a1a2e;
            padding: 12px 18px;
            border-radius: 10px;
            margin: 18px 0;
            border: 1px solid #2d2b44;
        }
        .link-group a {
            display: inline-block;
            margin: 4px 8px 4px 0;
        }
        .form-card {
            background: #1e1d2b;
            border-radius: 16px;
            padding: 24px 22px;
            margin: 28px 0;
            border: 1px solid #2d2b44;
        }
        .form-card h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 16px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 4px;
            color: #f5e6c8;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 14px;
            background: #0f0e17;
            border: 1px solid #3d3b55;
            border-radius: 8px;
            color: #e4e4e7;
            font-size: 1rem;
            transition: border 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #f9a826;
            box-shadow: 0 0 0 3px rgba(249, 168, 38, 0.2);
        }
        .form-group textarea {
            min-height: 80px;
            resize: vertical;
        }
        .btn {
            background: #f9a826;
            color: #0f0e17;
            font-weight: 700;
            padding: 12px 28px;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn:hover {
            background: #ffc857;
            transform: scale(1.02);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #f9a826;
            color: #f9a826;
        }
        .btn-outline:hover {
            background: #f9a826;
            color: #0f0e17;
        }
        .comment-item {
            background: #16152a;
            padding: 14px 18px;
            border-radius: 10px;
            margin-bottom: 12px;
            border-left: 3px solid #f9a826;
        }
        .comment-item .meta {
            font-size: 0.8rem;
            color: #888;
            display: flex;
            gap: 14px;
            margin-bottom: 4px;
        }
        .comment-item .name {
            font-weight: 700;
            color: #fcd34d;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            cursor: pointer;
            direction: rtl;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #3d3b55;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f9a826;
        }
        .site-footer {
            background: #1a1a2e;
            padding: 36px 0 20px;
            margin-top: 40px;
            border-top: 3px solid #f9a826;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 28px;
            margin-bottom: 20px;
        }
        .footer-grid h4 {
            color: #fcd34d;
            margin-top: 0;
        }
        friend-link {
            display: block;
            background: #0f0e17;
            padding: 16px 18px;
            border-radius: 12px;
            border: 1px solid #2d2b44;
            font-style: normal;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #2d2b44;
            font-size: 0.85rem;
            color: #888;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .header-inner {
                flex-wrap: nowrap;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 12px;
                gap: 6px;
                background: #1a1a2e;
                padding: 12px 0;
                border-top: 1px solid #2d2b44;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 10px 16px;
                border-bottom: none;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .star-rating {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .container {
                padding: 0 12px;
            }
            .form-card {
                padding: 16px;
            }
        }
        .badge {
            display: inline-block;
            background: #f9a826;
            color: #0f0e17;
            padding: 2px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
        }
        .quote {
            border-left: 4px solid #f9a826;
            padding: 12px 20px;
            margin: 20px 0;
            background: #16152a;
            border-radius: 0 12px 12px 0;
            font-style: italic;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 18px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #1e1d2b;
            border-radius: 10px;
            overflow: hidden;
        }
        th,
        td {
            padding: 12px 14px;
            text-align: left;
            border-bottom: 1px solid #2d2b44;
        }
        th {
            background: #f9a826;
            color: #0f0e17;
            font-weight: 700;
        }
        tr:hover td {
            background: #25233d;
        }
        .tag {
            background: #2d2b44;
            padding: 2px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            color: #f5e6c8;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .gap-1 {
            gap: 1rem;
        }
