        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
            background: #0d0d1a;
            color: #eaeaea;
            line-height: 1.75;
            padding: 0;
            margin: 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f7d44a;
            text-decoration: none;
            transition: color 0.25s ease, transform 0.2s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffec9e;
            transform: translateY(-1px);
            text-decoration: underline;
        }
        a:focus-visible {
            outline: 2px solid #f7d44a;
            outline-offset: 4px;
            border-radius: 2px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #fff6e0;
            letter-spacing: 0.01em;
        }
        h1 {
            font-size: 2.6rem;
            margin-bottom: 1.2rem;
            background: linear-gradient(135deg, #f7d44a 0%, #f9b81b 80%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 2rem;
            margin-top: 2.8rem;
            margin-bottom: 1rem;
            border-left: 5px solid #f7d44a;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.5rem;
            margin-top: 2rem;
            margin-bottom: 0.8rem;
            color: #f7e6b0;
        }
        h4 {
            font-size: 1.2rem;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
            color: #ebd48a;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
            color: #d9d4cc;
        }
        ul,
        ol {
            margin-bottom: 1.5rem;
            padding-left: 1.8rem;
            color: #d9d4cc;
        }
        li {
            margin-bottom: 0.5rem;
        }
        strong {
            color: #fff3cd;
            font-weight: 600;
        }
        em {
            color: #f7d44a;
            font-style: italic;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        .site-header {
            background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1f 100%);
            padding: 1rem 0;
            border-bottom: 2px solid #2a2a4a;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(6px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem 1.2rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f7d44a, #f9b81b, #f7d44a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: #f7d44a;
            font-size: 1.8rem;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 1.2rem 1.8rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            font-weight: 500;
            font-size: 1rem;
            padding: 0.4rem 0.2rem;
            position: relative;
            color: #cfc9b5;
            transition: color 0.25s;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: #f7d44a;
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after,
        .main-nav a:focus-visible::after {
            width: 100%;
        }
        .main-nav a:hover {
            color: #f7d44a;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 6px 4px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(247, 212, 74, 0.12);
        }
        .hamburger span {
            display: block;
            width: 30px;
            height: 3px;
            background: #f7d44a;
            border-radius: 4px;
            transition: all 0.3s ease;
            transform-origin: center;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }
        .breadcrumb {
            background: #14142a;
            padding: 0.7rem 0;
            border-bottom: 1px solid #252545;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: '›';
            margin-right: 0.6rem;
            color: #8888aa;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #b0aac0;
        }
        .breadcrumb a:hover {
            color: #f7d44a;
        }
        .breadcrumb .current {
            color: #f7d44a;
            font-weight: 500;
        }
        .hero {
            padding: 2.5rem 0 2rem;
            background: radial-gradient(ellipse at 30% 40%, #1a1a3a, #0a0a18);
        }
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
            align-items: center;
        }
        .hero-text .badge {
            display: inline-block;
            background: #f7d44a22;
            border: 1px solid #f7d44a55;
            color: #f7d44a;
            padding: 0.2rem 1rem;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.6px;
            margin-bottom: 0.8rem;
        }
        .search-block {
            background: #1a1a30;
            border-radius: 16px;
            padding: 2rem 2rem 2.2rem;
            margin: 2.5rem 0;
            border: 1px solid #2f2f55;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);
        }
        .search-form {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            max-width: 720px;
            margin: 0 auto;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 0.9rem 1.4rem;
            border-radius: 50px;
            border: 2px solid #33335a;
            background: #0d0d1f;
            color: #f0e8d8;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        .search-form input:focus {
            border-color: #f7d44a;
            box-shadow: 0 0 0 4px #f7d44a22;
        }
        .search-form button {
            padding: 0.9rem 2rem;
            border-radius: 50px;
            border: none;
            background: linear-gradient(135deg, #f7d44a, #e8b820);
            color: #0d0d1a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.3s;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .search-form button:hover {
            transform: scale(1.03);
            box-shadow: 0 6px 24px #f7d44a44;
        }
        .user-tools {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 3rem 0;
        }
        .user-card {
            background: #161630;
            border-radius: 18px;
            padding: 1.8rem 2rem 2.2rem;
            border: 1px solid #2e2e56;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        .user-card:hover {
            border-color: #f7d44a55;
            box-shadow: 0 8px 32px rgba(247, 212, 74, 0.08);
        }
        .user-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 1.4rem;
        }
        .user-card form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 0.6rem;
        }
        .user-card textarea,
        .user-card select {
            padding: 0.8rem 1rem;
            border-radius: 12px;
            border: 2px solid #33335a;
            background: #0c0c1e;
            color: #eaeaea;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 80px;
            outline: none;
            transition: border-color 0.3s;
        }
        .user-card textarea:focus,
        .user-card select:focus {
            border-color: #f7d44a;
        }
        .user-card select {
            min-height: auto;
            padding: 0.7rem 1rem;
        }
        .user-card .btn-submit {
            padding: 0.7rem 1.8rem;
            border-radius: 50px;
            border: none;
            background: linear-gradient(135deg, #f7d44a, #e0b020);
            color: #0d0d1a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.3s;
            align-self: flex-start;
        }
        .user-card .btn-submit:hover {
            transform: scale(1.02);
            box-shadow: 0 4px 20px #f7d44a44;
        }
        .content-section {
            padding: 1.8rem 0 2.5rem;
            border-bottom: 1px solid #222244;
        }
        .content-section:last-of-type {
            border-bottom: none;
        }
        .feature-box {
            background: #14142a;
            border-left: 4px solid #f7d44a;
            padding: 1.5rem 2rem;
            border-radius: 0 16px 16px 0;
            margin: 1.8rem 0;
        }
        .feature-box p:last-child {
            margin-bottom: 0;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-item {
            background: #12122a;
            padding: 1.5rem 1.2rem;
            border-radius: 16px;
            text-align: center;
            border: 1px solid #2a2a50;
            transition: transform 0.3s, border-color 0.3s;
        }
        .stat-item:hover {
            transform: translateY(-4px);
            border-color: #f7d44a66;
        }
        .stat-item .num {
            font-size: 2.8rem;
            font-weight: 800;
            color: #f7d44a;
            display: block;
            line-height: 1.2;
        }
        .stat-item .label {
            font-size: 0.95rem;
            color: #a9a9c8;
            margin-top: 0.3rem;
        }
        .interview-card {
            background: #181838;
            border-radius: 20px;
            padding: 2rem 2.2rem;
            margin: 2rem 0;
            border: 1px solid #3a3a66;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
        }
        .interview-card .quote {
            font-size: 1.2rem;
            font-style: italic;
            color: #f0e4c8;
            border-left: 4px solid #f7d44a;
            padding-left: 1.5rem;
            margin: 1rem 0;
        }
        .interview-card .attribution {
            font-weight: 600;
            color: #f7d44a;
            text-align: right;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
            list-style: none;
            padding: 0;
            margin: 1.2rem 0;
        }
        .link-list-inline li a {
            background: #1f1f42;
            padding: 0.3rem 1rem;
            border-radius: 30px;
            font-size: 0.9rem;
            border: 1px solid #3a3a66;
            transition: all 0.25s;
            display: inline-block;
        }
        .link-list-inline li a:hover {
            background: #f7d44a22;
            border-color: #f7d44a88;
            transform: translateY(-2px);
        }
        .image-wrapper {
            margin: 2.2rem 0;
            border-radius: 14px;
            overflow: hidden;
            background: #0a0a1a;
            padding: 0.6rem;
            border: 1px solid #2c2c52;
        }
        .image-wrapper figcaption {
            text-align: center;
            font-size: 0.85rem;
            color: #9999bb;
            padding: 0.6rem 0 0.2rem;
        }
        .site-footer {
            background: #0a0a1a;
            border-top: 2px solid #1f1f42;
            padding: 3rem 0 1.8rem;
            margin-top: 3rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2.5rem;
            margin-bottom: 2rem;
        }
        .footer-grid h4 {
            color: #f7d44a;
            margin-top: 0;
            font-size: 1.1rem;
        }
        .footer-grid ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-grid ul li {
            margin-bottom: 0.4rem;
        }
        .footer-grid ul li a {
            color: #b0aac0;
            font-size: 0.95rem;
        }
        .footer-grid ul li a:hover {
            color: #f7d44a;
        }
        friend-link {
            display: block;
            background: #12122a;
            border-radius: 14px;
            padding: 1.2rem 1.8rem;
            margin: 1.2rem 0 0.8rem;
            border: 1px solid #2f2f55;
            font-size: 0.95rem;
            color: #cfc9b5;
        }
        friend-link a {
            color: #f7d44a;
            font-weight: 500;
            margin: 0 0.4rem;
        }
        .copyright {
            text-align: center;
            border-top: 1px solid #1f1f42;
            padding-top: 1.5rem;
            margin-top: 1.5rem;
            font-size: 0.9rem;
            color: #8888aa;
        }
        .copyright strong {
            color: #cfc9b5;
        }
        @media (max-width: 900px) {
            .hero-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .hero-grid .image-wrapper {
                max-width: 500px;
                margin: 0 auto;
            }
            .user-tools {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            h1 {
                font-size: 2.1rem;
            }
            h2 {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 700px) {
            .hamburger {
                display: flex;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                background: #0f0f25;
                padding: 1rem 1.2rem;
                border-radius: 16px;
                margin-top: 0.6rem;
                border: 1px solid #2a2a50;
                gap: 0.6rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 0.4rem;
                border-bottom: 1px solid #1f1f42;
            }
            .main-nav a:last-child {
                border-bottom: none;
            }
            .header-inner {
                align-items: center;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                justify-content: center;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .container {
                padding: 0 1rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .user-card {
                padding: 1.4rem 1.2rem;
            }
        }
        @media (max-width: 440px) {
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .my-logo i {
                font-size: 1.4rem;
            }
        }
        @media (prefers-reduced-motion: no-preference) {
            .stat-item,
            .interview-card,
            .feature-box {
                animation: fadeUp 0.5s ease both;
            }
            @keyframes fadeUp {
                from {
                    opacity: 0;
                    transform: translateY(20px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
        }
