        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0b0a0a;
            color: #f5f0e8;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f7d44a;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffec99;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #1a1a1a;
        }
        ::-webkit-scrollbar-thumb {
            background: #f7d44a;
            border-radius: 4px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1a1a 0%, #2a2418 100%);
            border-bottom: 3px solid #f7d44a;
            padding: 0.75rem 1.5rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
        }
        .header-inner {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #f7d44a, #f5b342);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(247, 212, 74, 0.3);
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #c0b28a;
            display: block;
            font-weight: 400;
            letter-spacing: 1px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f7d44a;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            transition: transform 0.2s;
        }
        .nav-toggle:hover {
            transform: scale(1.1);
        }
        .primary-nav {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            flex-wrap: wrap;
        }
        .primary-nav a {
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.9rem;
            color: #e8e0d0;
            transition: background 0.3s, color 0.3s;
        }
        .primary-nav a:hover,
        .primary-nav a:focus-visible {
            background: rgba(247, 212, 74, 0.15);
            color: #f7d44a;
            text-decoration: none;
        }
        .primary-nav a.active {
            background: #f7d44a;
            color: #1a1a1a;
        }
        .breadcrumb {
            background: #161412;
            padding: 0.6rem 1.5rem;
            font-size: 0.85rem;
            border-bottom: 1px solid #2a2a2a;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #888;
        }
        .breadcrumb a {
            color: #c0b28a;
        }
        .breadcrumb .current {
            color: #f7d44a;
            font-weight: 600;
        }
        .main-wrapper {
            max-width: 1280px;
            margin: 0 auto;
            padding: 2rem 1.5rem;
            flex: 1;
            width: 100%;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 0.5rem;
            background: linear-gradient(135deg, #f7d44a, #f5b342);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-top: 3rem;
            margin-bottom: 1rem;
            color: #f7d44a;
            border-left: 5px solid #f7d44a;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
            color: #f5e6c8;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
            color: #e8d5b0;
        }
        p {
            margin-bottom: 1.2rem;
            color: #ddd6cb;
        }
        .lead {
            font-size: 1.2rem;
            color: #f0e8d8;
            font-weight: 400;
            margin-bottom: 2rem;
        }
        .last-updated {
            display: inline-block;
            background: #1f1b16;
            padding: 0.4rem 1rem;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #c0b28a;
            margin-bottom: 1.5rem;
            border: 1px solid #3a3024;
        }
        .last-updated i {
            margin-right: 0.4rem;
            color: #f7d44a;
        }
        .hero-image-wrap {
            margin: 1.5rem 0 2.5rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(247, 212, 74, 0.15);
            position: relative;
        }
        .hero-image-wrap img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .hero-image-wrap .img-credit {
            position: absolute;
            bottom: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.7);
            color: #c0b28a;
            font-size: 0.75rem;
            padding: 0.3rem 0.8rem;
            border-top-left-radius: 8px;
        }
        .highlight-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .highlight-card {
            background: linear-gradient(145deg, #1c1916, #26221c);
            border: 1px solid #3a342c;
            border-radius: 14px;
            padding: 1.5rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        }
        .highlight-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(247, 212, 74, 0.12);
            border-color: #f7d44a44;
        }
        .highlight-card i {
            font-size: 2rem;
            color: #f7d44a;
            margin-bottom: 0.75rem;
        }
        .highlight-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .highlight-card p {
            font-size: 0.95rem;
            margin-bottom: 0;
        }
        .data-table-wrap {
            overflow-x: auto;
            margin: 2rem 0;
            border-radius: 12px;
            border: 1px solid #2a2a2a;
            background: #141210;
        }
        .data-table-wrap table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            min-width: 600px;
        }
        .data-table-wrap th,
        .data-table-wrap td {
            padding: 0.9rem 1.2rem;
            text-align: left;
            border-bottom: 1px solid #2a2a2a;
        }
        .data-table-wrap th {
            background: #1f1b16;
            color: #f7d44a;
            font-weight: 600;
            white-space: nowrap;
        }
        .data-table-wrap tr:hover td {
            background: rgba(247, 212, 74, 0.04);
        }
        .interview-block {
            background: #1a1713;
            border-left: 5px solid #f7d44a;
            border-radius: 0 12px 12px 0;
            padding: 1.5rem 2rem;
            margin: 2rem 0;
            font-style: italic;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .interview-block .attribution {
            margin-top: 1rem;
            font-style: normal;
            color: #f7d44a;
            font-weight: 600;
        }
        .interview-block .attribution i {
            margin-right: 0.4rem;
        }
        .form-section {
            background: #141210;
            border: 1px solid #2a2a2a;
            border-radius: 14px;
            padding: 2rem;
            margin: 2.5rem 0;
        }
        .form-section h2 {
            margin-top: 0;
            border-left-color: #f5b342;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.4rem;
            color: #e8d5b0;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.75rem 1rem;
            background: #1f1b16;
            border: 1px solid #3a342c;
            border-radius: 8px;
            color: #f5f0e8;
            font-size: 1rem;
            transition: border 0.3s, box-shadow 0.3s;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #f7d44a;
            box-shadow: 0 0 0 3px rgba(247, 212, 74, 0.15);
        }
        .form-group textarea {
            min-height: 110px;
            resize: vertical;
        }
        .btn {
            background: linear-gradient(135deg, #f7d44a, #f5b342);
            color: #1a1a1a;
            font-weight: 700;
            padding: 0.75rem 2rem;
            border: none;
            border-radius: 30px;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.3s;
            box-shadow: 0 4px 15px rgba(247, 212, 74, 0.25);
        }
        .btn:hover,
        .btn:focus-visible {
            transform: scale(1.02);
            box-shadow: 0 6px 25px rgba(247, 212, 74, 0.35);
        }
        .btn i {
            margin-right: 0.5rem;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #f7d44a;
            color: #f7d44a;
            box-shadow: none;
        }
        .btn-outline:hover {
            background: rgba(247, 212, 74, 0.1);
        }
        .star-rating {
            display: flex;
            gap: 0.4rem;
            font-size: 2rem;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #4a443a;
            transition: color 0.2s;
            cursor: pointer;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f7d44a;
        }
        friend-link {
            display: block;
            background: #141210;
            border: 1px solid #2a2a2a;
            border-radius: 12px;
            padding: 1.5rem 2rem;
            margin: 2.5rem 0 1rem;
        }
        friend-link h3 {
            margin-top: 0;
            color: #f7d44a;
            font-size: 1.3rem;
        }
        friend-link ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.5rem;
        }
        friend-link li a {
            color: #c0b28a;
            font-size: 0.95rem;
            padding: 0.2rem 0;
            border-bottom: 1px solid transparent;
            transition: border-color 0.3s, color 0.3s;
        }
        friend-link li a:hover {
            color: #f7d44a;
            border-bottom-color: #f7d44a;
            text-decoration: none;
        }
        .site-footer {
            background: #0f0e0c;
            border-top: 2px solid #2a2418;
            padding: 2rem 1.5rem 1.2rem;
            text-align: center;
            color: #888;
            font-size: 0.9rem;
            margin-top: 3rem;
        }
        .site-footer .footer-inner {
            max-width: 1280px;
            margin: 0 auto;
        }
        .site-footer .copyright {
            color: #6a645a;
            font-size: 0.85rem;
            margin-top: 0.8rem;
        }
        .site-footer a {
            color: #c0b28a;
        }
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #f7d44a;
            color: #1a1a1a;
            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(247, 212, 74, 0.3);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s, transform 0.3s, visibility 0.4s;
            transform: translateY(10px);
            z-index: 999;
        }
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .back-to-top:hover {
            transform: scale(1.1) translateY(-2px);
            color: #1a1a1a;
            text-decoration: none;
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .primary-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a1a1a;
                border-radius: 12px;
                padding: 0.75rem 0;
                border: 1px solid #2a2a2a;
                margin-top: 0.5rem;
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                padding: 0.7rem 1.5rem;
                border-radius: 0;
                width: 100%;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .main-wrapper {
                padding: 1.2rem 1rem;
            }
            .form-section {
                padding: 1.2rem;
            }
            .highlight-grid {
                grid-template-columns: 1fr;
            }
            .breadcrumb {
                font-size: 0.75rem;
                padding: 0.4rem 1rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .interview-block {
                padding: 1rem 1.2rem;
            }
            .back-to-top {
                bottom: 1.2rem;
                right: 1.2rem;
                width: 42px;
                height: 42px;
                font-size: 1.2rem;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .hero-image-wrap {
                margin: 1rem 0;
            }
            .btn {
                width: 100%;
                text-align: center;
            }
            friend-link ul {
                flex-direction: column;
                gap: 0.5rem;
            }
        }
        @media (min-width: 769px) {
            .nav-toggle {
                display: none !important;
            }
            .primary-nav {
                display: flex !important;
            }
        }
        :focus-visible {
            outline: 2px solid #f7d44a;
            outline-offset: 2px;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }
        .anchor-link {
            color: #f7d44a;
            opacity: 0.5;
            margin-left: 0.3rem;
            font-size: 0.8rem;
        }
        .anchor-link:hover {
            opacity: 1;
            text-decoration: none;
        }
