        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
            background: #0d0d0d;
            color: #e8e0d0;
            line-height: 1.8;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f0b42a;
            text-decoration: none;
            transition: color 0.25s ease, border-color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #f5eedc;
            letter-spacing: 0.01em;
        }
        h1 {
            font-size: 2.6rem;
            margin-bottom: 1rem;
            border-left: 6px solid #f0b42a;
            padding-left: 1.2rem;
        }
        h2 {
            font-size: 2rem;
            margin-top: 3rem;
            margin-bottom: 1.2rem;
            border-bottom: 2px solid #2a2a2a;
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.5rem;
            margin-top: 2.2rem;
            margin-bottom: 0.8rem;
        }
        h4 {
            font-size: 1.2rem;
            margin-top: 1.6rem;
            margin-bottom: 0.5rem;
            color: #f0d9a0;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        .site-header {
            background: #141414;
            border-bottom: 3px solid #2a2a2a;
            position: sticky;
            top: 0;
            z-index: 100;
            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;
            padding: 0.8rem 0;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #f0b42a;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            font-size: 2rem;
            color: #f0b42a;
        }
        .my-logo span {
            background: linear-gradient(135deg, #f0b42a, #d48c1a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            color: #888;
            -webkit-text-fill-color: #888;
            background: none;
            letter-spacing: 0.3px;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 0.3rem;
            padding: 0;
            margin: 0;
            flex-wrap: wrap;
        }
        .nav-list li a {
            display: block;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #ccc;
            border: 1px solid transparent;
            transition: all 0.25s ease;
        }
        .nav-list li a:hover,
        .nav-list li a:focus {
            background: #2a2a2a;
            color: #f0b42a;
            border-color: #f0b42a;
            text-decoration: none;
        }
        .nav-list li a.active {
            background: #f0b42a;
            color: #0d0d0d;
            border-color: #f0b42a;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid #f0b42a;
            color: #f0b42a;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.25s ease;
        }
        .hamburger:hover {
            background: #f0b42a;
            color: #0d0d0d;
        }
        .mobile-nav {
            display: none;
            width: 100%;
            background: #1a1a1a;
            border-top: 1px solid #2a2a2a;
            padding: 0.8rem 0;
            margin-top: 0.5rem;
            border-radius: 0 0 16px 16px;
        }
        .mobile-nav.open {
            display: block;
        }
        .mobile-nav .nav-list {
            flex-direction: column;
            gap: 0;
        }
        .mobile-nav .nav-list li a {
            padding: 0.8rem 1.2rem;
            border-radius: 0;
            border: none;
            border-bottom: 1px solid #2a2a2a;
        }
        .mobile-nav .nav-list li:last-child a {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 0.6rem 0;
            font-size: 0.85rem;
            color: #999;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem;
            list-style: none;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 0.5rem;
            color: #666;
        }
        .breadcrumb a {
            color: #bbb;
        }
        .breadcrumb a:hover {
            color: #f0b42a;
        }
        .breadcrumb .current {
            color: #f0b42a;
        }
        .hero {
            background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
            padding: 3rem 0 2.5rem;
            border-bottom: 1px solid #2a2a2a;
        }
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
            align-items: center;
        }
        .hero-content h1 {
            font-size: 2.8rem;
            margin-bottom: 0.8rem;
        }
        .hero-content p {
            font-size: 1.15rem;
            color: #ccc;
            max-width: 540px;
        }
        .hero-img {
            border-radius: 16px;
            box-shadow: 0 8px 40px rgba(240, 180, 42, 0.15);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }
        .hero-img:hover {
            transform: scale(1.01);
            box-shadow: 0 12px 60px rgba(240, 180, 42, 0.25);
        }
        .main-content {
            flex: 1;
            padding: 2.5rem 0 4rem;
        }
        .section-card {
            background: #161616;
            border-radius: 16px;
            padding: 2rem 2.2rem;
            margin-bottom: 2.5rem;
            border: 1px solid #2a2a2a;
            transition: border-color 0.3s ease;
        }
        .section-card:hover {
            border-color: #3a3a3a;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.8rem;
            margin: 1.8rem 0;
        }
        .feature-item {
            background: #1e1e1e;
            padding: 1.6rem 1.4rem;
            border-radius: 12px;
            border-left: 4px solid #f0b42a;
            transition: background 0.3s ease, transform 0.2s ease;
        }
        .feature-item:hover {
            background: #242424;
            transform: translateY(-2px);
        }
        .feature-item i {
            color: #f0b42a;
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }
        .stats-row {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem 2rem;
            background: #1a1a1a;
            padding: 1.2rem 1.8rem;
            border-radius: 12px;
            margin: 1.5rem 0;
            border: 1px solid #2a2a2a;
        }
        .stats-row span {
            font-weight: 600;
            color: #f0b42a;
        }
        .interview-block {
            background: #1a1a1a;
            border-radius: 14px;
            padding: 1.8rem;
            margin: 1.5rem 0;
            border-left: 6px solid #f0b42a;
        }
        .interview-block .quote {
            font-style: italic;
            font-size: 1.1rem;
            color: #ddd;
            quotes: "“" "”" "‘" "’";
        }
        .interview-block .quote::before {
            content: "“";
            font-size: 2.2rem;
            color: #f0b42a;
            line-height: 0;
            vertical-align: -0.4rem;
            margin-right: 0.2rem;
        }
        .interview-block .quote::after {
            content: "”";
            font-size: 2.2rem;
            color: #f0b42a;
            line-height: 0;
            vertical-align: -0.4rem;
            margin-left: 0.2rem;
        }
        .interview-block .attribution {
            margin-top: 0.8rem;
            font-weight: 600;
            color: #f0b42a;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.95rem;
        }
        .data-table th {
            background: #2a2a2a;
            color: #f0b42a;
            padding: 0.7rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 0.6rem 1rem;
            border-bottom: 1px solid #2a2a2a;
        }
        .data-table tr:hover td {
            background: #1e1e1e;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #f0d9a0;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            background: #1a1a1a;
            border: 1px solid #3a3a3a;
            border-radius: 8px;
            color: #e8e0d0;
            font-size: 1rem;
            transition: border-color 0.25s ease, box-shadow 0.25s ease;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #f0b42a;
            box-shadow: 0 0 0 3px rgba(240, 180, 42, 0.15);
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            display: inline-block;
            padding: 0.7rem 1.8rem;
            background: #f0b42a;
            color: #0d0d0d;
            font-weight: 700;
            border: none;
            border-radius: 30px;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.25s ease;
        }
        .btn:hover {
            background: #ffc94d;
            transform: scale(1.02);
            box-shadow: 0 4px 20px rgba(240, 180, 42, 0.3);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #f0b42a;
            color: #f0b42a;
        }
        .btn-outline:hover {
            background: #f0b42a;
            color: #0d0d0d;
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            cursor: pointer;
            color: #555;
            transition: color 0.2s ease;
        }
        .rating-stars .star {
            transition: color 0.2s ease, transform 0.15s ease;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: #f0b42a;
            transform: scale(1.15);
        }
        .rating-stars .star.active-permanent {
            color: #f0b42a;
        }
        .comment-item {
            background: #1a1a1a;
            padding: 1rem 1.4rem;
            border-radius: 10px;
            margin-bottom: 0.8rem;
            border-left: 4px solid #3a3a3a;
        }
        .comment-item .meta {
            font-size: 0.85rem;
            color: #999;
            display: flex;
            gap: 1rem;
            margin-bottom: 0.3rem;
        }
        .comment-item .meta strong {
            color: #f0b42a;
        }
        .site-footer {
            background: #0a0a0a;
            border-top: 3px solid #1a1a1a;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-grid h4 {
            color: #f0b42a;
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
        }
        .footer-grid ul {
            list-style: none;
            padding: 0;
        }
        .footer-grid ul li {
            margin-bottom: 0.4rem;
        }
        .footer-grid ul li a {
            color: #aaa;
            font-size: 0.9rem;
        }
        .footer-grid ul li a:hover {
            color: #f0b42a;
        }
        friend-link {
            display: block;
            padding: 0.8rem 1.2rem;
            background: #111;
            border-radius: 10px;
            border: 1px solid #2a2a2a;
            margin-top: 0.5rem;
            font-size: 0.9rem;
            color: #ccc;
        }
        friend-link a {
            color: #f0b42a;
            font-weight: 500;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #1a1a1a;
            color: #777;
            font-size: 0.85rem;
        }
        .copyright a {
            color: #aaa;
        }
        .copyright a:hover {
            color: #f0b42a;
        }
        .last-update {
            text-align: right;
            font-size: 0.8rem;
            color: #666;
            margin-top: 0.5rem;
        }
        @media (max-width: 992px) {
            .hero-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .hero-content p {
                max-width: 100%;
            }
            .hero-content h1 {
                font-size: 2.2rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .section-card {
                padding: 1.5rem;
            }
        }
        @media (max-width: 768px) {
            .nav-list {
                display: none;
            }
            .hamburger {
                display: inline-block;
            }
            .header-inner {
                padding: 0.5rem 0;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .hero {
                padding: 2rem 0 1.5rem;
            }
            .hero-content h1 {
                font-size: 1.8rem;
            }
            .feature-grid {
                grid-template-columns: 1fr;
            }
            .stats-row {
                flex-direction: column;
                gap: 0.5rem;
                padding: 1rem;
            }
            .data-table {
                font-size: 0.8rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.4rem 0.6rem;
            }
            .rating-stars {
                font-size: 1.4rem;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }
            h1 {
                font-size: 1.5rem;
                padding-left: 0.8rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            h3 {
                font-size: 1.1rem;
            }
            .section-card {
                padding: 1rem;
            }
            .btn {
                padding: 0.5rem 1.2rem;
                font-size: 0.9rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
        }
        .text-gold {
            color: #f0b42a;
        }
        .fw-700 {
            font-weight: 700;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .gap-1 {
            gap: 1rem;
        }
        .gap-2 {
            gap: 2rem;
        }
        .rounded-full {
            border-radius: 999px;
        }
        .bg-dark-2 {
            background: #1a1a1a;
        }
        .p-1 {
            padding: 1rem;
        }
        .p-2 {
            padding: 2rem;
        }
