        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, Arial, sans-serif;
            background: #0b0c0e;
            color: #e8e6e3;
            line-height: 1.75;
            padding: 0;
            margin: 0;
        }
        a {
            color: #f5b85e;
            text-decoration: none;
            transition: color 0.25s;
        }
        a:hover,
        a:focus {
            color: #ffd700;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin: 1rem 0;
        }
        li {
            margin-bottom: 0.5rem;
        }
        hr {
            border: none;
            border-top: 1px solid #2a2c31;
            margin: 2.5rem 0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: #14161b;
            border-bottom: 2px solid #2c2f38;
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(8px);
            background: rgba(20, 22, 27, 0.96);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem 1.25rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f5b85e, #ffd700, #f5b85e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 20px rgba(245, 184, 94, 0.2);
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            font-size: 1.6rem;
            -webkit-text-fill-color: initial;
            color: #f5b85e;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            letter-spacing: 2px;
            -webkit-text-fill-color: initial;
            color: #a0a4b0;
            margin-left: 0.3rem;
        }
        .my-logo:hover {
            text-decoration: none;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 0.25rem 1rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #c8cbd1;
            font-weight: 500;
            padding: 0.4rem 0.6rem;
            border-radius: 6px;
            font-size: 0.95rem;
            transition: background 0.2s, color 0.2s;
        }
        .main-nav a:hover {
            background: #2a2c31;
            color: #ffd700;
            text-decoration: none;
        }
        .main-nav a.active {
            color: #ffd700;
            background: #1e2026;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #e8e6e3;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
            border-radius: 4px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #2a2c31;
        }
        .breadcrumb {
            background: #1a1c23;
            padding: 0.7rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #282b32;
        }
        .breadcrumb ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            color: #6b7080;
            margin-right: 0.6rem;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #a0a4b0;
        }
        .breadcrumb a:hover {
            color: #ffd700;
        }
        .breadcrumb .current {
            color: #f5b85e;
            font-weight: 500;
        }
        .hero {
            padding: 3rem 0 2.5rem;
            background: radial-gradient(ellipse at 20% 30%, #1f232c, #0b0c0e);
            text-align: center;
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            background: linear-gradient(135deg, #f5b85e, #ffddaa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.75rem;
            letter-spacing: -0.5px;
        }
        .hero p {
            font-size: 1.2rem;
            color: #b0b4c0;
            max-width: 780px;
            margin: 0.5rem auto 1rem;
        }
        .hero .meta-info {
            font-size: 0.95rem;
            color: #7a7f8e;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem 2rem;
            margin-top: 1rem;
        }
        .hero .meta-info i {
            margin-right: 0.4rem;
            color: #f5b85e;
        }
        .last-updated {
            background: #1e2026;
            padding: 0.25rem 1rem;
            border-radius: 20px;
            display: inline-block;
            font-size: 0.85rem;
        }
        .section {
            padding: 2.5rem 0;
        }
        .section h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #ffddaa;
            margin: 2rem 0 1rem;
            border-left: 4px solid #f5b85e;
            padding-left: 1rem;
        }
        .section h2:first-of-type {
            margin-top: 0;
        }
        .section h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #f5d78e;
            margin: 1.8rem 0 0.8rem;
        }
        .section h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #e0c78a;
            margin: 1.2rem 0 0.5rem;
        }
        .section p {
            margin: 1rem 0;
            color: #d6d4d0;
        }
        .section p strong {
            color: #f5e3c0;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
            background: #1a1c23;
        }
        .featured-image img {
            width: 100%;
            height: auto;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 0.75rem 1.25rem;
            font-size: 0.9rem;
            color: #8a8f9e;
            background: #17191f;
            font-style: italic;
        }
        .highlight-box {
            background: #1c1f27;
            border-left: 4px solid #f5b85e;
            padding: 1.5rem 2rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .highlight-box h4 {
            margin-top: 0;
            color: #ffd700;
        }
        .two-col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2rem 0;
        }
        .interview-block {
            background: #181a21;
            border-radius: 14px;
            padding: 1.8rem 2rem;
            margin: 1.8rem 0;
            border: 1px solid #2c2f38;
        }
        .interview-block .speaker {
            font-weight: 700;
            color: #f5b85e;
            display: block;
            margin-bottom: 0.3rem;
        }
        .interview-block .quote {
            font-style: italic;
            color: #d0cec8;
            padding-left: 1rem;
            border-left: 3px solid #f5b85e;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            font-size: 0.95rem;
            background: #181a21;
            border-radius: 10px;
            overflow: hidden;
        }
        .data-table th {
            background: #23262e;
            color: #ffddaa;
            padding: 0.9rem 1.2rem;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 0.8rem 1.2rem;
            border-bottom: 1px solid #2a2c31;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .form-card {
            background: #181a21;
            border-radius: 14px;
            padding: 2rem;
            border: 1px solid #2c2f38;
            margin: 2rem 0;
        }
        .form-card h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 500;
            margin-bottom: 0.3rem;
            color: #c8cbd1;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border-radius: 8px;
            border: 1px solid #363a44;
            background: #0f1116;
            color: #e8e6e3;
            font-size: 1rem;
            transition: border 0.2s, box-shadow 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #f5b85e;
            box-shadow: 0 0 0 3px rgba(245, 184, 94, 0.15);
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            display: inline-block;
            padding: 0.7rem 1.8rem;
            border-radius: 8px;
            border: none;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.1s;
            background: linear-gradient(135deg, #f5b85e, #e0a84c);
            color: #0b0c0e;
        }
        .btn:hover {
            background: linear-gradient(135deg, #ffc870, #f5b85e);
            transform: translateY(-1px);
            text-decoration: none;
        }
        .btn:active {
            transform: translateY(1px);
        }
        .btn-outline {
            background: transparent;
            border: 1px solid #f5b85e;
            color: #f5b85e;
        }
        .btn-outline:hover {
            background: rgba(245, 184, 94, 0.1);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            font-size: 1.8rem;
            margin: 0.5rem 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #484b54;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5b85e;
        }
        friend-link {
            display: block;
            padding: 2rem 0;
            border-top: 1px solid #2a2c31;
            margin-top: 2rem;
        }
        friend-link ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.5rem;
            padding: 0;
            margin: 0.5rem 0 0;
        }
        friend-link li a {
            color: #a0a4b0;
            font-size: 0.92rem;
            border-bottom: 1px dotted transparent;
        }
        friend-link li a:hover {
            color: #ffd700;
            border-bottom-color: #ffd700;
            text-decoration: none;
        }
        .site-footer {
            background: #0f1116;
            border-top: 1px solid #2a2c31;
            padding: 2rem 0 1.5rem;
            text-align: center;
            font-size: 0.9rem;
            color: #6b7080;
        }
        .site-footer .copyright {
            margin-top: 0.5rem;
        }
        @media (max-width: 900px) {
            .two-col {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #14161b;
                padding: 0.75rem 0 1rem;
                border-top: 1px solid #2a2c31;
                margin-top: 0.5rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 1rem;
                width: 100%;
                border-radius: 0;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .section h2 {
                font-size: 1.6rem;
            }
            .section h3 {
                font-size: 1.3rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .header-inner {
                gap: 0.5rem;
            }
            .form-card {
                padding: 1.2rem;
            }
            .data-table {
                font-size: 0.85rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.6rem 0.8rem;
            }
            .highlight-box {
                padding: 1rem 1.2rem;
            }
            .interview-block {
                padding: 1.2rem 1.2rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .container {
                padding: 0 0.9rem;
            }
            .hero .meta-info {
                flex-direction: column;
                gap: 0.3rem;
            }
            .star-rating {
                font-size: 1.4rem;
            }
        }
        .skip-link {
            position: absolute;
            top: -100px;
            left: 0;
            background: #f5b85e;
            color: #0b0c0e;
            padding: 0.5rem 1rem;
            font-weight: 600;
            z-index: 9999;
        }
        .skip-link:focus {
            top: 0;
        }
        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }
            * {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
            }
        }
