        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            background: #0d0f14;
            color: #e8edf3;
            line-height: 1.75;
            padding: 0;
            margin: 0;
        }
        a {
            color: #6db3f2;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #b3d9ff;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: #151a22;
            border-bottom: 2px solid #2c3e50;
            padding: 16px 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: 12px;
        }
        .my-logo {
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f5af19, #f12711);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-transform: uppercase;
            padding: 4px 0;
        }
        .my-logo small {
            font-size: 0.7rem;
            display: block;
            -webkit-text-fill-color: #8a9bb5;
            color: #8a9bb5;
            letter-spacing: 1px;
            font-weight: 400;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .main-nav a {
            padding: 6px 14px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 500;
            background: transparent;
            border: 1px solid #2c3e50;
            color: #c8d6e5;
            transition: all 0.25s ease;
        }
        .main-nav a:hover {
            background: #2c3e50;
            border-color: #6db3f2;
            color: #fff;
            text-decoration: none;
            transform: translateY(-1px);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #e8edf3;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #2c3e50;
        }
        .breadcrumb {
            background: #1a212b;
            padding: 12px 0;
            border-bottom: 1px solid #2a3440;
            font-size: 0.85rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            margin: 0;
            padding: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #5a6a7a;
        }
        .breadcrumb a {
            color: #8a9bb5;
        }
        .breadcrumb a:hover {
            color: #6db3f2;
        }
        .breadcrumb .current {
            color: #e8edf3;
            font-weight: 500;
        }
        .search-section {
            background: #1a212b;
            padding: 24px 0;
            border-bottom: 1px solid #2a3440;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            max-width: 700px;
            margin: 0 auto;
        }
        .search-form input {
            flex: 1;
            min-width: 180px;
            padding: 14px 20px;
            border-radius: 40px;
            border: 1px solid #2c3e50;
            background: #0d0f14;
            color: #e8edf3;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-form input:focus {
            border-color: #6db3f2;
        }
        .search-form button {
            padding: 14px 32px;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #f5af19, #f12711);
            color: #0d0f14;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .search-form button:hover {
            transform: scale(1.03);
            box-shadow: 0 6px 24px rgba(241, 39, 17, 0.35);
        }
        main {
            padding: 40px 0 60px;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            letter-spacing: -1px;
            line-height: 1.2;
            margin-bottom: 16px;
            background: linear-gradient(135deg, #f5af19, #f12711);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 48px 0 16px;
            padding-bottom: 10px;
            border-bottom: 2px solid #2c3e50;
            color: #f0f4fa;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 32px 0 12px;
            color: #d6e2f0;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 24px 0 8px;
            color: #b0c8dd;
        }
        p {
            margin-bottom: 16px;
            color: #d0d9e5;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 400;
            color: #b8ccdd;
            border-left: 4px solid #f5af19;
            padding-left: 20px;
            margin: 24px 0;
        }
        .highlight-box {
            background: #1a232f;
            border-left: 4px solid #f5af19;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            margin: 28px 0;
        }
        .stat-card {
            background: #1a232f;
            border-radius: 16px;
            padding: 20px 16px;
            text-align: center;
            border: 1px solid #2a3440;
            transition: transform 0.25s, border-color 0.25s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            border-color: #6db3f2;
        }
        .stat-card .number {
            font-size: 2.2rem;
            font-weight: 800;
            color: #f5af19;
            display: block;
        }
        .stat-card .label {
            font-size: 0.9rem;
            color: #8a9bb5;
            margin-top: 4px;
        }
        .featured-image {
            border-radius: 16px;
            margin: 32px 0;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
            width: 100%;
        }
        .link-list {
            background: #1a232f;
            border-radius: 16px;
            padding: 20px 28px;
            margin: 24px 0;
            border: 1px solid #2a3440;
        }
        .link-list li {
            margin-bottom: 8px;
            list-style: none;
        }
        .link-list li::before {
            content: "🔗 ";
            opacity: 0.7;
        }
        .interact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 48px 0;
        }
        @media (max-width: 768px) {
            .interact-grid {
                grid-template-columns: 1fr;
            }
        }
        .card {
            background: #151a22;
            border-radius: 20px;
            padding: 28px 24px;
            border: 1px solid #2a3440;
        }
        .card h3 {
            margin-top: 0;
            border-bottom: 1px solid #2a3440;
            padding-bottom: 12px;
        }
        .form-group {
            margin-bottom: 16px;
        }
        .form-group label {
            display: block;
            font-weight: 500;
            margin-bottom: 6px;
            color: #b0c8dd;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border-radius: 12px;
            border: 1px solid #2c3e50;
            background: #0d0f14;
            color: #e8edf3;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #6db3f2;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn-primary {
            padding: 12px 32px;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #f5af19, #f12711);
            color: #0d0f14;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .btn-primary:hover {
            transform: scale(1.03);
            box-shadow: 0 6px 24px rgba(241, 39, 17, 0.3);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            cursor: pointer;
            color: #3a4a5a;
            transition: color 0.2s;
        }
        .star-rating .star {
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: #f5af19;
            transform: scale(1.1);
        }
        footer {
            background: #0d0f14;
            border-top: 2px solid #2c3e50;
            padding: 40px 0 24px;
            margin-top: 40px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        footer h4 {
            color: #f0f4fa;
            margin-bottom: 14px;
            border-bottom: 1px solid #2a3440;
            padding-bottom: 8px;
        }
        footer a {
            display: block;
            padding: 4px 0;
            color: #8a9bb5;
        }
        footer a:hover {
            color: #6db3f2;
        }
        friend-link {
            display: block;
            margin: 16px 0;
            padding: 12px 16px;
            background: #151a22;
            border-radius: 12px;
            border: 1px solid #2a3440;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 12px;
            background: #1a232f;
            border-radius: 20px;
            font-size: 0.85rem;
            border: 1px solid #2c3e50;
        }
        friend-link a:hover {
            border-color: #6db3f2;
            background: #2c3e50;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid #1a232f;
            color: #5a6a7a;
            font-size: 0.85rem;
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-direction: row;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #151a22;
                padding: 16px 0;
                border-top: 1px solid #2c3e50;
                margin-top: 12px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                width: 100%;
                text-align: center;
                border-radius: 0;
                border: none;
                border-bottom: 1px solid #1a232f;
                padding: 12px;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .stat-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .search-form input,
            .search-form button {
                width: 100%;
            }
        }
        .text-muted {
            color: #6a7a8a;
        }
        .mt-2 {
            margin-top: 16px;
        }
        .mb-2 {
            margin-bottom: 16px;
        }
        .last-updated {
            display: inline-block;
            background: #1a232f;
            padding: 4px 16px;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #8a9bb5;
            border: 1px solid #2a3440;
        }
