* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, Roboto, 'Helvetica Neue', sans-serif;
            background: #0b0e14;
            color: #e8edf5;
            line-height: 1.7;
            font-weight: 400;
            scroll-behavior: smooth;
        }
        a {
            color: #facc15;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(145deg, #141a24 0%, #1f2937 100%);
            border-bottom: 2px solid #facc15;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 999;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #facc15, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 40px rgba(250, 204, 21, 0.15);
            display: inline-block;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #94a3b8;
            background: none;
            display: block;
            font-weight: 400;
            letter-spacing: 1px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #facc15;
            color: #facc15;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #facc15;
            color: #0b0e14;
        }
        nav {
            display: flex;
            gap: 8px 16px;
            flex-wrap: wrap;
            align-items: center;
        }
        nav a {
            color: #cbd5e1;
            font-weight: 500;
            padding: 6px 12px;
            border-radius: 40px;
            transition: 0.2s;
            font-size: 0.95rem;
        }
        nav a:hover {
            background: rgba(250, 204, 21, 0.12);
            color: #facc15;
            text-decoration: none;
        }
        .breadcrumb {
            background: #1a212e;
            padding: 10px 0;
            font-size: 0.88rem;
            border-bottom: 1px solid #2a3344;
        }
        .breadcrumb a {
            color: #94a3b8;
        }
        .breadcrumb a:hover {
            color: #facc15;
        }
        .breadcrumb span {
            color: #facc15;
        }
        .hero {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            padding: 40px 0 50px;
            text-align: center;
            border-bottom: 1px solid #2a3344;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #facc15;
            letter-spacing: -0.5px;
            line-height: 1.2;
            margin-bottom: 16px;
            text-shadow: 0 4px 30px rgba(250, 204, 21, 0.2);
        }
        .hero p {
            font-size: 1.2rem;
            color: #cbd5e1;
            max-width: 800px;
            margin: 0 auto 20px;
        }
        .hero .meta {
            font-size: 0.95rem;
            color: #64748b;
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }
        .hero .meta i {
            color: #facc15;
            margin-right: 6px;
        }
        .featured-image-wrap {
            margin: 40px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
            position: relative;
        }
        .featured-image-wrap img {
            width: 100%;
            max-height: 520px;
            object-fit: cover;
        }
        .featured-image-wrap .img-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
            padding: 30px 20px 16px;
            font-size: 0.9rem;
            color: #cbd5e1;
        }
        .content {
            padding: 40px 0 60px;
        }
        .content h2 {
            font-size: 2.2rem;
            font-weight: 700;
            color: #facc15;
            margin: 48px 0 18px;
            border-left: 5px solid #facc15;
            padding-left: 18px;
            letter-spacing: -0.3px;
        }
        .content h3 {
            font-size: 1.6rem;
            font-weight: 600;
            color: #fde68a;
            margin: 32px 0 12px;
            letter-spacing: -0.2px;
        }
        .content h4 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #e2e8f0;
            margin: 24px 0 10px;
        }
        .content p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            color: #e2e8f0;
        }
        .content ul,
        .content ol {
            margin: 0 0 20px 24px;
            color: #cbd5e1;
        }
        .content li {
            margin-bottom: 8px;
        }
        .content strong {
            color: #facc15;
            font-weight: 600;
        }
        .content .highlight-box {
            background: #1e293b;
            border-left: 4px solid #facc15;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .content .highlight-box p {
            margin: 0;
        }
        .content .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .content .stat-card {
            background: #1a212e;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #2a3344;
            transition: 0.3s;
        }
        .content .stat-card:hover {
            border-color: #facc15;
            transform: translateY(-4px);
        }
        .content .stat-card .num {
            font-size: 2.2rem;
            font-weight: 800;
            color: #facc15;
        }
        .content .stat-card .label {
            color: #94a3b8;
            font-size: 0.95rem;
        }
        .content .interview {
            background: #131b29;
            border-radius: 16px;
            padding: 28px;
            margin: 30px 0;
            border: 1px solid #2a3344;
        }
        .content .interview .quote {
            font-style: italic;
            font-size: 1.1rem;
            color: #f1f5f9;
            border-left: 3px solid #facc15;
            padding-left: 20px;
            margin: 12px 0;
        }
        .content .interview .author {
            font-weight: 600;
            color: #facc15;
            margin-top: 8px;
        }
        .form-section {
            background: #131b29;
            border-radius: 16px;
            padding: 32px 28px;
            margin: 40px 0;
            border: 1px solid #2a3344;
        }
        .form-section h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 18px;
        }
        .form-group label {
            display: block;
            font-weight: 500;
            margin-bottom: 6px;
            color: #cbd5e1;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            background: #0b0e14;
            border: 1px solid #2a3344;
            border-radius: 8px;
            color: #e8edf5;
            font-size: 1rem;
            transition: 0.2s;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #facc15;
            box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.15);
        }
        .form-group textarea {
            min-height: 110px;
            resize: vertical;
        }
        .btn {
            display: inline-block;
            padding: 12px 32px;
            background: #facc15;
            color: #0b0e14;
            font-weight: 700;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.25s;
            font-family: inherit;
        }
        .btn:hover {
            background: #fde047;
            transform: scale(1.02);
            box-shadow: 0 6px 25px rgba(250, 204, 21, 0.3);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #facc15;
            color: #facc15;
        }
        .btn-outline:hover {
            background: #facc15;
            color: #0b0e14;
        }
        .rating-stars {
            display: flex;
            gap: 8px;
            font-size: 1.8rem;
            color: #475569;
            cursor: pointer;
            transition: 0.2s;
        }
        .rating-stars i {
            transition: 0.2s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #facc15;
            transform: scale(1.1);
        }
        .links-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 12px;
            margin: 24px 0;
        }
        .links-list a {
            background: #1a212e;
            padding: 12px 18px;
            border-radius: 8px;
            border: 1px solid #2a3344;
            transition: 0.2s;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .links-list a:hover {
            border-color: #facc15;
            background: #1f2a3a;
            text-decoration: none;
            transform: translateX(4px);
        }
        .links-list a i {
            color: #facc15;
            font-size: 1.1rem;
        }
        footer {
            background: #0d111c;
            border-top: 2px solid #1e293b;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        footer .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        footer h4 {
            color: #facc15;
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        footer a {
            color: #94a3b8;
            display: block;
            margin-bottom: 6px;
            font-size: 0.95rem;
        }
        footer a:hover {
            color: #facc15;
        }
        friend-link {
            display: block;
            background: #141c2a;
            padding: 20px 24px;
            border-radius: 12px;
            margin: 20px 0;
            border: 1px solid #2a3344;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            color: #94a3b8;
        }
        friend-link a:hover {
            color: #facc15;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #1e293b;
            color: #64748b;
            font-size: 0.9rem;
        }
        .copyright strong {
            color: #94a3b8;
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: nowrap;
            }
            .nav-toggle {
                display: inline-block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 16px 0 8px;
                gap: 6px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 10px 16px;
                border-radius: 8px;
                width: 100%;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .content h2 {
                font-size: 1.7rem;
            }
            .content h3 {
                font-size: 1.3rem;
            }
            .content .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .links-list {
                grid-template-columns: 1fr;
            }
            .breadcrumb {
                font-size: 0.8rem;
                overflow-x: auto;
                white-space: nowrap;
                padding: 8px 0;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo small {
                font-size: 0.6rem;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .content .stat-grid {
                grid-template-columns: 1fr;
            }
            .form-section {
                padding: 20px 16px;
            }
            .container {
                padding: 0 14px;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0b0e14;
        }
        ::-webkit-scrollbar-thumb {
            background: #2a3344;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #facc15;
        }
        .hidden-schema {
            display: none;
        }
