        *,
        *::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, sans-serif;
            background: #0b0a0a;
            color: #e8e2d8;
            line-height: 1.7;
            min-height: 100vh;
        }
        a {
            color: #f5c542;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus {
            color: #ffd966;
            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(145deg, #1a1515 0%, #2a1f1a 100%);
            border-bottom: 2px solid #f5c54233;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(4px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: 0.04em;
            background: linear-gradient(135deg, #f5c542, #e8a82e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 12px rgba(245, 197, 66, 0.25);
            display: inline-block;
            padding: 4px 0;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.92;
        }
        .my-logo small {
            font-size: 0.55rem;
            font-weight: 400;
            -webkit-text-fill-color: #b8a99a;
            display: block;
            letter-spacing: 0.15em;
            text-transform: uppercase;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f5c542;
            color: #f5c542;
            font-size: 1.6rem;
            padding: 4px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #f5c54222;
        }
        .main-nav {
            display: flex;
            gap: 8px 20px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            padding: 6px 10px;
            border-radius: 6px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #dcd2c6;
            transition: 0.2s;
            white-space: nowrap;
        }
        .main-nav a:hover {
            background: #f5c5421a;
            color: #f5c542;
            text-decoration: none;
        }
        .main-nav a.active {
            color: #f5c542;
            border-bottom: 2px solid #f5c542;
        }
        .breadcrumb {
            padding: 10px 0 4px;
            font-size: 0.82rem;
            color: #a09387;
            display: flex;
            flex-wrap: wrap;
            gap: 4px 8px;
        }
        .breadcrumb a {
            color: #cbb29b;
        }
        .breadcrumb a:hover {
            color: #f5c542;
        }
        .breadcrumb span {
            color: #7a6e64;
        }
        .hero {
            padding: 40px 0 30px;
            text-align: center;
            background: radial-gradient(ellipse at center, #2a1f1a 0%, #0b0a0a 70%);
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f5c542, #f0b832, #dba12a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 12px;
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 780px;
            margin: 0 auto 16px;
            color: #c9bdb2;
        }
        .hero-meta {
            font-size: 0.9rem;
            color: #9a8c80;
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }
        .hero-meta i {
            color: #f5c542;
            margin-right: 6px;
        }
        .content-section {
            padding: 40px 0;
            border-bottom: 1px solid #2f2824;
        }
        .content-section:last-of-type {
            border-bottom: none;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #f5c542;
            margin: 0 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f5c54233;
            position: relative;
        }
        h2::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 80px;
            height: 2px;
            background: #f5c542;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #ecd8c0;
            margin: 28px 0 14px;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #dcc9b4;
            margin: 20px 0 10px;
            padding-left: 8px;
            border-left: 3px solid #f5c542;
        }
        p {
            margin-bottom: 16px;
            color: #ddd6cd;
        }
        .lead {
            font-size: 1.08rem;
            color: #ede5db;
        }
        .highlight-box {
            background: #1f1917;
            border-left: 4px solid #f5c542;
            padding: 18px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 24px 0;
        }
        .stat-card {
            background: #1f1917;
            padding: 20px 16px;
            border-radius: 14px;
            text-align: center;
            border: 1px solid #3d322c;
            transition: transform 0.2s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            border-color: #f5c54255;
        }
        .stat-card .num {
            font-size: 2.2rem;
            font-weight: 800;
            color: #f5c542;
            display: block;
        }
        .stat-card .label {
            font-size: 0.9rem;
            color: #b8a99a;
            margin-top: 4px;
        }
        .interview-block {
            background: #1a1412;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 24px 0;
            border: 1px solid #3d322c;
        }
        .interview-block .speaker {
            font-weight: 700;
            color: #f5c542;
        }
        .interview-block .quote {
            font-style: italic;
            color: #e8ddd0;
            padding-left: 16px;
            border-left: 3px solid #f5c54266;
            margin: 8px 0;
        }
        .img-wrap {
            margin: 28px 0;
            border-radius: 14px;
            overflow: hidden;
            background: #1f1917;
            padding: 8px;
            border: 1px solid #3d322c;
        }
        .img-wrap img {
            border-radius: 10px;
            width: 100%;
        }
        .img-wrap figcaption {
            padding: 10px 12px 4px;
            font-size: 0.85rem;
            color: #a09387;
            text-align: center;
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            padding: 12px 0;
            list-style: none;
        }
        .link-list li a {
            background: #1f1917;
            padding: 4px 14px;
            border-radius: 20px;
            border: 1px solid #3d322c;
            font-size: 0.9rem;
            transition: 0.2s;
        }
        .link-list li a:hover {
            background: #f5c54211;
            border-color: #f5c54266;
            text-decoration: none;
        }
        .interactive-forms {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 36px 0 20px;
        }
        .form-card {
            background: #1a1412;
            border-radius: 16px;
            padding: 24px 28px;
            border: 1px solid #3d322c;
        }
        .form-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .form-card form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .form-card input,
        .form-card textarea,
        .form-card select {
            background: #0f0c0b;
            border: 1px solid #3d322c;
            border-radius: 8px;
            padding: 12px 16px;
            color: #e8e2d8;
            font-size: 0.95rem;
            transition: 0.2s;
            font-family: inherit;
        }
        .form-card input:focus,
        .form-card textarea:focus,
        .form-card select:focus {
            outline: none;
            border-color: #f5c542;
            box-shadow: 0 0 0 3px #f5c54222;
        }
        .form-card textarea {
            min-height: 90px;
            resize: vertical;
        }
        .form-card button {
            background: #f5c542;
            color: #0b0a0a;
            border: none;
            padding: 12px 20px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
        }
        .form-card button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .form-card .note {
            font-size: 0.8rem;
            color: #8a7e74;
            margin-top: 6px;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.6rem;
            color: #4a3f38;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating i {
            transition: 0.2s;
        }
        .star-rating i:hover,
        .star-rating i:hover~i {
            color: #f5c542;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #4a3f38;
            transition: 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f5c542;
        }
        .star-rating input:checked~label {
            color: #f5c542;
        }
        .site-footer {
            background: #0f0c0b;
            border-top: 2px solid #2f2824;
            padding: 36px 0 24px;
            margin-top: 20px;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 24px;
        }
        .footer-col {
            flex: 1 1 200px;
        }
        .footer-col h4 {
            color: #f5c542;
            border-left: none;
            padding-left: 0;
            margin-top: 0;
            font-size: 1.1rem;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
        }
        .footer-col li {
            margin-bottom: 6px;
        }
        .footer-col a {
            color: #b8a99a;
            font-size: 0.9rem;
        }
        .footer-col a:hover {
            color: #f5c542;
        }
        friend-link {
            display: block;
            padding: 14px 0 6px;
            font-size: 0.9rem;
            color: #a09387;
        }
        friend-link a {
            color: #cbb29b;
            margin: 0 6px;
        }
        friend-link a:hover {
            color: #f5c542;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            font-size: 0.82rem;
            color: #6a6058;
            border-top: 1px solid #2f2824;
            margin-top: 20px;
        }
        .copyright a {
            color: #b8a99a;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 16px 0 8px;
                gap: 4px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 12px;
                width: 100%;
                border-radius: 0;
                border-bottom: 1px solid #2f2824;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .interactive-forms {
                grid-template-columns: 1fr;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .form-card {
                padding: 16px;
            }
            .breadcrumb {
                font-size: 0.7rem;
            }
        }
        .main-nav {
            transition: all 0.3s ease;
        }
        section[id] {
            scroll-margin-top: 90px;
        }
        .content-section p,
        .content-section li {
            max-width: 780px;
        }
        .content-section ul,
        .content-section ol {
            padding-left: 24px;
            margin-bottom: 16px;
            color: #ddd6cd;
        }
        .content-section li {
            margin-bottom: 6px;
        }
        .inline-icon {
            color: #f5c542;
            margin-right: 6px;
        }
        .tag {
            display: inline-block;
            background: #f5c5421a;
            color: #f5c542;
            padding: 2px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-right: 6px;
        }
