        *,
        *::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: #0d0f14;
            color: #e8edf2;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #f0c45a;
            text-decoration: none;
            transition: color 0.25s ease, border-bottom 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffd966;
            border-bottom: 1px solid #ffd966;
        }
        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.25;
            color: #f5f7fa;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
        }
        h1 {
            font-size: 2.6rem;
            border-left: 5px solid #f0c45a;
            padding-left: 1rem;
        }
        h2 {
            font-size: 2rem;
            border-bottom: 2px solid #2a2e3a;
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.5rem;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: #141820;
            border-bottom: 2px solid #2a2e3a;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f0c45a, #d9a43d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            border: none !important;
        }
        .my-logo:hover {
            opacity: 0.85;
            border: none !important;
        }
        .my-logo small {
            font-size: 0.75rem;
            font-weight: 400;
            -webkit-text-fill-color: #aaa;
            display: block;
            letter-spacing: 1px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f0c45a;
            color: #f0c45a;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #f0c45a;
            color: #141820;
        }
        .main-nav {
            display: flex;
            gap: 0.25rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #c8cdd6;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-size: 0.95rem;
            font-weight: 500;
            transition: 0.2s;
            border: none !important;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background: #2a2e3a;
            color: #f0c45a;
        }
        .breadcrumb {
            background: #1a1e27;
            padding: 0.6rem 1.2rem;
            border-radius: 10px;
            font-size: 0.85rem;
            margin: 1rem 0 0.5rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
            color: #9aa2b0;
        }
        .breadcrumb a {
            color: #f0c45a;
            border: none !important;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #6a7280;
        }
        .hero-section {
            background: linear-gradient(145deg, #1a1e2b, #0d0f14);
            padding: 2.5rem 0 2rem;
            border-radius: 0 0 40px 40px;
            margin-bottom: 2rem;
        }
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
        }
        .hero-content h1 {
            font-size: 2.8rem;
            margin-top: 0;
        }
        .hero-content .tagline {
            font-size: 1.2rem;
            color: #f0c45a;
            font-weight: 500;
            margin-bottom: 1rem;
        }
        .hero-content p {
            font-size: 1.05rem;
            color: #bcc3d0;
        }
        .hero-image img {
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
            border: 2px solid #2a2e3a;
        }
        .hero-stats {
            display: flex;
            gap: 2rem;
            margin-top: 1.5rem;
            flex-wrap: wrap;
        }
        .hero-stats span {
            font-weight: 700;
            font-size: 1.3rem;
            color: #f0c45a;
        }
        .hero-stats small {
            display: block;
            font-size: 0.8rem;
            color: #8a92a0;
            font-weight: 400;
        }
        .action-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 1.8rem 0 2.5rem;
            align-items: center;
            justify-content: space-between;
        }
        .search-form {
            display: flex;
            flex: 2 1 300px;
            max-width: 500px;
            background: #1a1e27;
            border-radius: 40px;
            overflow: hidden;
            border: 1px solid #2a2e3a;
            transition: 0.3s;
        }
        .search-form:focus-within {
            border-color: #f0c45a;
            box-shadow: 0 0 0 3px rgba(240, 196, 90, 0.15);
        }
        .search-form input {
            flex: 1;
            background: transparent;
            border: none;
            padding: 0.8rem 1.2rem;
            color: #e8edf2;
            font-size: 0.95rem;
            outline: none;
        }
        .search-form input::placeholder {
            color: #6a7280;
        }
        .search-form button {
            background: #f0c45a;
            border: none;
            padding: 0.8rem 1.5rem;
            color: #141820;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            font-size: 0.95rem;
        }
        .search-form button:hover {
            background: #ffd966;
        }
        .action-links {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
        }
        .action-links a {
            background: #1a1e27;
            padding: 0.6rem 1.2rem;
            border-radius: 30px;
            font-size: 0.9rem;
            border: 1px solid #2a2e3a;
            color: #c8cdd6;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .action-links a:hover {
            background: #2a2e3a;
            color: #f0c45a;
            border-color: #f0c45a;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 2.5fr 1fr;
            gap: 2.5rem;
            margin: 2rem 0 3rem;
        }
        .main-article {
            background: #13171f;
            padding: 2rem 2rem 2.5rem;
            border-radius: 24px;
            border: 1px solid #242834;
        }
        .sidebar {
            position: sticky;
            top: 120px;
            align-self: start;
        }
        .sidebar-card {
            background: #13171f;
            border: 1px solid #242834;
            border-radius: 20px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            margin-top: 0;
            border-bottom: 2px solid #2a2e3a;
            padding-bottom: 0.5rem;
        }
        .sidebar-card ul {
            list-style: none;
            padding-left: 0;
        }
        .sidebar-card li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #1e222e;
        }
        .sidebar-card li a {
            color: #c8cdd6;
            border: none !important;
            display: block;
        }
        .sidebar-card li a:hover {
            color: #f0c45a;
            padding-left: 4px;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.95rem;
            background: #0d0f14;
            border-radius: 12px;
            overflow: hidden;
        }
        .data-table th {
            background: #1e2533;
            color: #f0c45a;
            padding: 0.8rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #1e222e;
        }
        .data-table tr:hover td {
            background: #1a1e2b;
        }
        .feedback-section {
            margin-top: 2.5rem;
            padding-top: 2rem;
            border-top: 2px solid #242834;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .feedback-card {
            background: #0d0f14;
            padding: 1.5rem;
            border-radius: 16px;
            border: 1px solid #242834;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.2rem;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-group label {
            display: block;
            font-size: 0.9rem;
            color: #bcc3d0;
            margin-bottom: 0.3rem;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            background: #1a1e27;
            border: 1px solid #2a2e3a;
            padding: 0.7rem 1rem;
            border-radius: 8px;
            color: #e8edf2;
            font-size: 0.95rem;
            transition: 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #f0c45a;
            outline: none;
        }
        .form-group textarea {
            min-height: 90px;
            resize: vertical;
        }
        .btn {
            background: #f0c45a;
            color: #141820;
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn:hover {
            background: #ffd966;
            transform: translateY(-2px);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #f0c45a;
            color: #f0c45a;
        }
        .btn-outline:hover {
            background: #f0c45a;
            color: #141820;
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #3d4352;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            transition: 0.2s;
            color: #3d4352;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f0c45a;
        }
        friend-link {
            display: block;
            background: #1a1e27;
            padding: 1.5rem;
            border-radius: 20px;
            margin: 2rem 0 1rem;
            border: 1px solid #242834;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 0.8rem 0.3rem 0;
            padding: 0.3rem 0.8rem;
            background: #242834;
            border-radius: 20px;
            font-size: 0.9rem;
            color: #c8cdd6;
            border: none !important;
        }
        friend-link a:hover {
            background: #f0c45a;
            color: #141820;
        }
        .site-footer {
            background: #0b0d12;
            border-top: 2px solid #1e222e;
            padding: 2rem 0;
            margin-top: 3rem;
            text-align: center;
            color: #6a7280;
            font-size: 0.9rem;
        }
        .site-footer .copyright {
            margin-top: 0.8rem;
            border-top: 1px solid #1e222e;
            padding-top: 1rem;
            color: #4a5260;
        }
        @media (max-width: 992px) {
            .hero-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .hero-content h1 {
                font-size: 2.2rem;
            }
            .hero-stats {
                justify-content: center;
            }
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #141820;
                padding: 1rem 0;
                border-top: 1px solid #2a2e3a;
                margin-top: 0.8rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.7rem 1rem;
                width: 100%;
                text-align: center;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .main-article {
                padding: 1.2rem;
            }
            .action-bar {
                flex-direction: column;
                align-items: stretch;
            }
            .search-form {
                max-width: 100%;
            }
            .hero-content h1 {
                font-size: 1.8rem;
            }
            .data-table {
                font-size: 0.8rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.5rem 0.6rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.8rem;
            }
            .hero-stats {
                gap: 1rem;
                flex-direction: column;
                align-items: center;
            }
            .breadcrumb {
                font-size: 0.75rem;
                padding: 0.4rem 0.8rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        .highlight {
            color: #f0c45a;
            font-weight: 600;
        }
        .badge {
            display: inline-block;
            background: #2a2e3a;
            padding: 0.15rem 0.7rem;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #f0c45a;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .text-sm {
            font-size: 0.9rem;
            color: #9aa2b0;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            align-items: center;
        }
        .last-updated {
            color: #6a7280;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            margin-bottom: 1rem;
        }
        .last-updated i {
            color: #f0c45a;
        }
