        *,
        *::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, sans-serif;
            background: #0b0a0c;
            color: #f0ece4;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f5c542;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffd966;
            text-decoration: underline;
            outline: 2px solid rgba(245, 197, 66, 0.4);
            outline-offset: 2px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.25;
            letter-spacing: -0.01em;
            color: #faf6ef;
        }
        h1 {
            font-size: clamp(2rem, 5vw, 3.2rem);
            margin-bottom: 0.75rem;
        }
        h2 {
            font-size: clamp(1.6rem, 3.5vw, 2.4rem);
            margin-top: 2.8rem;
            margin-bottom: 0.6rem;
            border-left: 4px solid #c0392b;
            padding-left: 1rem;
        }
        h3 {
            font-size: clamp(1.25rem, 2.5vw, 1.75rem);
            margin-top: 2rem;
            margin-bottom: 0.4rem;
        }
        h4 {
            font-size: clamp(1.05rem, 2vw, 1.35rem);
            margin-top: 1.5rem;
            margin-bottom: 0.3rem;
        }
        p {
            margin-bottom: 1rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        .site-header {
            background: linear-gradient(145deg, #1a1318 0%, #0f0c0e 100%);
            border-bottom: 2px solid #2c1e28;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 0.75rem 0;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #e74c3c, #f5c542);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.02em;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f5c542;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #5a3e4a;
            color: #f0ece4;
            font-size: 1.6rem;
            padding: 0.3rem 0.7rem;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            border-color: #f5c542;
            color: #f5c542;
        }
        .navbar {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        .navbar a {
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #d4cdc4;
            transition: 0.2s;
            white-space: nowrap;
        }
        .navbar a:hover {
            background: rgba(245, 197, 66, 0.15);
            color: #f5c542;
            text-decoration: none;
        }
        .navbar a.active {
            background: #c0392b;
            color: #fff;
        }
        .breadcrumb {
            padding: 0.5rem 0 0.2rem;
            font-size: 0.85rem;
            color: #9a8e8a;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb a {
            color: #b5a8a2;
        }
        .breadcrumb a:hover {
            color: #f5c542;
        }
        .breadcrumb .sep {
            color: #5a4a4a;
        }
        .main-content {
            flex: 1;
            padding: 2rem 0 3rem;
        }
        .search-section {
            background: #1f181d;
            border-radius: 16px;
            padding: 1.5rem 2rem;
            margin-bottom: 2.5rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1rem;
            border: 1px solid #342a30;
        }
        .search-section label {
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #f5c542;
        }
        .search-form {
            display: flex;
            flex: 1;
            gap: 0.5rem;
            min-width: 220px;
        }
        .search-form input[type="text"] {
            flex: 1;
            padding: 0.7rem 1.2rem;
            border-radius: 40px;
            border: 2px solid #3d2d34;
            background: #110d10;
            color: #f0ece4;
            font-size: 1rem;
            transition: 0.2s;
            min-width: 140px;
        }
        .search-form input[type="text"]:focus {
            border-color: #f5c542;
            outline: none;
            box-shadow: 0 0 0 3px rgba(245, 197, 66, 0.2);
        }
        .search-form button {
            padding: 0.7rem 1.6rem;
            border-radius: 40px;
            border: none;
            background: #c0392b;
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-form button:hover {
            background: #a93226;
            transform: scale(1.02);
        }
        .featured-figure {
            margin: 2rem 0 2.5rem;
            border-radius: 16px;
            overflow: hidden;
            background: #1a1318;
            padding: 0.5rem;
            border: 1px solid #2c1e28;
        }
        .featured-figure img {
            width: 100%;
            border-radius: 12px;
            aspect-ratio: 16/9;
            object-fit: cover;
        }
        .featured-figure figcaption {
            padding: 0.8rem 1rem 0.3rem;
            font-style: italic;
            color: #b5a8a2;
            font-size: 0.9rem;
            text-align: center;
        }
        .rating-area {
            background: #1f181d;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin: 2.5rem 0;
            border: 1px solid #342a30;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1.5rem 2.5rem;
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 2rem;
            color: #4a3a3a;
            flex-wrap: wrap;
        }
        .rating-stars .star {
            cursor: pointer;
            transition: 0.15s;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: #f5c542;
            transform: scale(1.12);
        }
        .rating-form {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .rating-form input[type="number"] {
            width: 80px;
            padding: 0.5rem;
            border-radius: 8px;
            border: 2px solid #3d2d34;
            background: #110d10;
            color: #f0ece4;
            text-align: center;
        }
        .rating-form button {
            padding: 0.5rem 1.5rem;
            border-radius: 30px;
            border: none;
            background: #f5c542;
            color: #1a1318;
            font-weight: 700;
            cursor: pointer;
            transition: 0.2s;
        }
        .rating-form button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .comments-section {
            background: #1a1318;
            border-radius: 16px;
            padding: 2rem;
            margin: 2.5rem 0;
            border: 1px solid #2c1e28;
        }
        .comments-section h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1rem;
        }
        .comment-form textarea {
            width: 100%;
            min-height: 110px;
            padding: 1rem;
            border-radius: 12px;
            border: 2px solid #3d2d34;
            background: #110d10;
            color: #f0ece4;
            font-size: 1rem;
            resize: vertical;
            font-family: inherit;
        }
        .comment-form textarea:focus {
            border-color: #f5c542;
            outline: none;
            box-shadow: 0 0 0 3px rgba(245, 197, 66, 0.15);
        }
        .comment-form .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .comment-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 0.7rem 1.2rem;
            border-radius: 40px;
            border: 2px solid #3d2d34;
            background: #110d10;
            color: #f0ece4;
        }
        .comment-form input[type="text"]:focus {
            border-color: #f5c542;
            outline: none;
        }
        .comment-form button {
            align-self: flex-start;
            padding: 0.7rem 2rem;
            border-radius: 40px;
            border: none;
            background: #c0392b;
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
        }
        .comment-form button:hover {
            background: #a93226;
            transform: scale(1.02);
        }
        .inline-link {
            color: #f5c542;
            font-weight: 500;
            border-bottom: 1px dotted rgba(245, 197, 66, 0.3);
        }
        .inline-link:hover {
            border-bottom-color: #f5c542;
        }
        friend-link {
            display: block;
            background: #1a1318;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin: 2.5rem 0 1rem;
            border: 1px solid #2c1e28;
        }
        friend-link::before {
            content: "🌐 Friend Links";
            display: block;
            font-size: 1.4rem;
            font-weight: 700;
            color: #f5c542;
            margin-bottom: 1rem;
        }
        .friend-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.8rem;
            list-style: none;
            padding: 0;
        }
        .friend-list li a {
            color: #d4cdc4;
            font-weight: 500;
            padding: 0.2rem 0;
        }
        .friend-list li a:hover {
            color: #f5c542;
        }
        .site-footer {
            background: #0f0c0e;
            border-top: 2px solid #1f181d;
            padding: 2rem 0 1.5rem;
            margin-top: 2rem;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            font-size: 0.9rem;
            color: #8a7e7a;
        }
        .footer-inner .copyright {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .footer-inner a {
            color: #b5a8a2;
        }
        .footer-inner a:hover {
            color: #f5c542;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .navbar {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 0.75rem;
                gap: 0.2rem;
                background: #151013;
                padding: 0.8rem 0.5rem;
                border-radius: 12px;
                border: 1px solid #2c1e28;
            }
            .navbar.open {
                display: flex;
            }
            .navbar a {
                padding: 0.6rem 1rem;
                border-radius: 8px;
            }
            .search-section {
                flex-direction: column;
                align-items: stretch;
                padding: 1.2rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                justify-content: center;
            }
            .rating-area {
                flex-direction: column;
                align-items: flex-start;
                padding: 1.2rem;
            }
            .header-inner {
                padding: 0.5rem 0;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .comments-section {
                padding: 1.2rem;
            }
            .comment-form .form-row {
                flex-direction: column;
            }
            friend-link {
                padding: 1.2rem;
            }
            .friend-list {
                flex-direction: column;
                gap: 0.4rem;
            }
            .footer-inner {
                flex-direction: column;
                text-align: center;
            }
        }
        @media (min-width: 769px) {
            .navbar {
                display: flex !important;
            }
        }
        .highlight {
            background: linear-gradient(120deg, rgba(245, 197, 66, 0.12), rgba(192, 57, 43, 0.08));
            padding: 0.1rem 0.4rem;
            border-radius: 4px;
        }
        .badge {
            display: inline-block;
            background: #c0392b;
            color: #fff;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.15rem 0.7rem;
            border-radius: 30px;
            letter-spacing: 0.02em;
        }
        .divider {
            border: none;
            height: 2px;
            background: linear-gradient(90deg, transparent, #2c1e28, transparent);
            margin: 2.5rem 0;
        }
        .last-update {
            display: inline-block;
            background: #1f181d;
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #b5a8a2;
            border: 1px solid #2c1e28;
        }
        .last-update i {
            margin-right: 0.4rem;
            color: #f5c542;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            background: #1a1318;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #2c1e28;
        }
        .data-table th,
        .data-table td {
            padding: 0.75rem 1rem;
            text-align: left;
            border-bottom: 1px solid #2c1e28;
        }
        .data-table th {
            background: #2c1e28;
            color: #f5c542;
            font-weight: 700;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: rgba(245, 197, 66, 0.04);
        }
        .blockquote {
            border-left: 4px solid #f5c542;
            background: #1a1318;
            padding: 1.2rem 1.8rem;
            margin: 1.5rem 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #d4cdc4;
        }
        .blockquote cite {
            display: block;
            margin-top: 0.5rem;
            font-style: normal;
            font-weight: 600;
            color: #f5c542;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1rem;
            margin: 1.8rem 0;
        }
        .stat-card {
            background: #1a1318;
            border: 1px solid #2c1e28;
            border-radius: 12px;
            padding: 1.2rem;
            text-align: center;
        }
        .stat-card .num {
            font-size: 2.2rem;
            font-weight: 800;
            color: #f5c542;
            display: block;
        }
        .stat-card .label {
            font-size: 0.9rem;
            color: #b5a8a2;
        }
        .interview-card {
            background: #1a1318;
            border: 1px solid #2c1e28;
            border-radius: 16px;
            padding: 1.5rem 1.8rem;
            margin: 1.5rem 0;
        }
        .interview-card .name {
            font-weight: 700;
            color: #f5c542;
            font-size: 1.1rem;
        }
        .interview-card .location {
            color: #8a7e7a;
            font-size: 0.85rem;
        }
