        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0d0f1a;
            color: #e2e4ec;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        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: 10px;
        }
        ul,
        ol {
            padding-left: 1.6rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 600;
            line-height: 1.3;
            color: #f5e7c8;
            margin-top: 1.6rem;
            margin-bottom: 0.8rem;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 3px solid #f5c542;
            padding-bottom: 0.5rem;
            margin-top: 0.6rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #f5c542;
            padding-left: 0.9rem;
            margin-top: 2.4rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #f0d9a8;
            margin-top: 1.8rem;
        }
        h4 {
            font-size: 1.15rem;
            color: #e6d3b0;
            margin-top: 1.2rem;
            font-weight: 500;
        }
        p {
            margin-bottom: 1rem;
            word-break: break-word;
        }
        strong,
        b {
            color: #f5e7c8;
            font-weight: 600;
        }
        em {
            color: #d4c5a0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(145deg, #14182a, #1a1f35);
            border-bottom: 2px solid #2c3555;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.6rem;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 700;
            color: #f5c542;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 8px rgba(245, 197, 66, 0.2);
            transition: transform 0.2s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo i {
            margin-right: 0.4rem;
            color: #ffd966;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .nav-list {
            list-style: none;
            display: flex;
            gap: 0.2rem;
            padding: 0;
            margin: 0;
        }
        .nav-list li a {
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #c8cee0;
            transition: background 0.2s, color 0.2s;
            display: block;
        }
        .nav-list li a:hover,
        .nav-list li a.active {
            background: #2c3555;
            color: #f5c542;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.6rem;
            background: none;
            border: none;
            color: #f5c542;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
            border-radius: 4px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #2c3555;
        }
        .breadcrumb {
            padding: 0.8rem 0 0.2rem 0;
            font-size: 0.9rem;
            color: #8e96b0;
        }
        .breadcrumb a {
            color: #8e96b0;
        }
        .breadcrumb a:hover {
            color: #f5c542;
        }
        .breadcrumb span {
            color: #c8cee0;
        }
        .hero-figure {
            margin: 1.6rem 0 2rem 0;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
            background: #1a1f35;
        }
        .hero-figure img {
            width: 100%;
            max-height: 460px;
            object-fit: cover;
        }
        .hero-figure figcaption {
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
            color: #aab2cc;
            background: #14182a;
            border-top: 1px solid #2c3555;
        }
        .last-updated {
            display: inline-block;
            font-size: 0.85rem;
            color: #8e96b0;
            background: #1a1f35;
            padding: 0.2rem 1rem;
            border-radius: 20px;
            border: 1px solid #2c3555;
            margin-bottom: 0.8rem;
        }
        .last-updated i {
            margin-right: 0.4rem;
            color: #f5c542;
        }
        .content-section {
            background: #12162a;
            border-radius: 14px;
            padding: 1.8rem 2rem;
            margin-bottom: 2.2rem;
            border: 1px solid #20273f;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
        }
        .content-section p:last-child {
            margin-bottom: 0;
        }
        .grid-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.2rem 0;
            font-size: 0.95rem;
            background: #0d0f1a;
            border-radius: 10px;
            overflow: hidden;
        }
        .grid-table th {
            background: #2c3555;
            color: #f5e7c8;
            font-weight: 600;
            padding: 0.8rem 1rem;
            text-align: left;
        }
        .grid-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #1e2440;
        }
        .grid-table tr:last-child td {
            border-bottom: none;
        }
        .grid-table tr:hover td {
            background: #1a1f35;
        }
        .highlight-box {
            background: #1e2440;
            border-left: 5px solid #f5c542;
            padding: 1.2rem 1.6rem;
            border-radius: 0 10px 10px 0;
            margin: 1.2rem 0;
        }
        .highlight-box p {
            margin-bottom: 0.4rem;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .interview-block {
            background: #1a1f35;
            border-radius: 12px;
            padding: 1.6rem;
            margin: 1.4rem 0;
            border: 1px solid #2c3555;
        }
        .interview-block .quote {
            font-style: italic;
            font-size: 1.05rem;
            color: #d4c5a0;
            padding-left: 1.2rem;
            border-left: 3px solid #f5c542;
            margin: 0.6rem 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.2rem;
            margin: 1.4rem 0;
        }
        .stat-card {
            background: #1a1f35;
            border-radius: 10px;
            padding: 1.2rem;
            text-align: center;
            border: 1px solid #2c3555;
            transition: transform 0.2s, border-color 0.2s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            border-color: #f5c542;
        }
        .stat-card .stat-value {
            font-size: 2rem;
            font-weight: 700;
            color: #f5c542;
            display: block;
        }
        .stat-card .stat-label {
            font-size: 0.9rem;
            color: #aab2cc;
            margin-top: 0.2rem;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-group label {
            display: block;
            font-weight: 500;
            color: #f0d9a8;
            margin-bottom: 0.3rem;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border-radius: 8px;
            border: 1px solid #2c3555;
            background: #0d0f1a;
            color: #e2e4ec;
            font-size: 0.95rem;
            transition: border-color 0.2s;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #f5c542;
            outline: none;
            box-shadow: 0 0 0 3px rgba(245, 197, 66, 0.15);
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            display: inline-block;
            padding: 0.7rem 1.8rem;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            background: #f5c542;
            color: #0d0f1a;
        }
        .btn:hover {
            background: #ffd966;
            transform: translateY(-1px);
        }
        .btn:active {
            transform: translateY(0);
        }
        .btn-secondary {
            background: #2c3555;
            color: #e2e4ec;
        }
        .btn-secondary:hover {
            background: #3a4570;
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: #3a4570;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            transition: color 0.2s;
            color: #3a4570;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5c542;
        }
        friend-link {
            display: block;
            background: #14182a;
            border-radius: 10px;
            padding: 1.2rem 1.6rem;
            margin-top: 1.2rem;
            border: 1px solid #2c3555;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 1rem 0.2rem 0;
            padding: 0.3rem 0.8rem;
            background: #1a1f35;
            border-radius: 6px;
            font-size: 0.9rem;
            border: 1px solid #2c3555;
            transition: background 0.2s, border-color 0.2s;
        }
        friend-link a:hover {
            background: #2c3555;
            border-color: #f5c542;
            text-decoration: none;
        }
        .site-footer {
            background: #0a0c16;
            border-top: 2px solid #1e2440;
            padding: 2rem 0 1.4rem 0;
            margin-top: auto;
            font-size: 0.9rem;
            color: #6a7290;
        }
        .site-footer .copyright {
            text-align: center;
            padding-top: 1.2rem;
            border-top: 1px solid #1e2440;
            margin-top: 1.2rem;
        }
        .site-footer .copyright p {
            margin-bottom: 0.2rem;
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: nowrap;
            }
            .hamburger {
                display: inline-block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #14182a;
                border-radius: 0 0 12px 12px;
                padding: 0.6rem 0;
                border: 1px solid #2c3555;
                margin-top: 0.4rem;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                z-index: 200;
                box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
            }
            .nav-list.open {
                display: flex;
            }
            .nav-list li a {
                padding: 0.7rem 1.2rem;
                border-radius: 0;
            }
            .nav-wrapper {
                position: relative;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .content-section {
                padding: 1.2rem 1rem;
            }
            .grid-table {
                font-size: 0.85rem;
            }
            .grid-table th,
            .grid-table td {
                padding: 0.5rem 0.6rem;
            }
            .stats-grid {
                grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            }
            .hero-figure img {
                max-height: 220px;
            }
            .my-logo {
                font-size: 1.2rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.8rem;
            }
            h1 {
                font-size: 1.5rem;
            }
            .stat-card .stat-value {
                font-size: 1.5rem;
            }
            .star-rating {
                font-size: 1.3rem;
            }
        }
        .nav-list {
            transition: none;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0d0f1a;
        }
        ::-webkit-scrollbar-thumb {
            background: #2c3555;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #3a4570;
        }
