* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', 'Roboto', system-ui, -apple-system, sans-serif;
            background: #0f0f1a;
            color: #e8e8f0;
            line-height: 1.7;
            scroll-behavior: smooth;
        }
        a {
            color: #ff8c38;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #ffb347;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            padding: 16px 0;
            border-bottom: 3px solid #ff6b00;
            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;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 800;
            color: #ff8c38;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #ff6b00, #ffd700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(255, 107, 0, 0.2);
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .my-logo span {
            font-weight: 300;
            font-size: 14px;
            display: block;
            -webkit-text-fill-color: #aaa;
            color: #aaa;
            letter-spacing: 1px;
        }
        .nav-desktop {
            display: flex;
            gap: 24px;
            align-items: center;
        }
        .nav-desktop a {
            color: #ccc;
            font-weight: 500;
            font-size: 15px;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s ease;
        }
        .nav-desktop a:hover {
            color: #ff8c38;
            border-bottom-color: #ff8c38;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 28px;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .nav-mobile {
            display: none;
            width: 100%;
            background: #1a1a2e;
            padding: 12px 0;
            border-top: 1px solid #333;
            margin-top: 12px;
            flex-direction: column;
            gap: 8px;
        }
        .nav-mobile.open {
            display: flex;
        }
        .nav-mobile a {
            color: #ccc;
            padding: 10px 16px;
            border-radius: 8px;
            font-weight: 500;
            transition: 0.2s;
        }
        .nav-mobile a:hover {
            background: rgba(255, 107, 0, 0.15);
            color: #ff8c38;
            text-decoration: none;
        }
        .breadcrumb {
            background: rgba(255, 255, 255, 0.04);
            padding: 10px 0;
            font-size: 13px;
            color: #999;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb ol li+li::before {
            content: "›";
            margin-right: 12px;
            color: #666;
        }
        .breadcrumb a {
            color: #ff8c38;
        }
        main {
            padding: 40px 0 60px;
        }
        h1 {
            font-size: 42px;
            font-weight: 800;
            line-height: 1.2;
            color: #fff;
            margin-bottom: 16px;
            background: linear-gradient(135deg, #ffd700, #ff6b00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 30px;
            font-weight: 700;
            color: #ffd700;
            margin: 48px 0 18px;
            padding-bottom: 8px;
            border-bottom: 2px solid rgba(255, 107, 0, 0.3);
        }
        h3 {
            font-size: 22px;
            font-weight: 600;
            color: #ffb347;
            margin: 32px 0 12px;
        }
        h4 {
            font-size: 18px;
            font-weight: 600;
            color: #e0a050;
            margin: 24px 0 10px;
        }
        p {
            margin-bottom: 18px;
            color: #d0d0e0;
        }
        .content-section {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 16px;
            padding: 28px 30px;
            margin-bottom: 32px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            transition: 0.3s;
        }
        .content-section:hover {
            border-color: rgba(255, 107, 0, 0.2);
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
        }
        .featured-image-wrapper {
            margin: 32px 0;
            border-radius: 16px;
            overflow: hidden;
            background: #1a1a2e;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
        }
        .featured-image-wrapper img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .featured-image-wrapper figcaption {
            padding: 14px 20px;
            font-size: 14px;
            color: #aaa;
            background: #1a1a2e;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(255, 107, 0, 0.12), rgba(255, 215, 0, 0.06));
            border-left: 4px solid #ff6b00;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .highlight-box strong {
            color: #ffd700;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 28px 0;
        }
        .stat-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.06);
            transition: 0.3s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            border-color: #ff6b00;
        }
        .stat-card .number {
            font-size: 36px;
            font-weight: 800;
            color: #ff6b00;
            display: block;
        }
        .stat-card .label {
            font-size: 14px;
            color: #aaa;
            margin-top: 6px;
        }
        .interview-card {
            background: rgba(255, 215, 0, 0.04);
            padding: 24px;
            border-radius: 14px;
            border: 1px solid rgba(255, 215, 0, 0.1);
            margin: 20px 0;
        }
        .interview-card .quote {
            font-style: italic;
            font-size: 17px;
            color: #f0e6d0;
            border-left: 3px solid #ffd700;
            padding-left: 18px;
            margin: 12px 0;
        }
        .interview-card .attribution {
            font-weight: 600;
            color: #ffb347;
            margin-top: 8px;
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 20px;
            background: rgba(255, 255, 255, 0.03);
            padding: 18px 22px;
            border-radius: 12px;
            margin: 20px 0;
        }
        .link-list a {
            font-weight: 500;
        }
        .faq-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            padding: 18px 0;
        }
        .faq-item:last-child {
            border-bottom: none;
        }
        .faq-item h4 {
            margin: 0 0 6px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .faq-item h4::before {
            content: "▸";
            color: #ff6b00;
            font-size: 20px;
            transition: transform 0.2s;
        }
        .faq-item h4.open::before {
            transform: rotate(90deg);
        }
        .faq-item p {
            margin: 6px 0 0 28px;
        }
        .form-card {
            background: rgba(255, 255, 255, 0.04);
            padding: 28px 30px;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            margin: 32px 0;
        }
        .form-card h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 18px;
        }
        .form-group label {
            display: block;
            font-weight: 500;
            margin-bottom: 6px;
            color: #ccc;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border-radius: 8px;
            border: 1px solid #444;
            background: #1a1a2e;
            color: #e8e8f0;
            font-size: 15px;
            transition: 0.2s;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #ff6b00;
            box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15);
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            padding: 12px 28px;
            background: linear-gradient(135deg, #ff6b00, #e65c00);
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(255, 107, 0, 0.35);
        }
        .btn-outline {
            background: transparent;
            border: 1px solid #ff6b00;
            color: #ff8c38;
        }
        .btn-outline:hover {
            background: rgba(255, 107, 0, 0.1);
        }
        .rating-stars {
            display: flex;
            gap: 8px;
            font-size: 28px;
            color: #555;
            cursor: pointer;
        }
        .rating-stars i {
            transition: 0.2s;
        }
        .rating-stars i.active,
        .rating-stars i:hover {
            color: #ffd700;
        }
        .rating-stars i:hover~i {
            color: #555;
        }
        .site-footer {
            background: #0a0a14;
            border-top: 2px solid rgba(255, 107, 0, 0.2);
            padding: 40px 0 20px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-col h4 {
            color: #ffd700;
            margin-bottom: 12px;
            font-size: 18px;
        }
        .footer-col a {
            display: block;
            color: #999;
            padding: 4px 0;
            font-size: 14px;
        }
        .footer-col a:hover {
            color: #ff8c38;
        }
        friend-link {
            display: block;
            padding: 16px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            margin: 20px 0;
            font-size: 14px;
            color: #888;
        }
        friend-link a {
            color: #ff8c38;
            margin: 0 8px;
        }
        .copyright {
            text-align: center;
            color: #666;
            font-size: 13px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
        }
        .last-updated {
            display: inline-block;
            background: rgba(255, 107, 0, 0.1);
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 13px;
            color: #ffb347;
            margin-bottom: 20px;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 24px;
            }
            h3 {
                font-size: 19px;
            }
            .content-section {
                padding: 18px 16px;
            }
            .form-card {
                padding: 18px 16px;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 22px;
            }
            .my-logo span {
                font-size: 12px;
            }
        }
        @media (max-width: 480px) {
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .container {
                padding: 0 12px;
            }
            h1 {
                font-size: 24px;
            }
            .featured-image-wrapper figcaption {
                font-size: 12px;
                padding: 10px 14px;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0f0f1a;
        }
        ::-webkit-scrollbar-thumb {
            background: #333;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #555;
        }
        ::selection {
            background: rgba(255, 107, 0, 0.3);
            color: #fff;
        }
