        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
            background: #0d0d1a;
            color: #e8e8f0;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #ffd700;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #ff6b6b;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #ffd700;
            text-shadow: 0 0 20px rgba(255, 215, 0, 0.25);
            margin-bottom: 1rem;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #ff6b6b;
            border-left: 5px solid #ffd700;
            padding-left: 16px;
            margin: 2.5rem 0 1.2rem 0;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #f0a500;
            margin: 2rem 0 0.8rem 0;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #ffd700;
            margin: 1.5rem 0 0.6rem 0;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .text-muted {
            color: #aaa;
            font-size: 0.9rem;
        }
        .text-gold {
            color: #ffd700;
        }
        .text-red {
            color: #ff6b6b;
        }
        .fw-bold {
            font-weight: 700;
        }
        .emoji-big {
            font-size: 1.8rem;
            display: inline-block;
            margin-right: 6px;
        }
        .site-header {
            background: linear-gradient(135deg, #0f0f1f 0%, #1a1a2e 100%);
            border-bottom: 3px solid #ff6b6b;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 900;
            color: #ffd700;
            background: linear-gradient(45deg, #ffd700, #ff6b6b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            -webkit-text-fill-color: #ff6b6b;
            font-size: 2rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #ffd700;
            cursor: pointer;
            padding: 6px 12px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 215, 0, 0.12);
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: #e8e8f0;
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.25s ease;
            border: 1px solid transparent;
        }
        .nav-menu a:hover {
            color: #ffd700;
            border-color: #ffd700;
            background: rgba(255, 215, 0, 0.06);
            text-decoration: none;
        }
        .nav-menu a i {
            margin-right: 6px;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding-top: 14px;
                gap: 4px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 12px 18px;
                border-radius: 8px;
                border: 1px solid rgba(255, 215, 0, 0.15);
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 14px 0 6px 0;
            margin: 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb li {
            margin-bottom: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 10px;
            color: #666;
        }
        .breadcrumb a {
            color: #ffd700;
        }
        .breadcrumb a:hover {
            color: #ff6b6b;
        }
        .breadcrumb .active {
            color: #ccc;
        }
        .hero-img {
            margin: 24px 0 30px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(255, 107, 107, 0.2);
            background: #1a1a2e;
        }
        .hero-img img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .hero-caption {
            font-size: 0.9rem;
            color: #aaa;
            text-align: center;
            padding: 10px 0 4px 0;
            font-style: italic;
        }
        .section-spacer {
            margin: 3rem 0;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 24px;
            margin: 2rem 0;
        }
        .card {
            background: #16162a;
            border-radius: 16px;
            padding: 24px 20px;
            border: 1px solid rgba(255, 215, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(255, 107, 107, 0.15);
            border-color: rgba(255, 215, 0, 0.25);
        }
        .card i {
            font-size: 2.2rem;
            color: #ffd700;
            margin-bottom: 12px;
        }
        .card h4 {
            margin-top: 0;
        }
        .highlight-box {
            background: linear-gradient(135deg, #1e1e3a, #2a1a2e);
            border-left: 6px solid #ffd700;
            border-radius: 12px;
            padding: 24px 28px;
            margin: 2rem 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .stat-row {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: space-around;
            margin: 2.5rem 0;
            text-align: center;
        }
        .stat-item {
            background: #16162a;
            border-radius: 16px;
            padding: 24px 32px;
            min-width: 140px;
            flex: 1 1 140px;
            border: 1px solid rgba(255, 215, 0, 0.1);
        }
        .stat-item .number {
            font-size: 2.8rem;
            font-weight: 800;
            color: #ffd700;
            display: block;
        }
        .stat-item .label {
            font-size: 0.95rem;
            color: #ccc;
            margin-top: 4px;
        }
        .form-section {
            background: #16162a;
            border-radius: 16px;
            padding: 28px 30px;
            margin: 2rem 0;
            border: 1px solid rgba(255, 215, 0, 0.08);
        }
        .form-section h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 4px;
            color: #ffd700;
            font-size: 0.95rem;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border-radius: 10px;
            border: 1px solid #333;
            background: #0d0d1a;
            color: #e8e8f0;
            font-size: 1rem;
            transition: border 0.25s ease;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #ffd700;
            box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.15);
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            border-radius: 30px;
            border: none;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            background: linear-gradient(45deg, #ff6b6b, #e94560);
            color: #fff;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(233, 69, 96, 0.35);
        }
        .btn-gold {
            background: linear-gradient(45deg, #ffd700, #f0a500);
            color: #1a1a2e;
        }
        .btn-gold:hover {
            box-shadow: 0 8px 25px rgba(255, 215, 0, 0.35);
        }
        .links-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 12px;
            margin: 1.8rem 0;
            list-style: none;
            padding: 0;
        }
        .links-list li {
            margin: 0;
        }
        .links-list a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 18px;
            background: #16162a;
            border-radius: 12px;
            border: 1px solid rgba(255, 215, 0, 0.06);
            transition: all 0.25s ease;
            color: #e8e8f0;
            font-size: 0.95rem;
        }
        .links-list a:hover {
            background: #1e1e3a;
            border-color: #ffd700;
            text-decoration: none;
            color: #ffd700;
            transform: translateX(4px);
        }
        .links-list a i {
            color: #ff6b6b;
            font-size: 1.1rem;
            width: 22px;
            text-align: center;
        }
        .interview-block {
            background: #1a1a2e;
            border-radius: 16px;
            padding: 28px 30px;
            margin: 2rem 0;
            border-left: 6px solid #ff6b6b;
            font-style: italic;
        }
        .interview-block .interviewee {
            font-style: normal;
            font-weight: 700;
            color: #ffd700;
            margin-top: 12px;
            display: block;
        }
        .interview-block .interviewee i {
            margin-right: 8px;
        }
        .site-footer {
            background: #0a0a14;
            border-top: 3px solid #ff6b6b;
            padding: 40px 0 30px 0;
            margin-top: 4rem;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }
        .footer-col {
            flex: 1 1 220px;
        }
        .footer-col h4 {
            margin-top: 0;
            color: #ffd700;
            font-size: 1.1rem;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
        }
        .footer-col ul li {
            margin-bottom: 6px;
        }
        .footer-col ul a {
            color: #ccc;
            font-size: 0.9rem;
        }
        .footer-col ul a:hover {
            color: #ffd700;
        }
        friend-link {
            display: block;
            margin-top: 20px;
            padding: 18px 20px;
            background: #16162a;
            border-radius: 12px;
            border: 1px solid rgba(255, 215, 0, 0.1);
            font-size: 0.95rem;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 10px;
            border-radius: 6px;
            background: rgba(255, 215, 0, 0.06);
            transition: background 0.2s;
        }
        friend-link a:hover {
            background: rgba(255, 215, 0, 0.15);
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid #222;
            font-size: 0.9rem;
            color: #888;
        }
        .copyright a {
            color: #ffd700;
        }
        .copyright strong {
            color: #ccc;
        }
        .tag {
            display: inline-block;
            background: rgba(255, 107, 107, 0.15);
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #ff6b6b;
            font-weight: 600;
            margin-right: 6px;
        }
        .divider {
            border: none;
            height: 1px;
            background: linear-gradient(90deg, transparent, #ff6b6b, #ffd700, #ff6b6b, transparent);
            margin: 2.8rem 0;
            opacity: 0.3;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #ff6b6b;
            color: #fff;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            box-shadow: 0 4px 20px rgba(233, 69, 96, 0.4);
            transition: all 0.3s ease;
            opacity: 0.7;
            z-index: 99;
            border: none;
            cursor: pointer;
        }
        .back-to-top:hover {
            opacity: 1;
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(233, 69, 96, 0.5);
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .stat-row {
                gap: 12px;
            }
            .stat-item {
                padding: 16px 18px;
                min-width: 100px;
            }
            .stat-item .number {
                font-size: 2rem;
            }
            .form-section {
                padding: 18px 16px;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            .links-list {
                grid-template-columns: 1fr;
            }
        }
        .fade-in {
            animation: fadeUp 0.7s ease forwards;
        }
        @keyframes fadeUp {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
