        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
            background: #0d0f14;
            color: #e8edf2;
            line-height: 1.7;
            font-size: 1rem;
        }
        a {
            color: #f5b342;
            text-decoration: none;
            transition: color 0.25s;
        }
        a:hover,
        a:focus {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #f0f4fa;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 0.75rem;
        }
        h2 {
            font-size: 1.8rem;
            margin: 2.5rem 0 1rem;
            border-left: 5px solid #f5b342;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.4rem;
            margin: 1.8rem 0 0.8rem;
            color: #f5c97a;
        }
        h4 {
            font-size: 1.15rem;
            margin: 1.2rem 0 0.5rem;
            color: #d4dce8;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        ul,
        ol {
            margin: 0.8rem 0 1.2rem 1.8rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        strong,
        b {
            color: #f5c97a;
            font-weight: 700;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #14181f 0%, #1a202a 100%);
            padding: 1rem 0;
            border-bottom: 2px solid #2a3340;
            position: sticky;
            top: 0;
            z-index: 999;
            backdrop-filter: blur(8px);
            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.5rem 1.5rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #f5b342;
            text-shadow: 0 2px 8px rgba(245, 179, 66, 0.25);
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo span {
            color: #fff;
            font-weight: 300;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 1.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-list a {
            color: #cbd5e1;
            font-weight: 500;
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s, color 0.2s;
            font-size: 0.95rem;
        }
        .nav-list a:hover {
            background: #2a3340;
            color: #f5b342;
            text-decoration: none;
        }
        .nav-list .active-nav {
            color: #f5b342;
            border-bottom: 2px solid #f5b342;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f5b342;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.5rem;
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0.6rem 0 0.2rem;
            font-size: 0.9rem;
            color: #8899aa;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 0.6rem;
            color: #556;
        }
        .breadcrumb a {
            color: #8899aa;
        }
        .breadcrumb a:hover {
            color: #f5b342;
        }
        .breadcrumb .current {
            color: #f5b342;
        }
        .hero {
            padding: 2.5rem 0 1.5rem;
            text-align: center;
        }
        .hero h1 {
            font-size: 2.8rem;
            background: linear-gradient(135deg, #f5b342, #ffd966);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero .subtitle {
            font-size: 1.2rem;
            color: #aab8c8;
            max-width: 720px;
            margin: 0.5rem auto 1.5rem;
        }
        .update-badge {
            display: inline-block;
            background: #1f2a36;
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            font-size: 0.9rem;
            color: #b0c4de;
            border: 1px solid #2f3d4e;
        }
        .update-badge i {
            margin-right: 0.4rem;
            color: #f5b342;
        }
        .img-card {
            margin: 2.5rem 0;
            border-radius: 16px;
            overflow: hidden;
            background: #1a202a;
            padding: 1rem;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
            border: 1px solid #2a3340;
        }
        .img-card img {
            border-radius: 10px;
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .img-card figcaption {
            text-align: center;
            padding: 0.8rem 0.2rem 0.2rem;
            color: #aab8c8;
            font-style: italic;
            font-size: 0.95rem;
        }
        .search-section {
            background: #14181f;
            padding: 2rem 1.5rem;
            border-radius: 16px;
            margin: 2rem 0;
            border: 1px solid #2a3340;
        }
        .search-form {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            max-width: 640px;
            margin: 0 auto;
        }
        .search-form input {
            flex: 1;
            min-width: 180px;
            padding: 0.85rem 1.2rem;
            border-radius: 40px;
            border: 1px solid #2f3d4e;
            background: #1a202a;
            color: #e8edf2;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-form input:focus {
            border-color: #f5b342;
        }
        .search-form button {
            background: #f5b342;
            border: none;
            padding: 0.85rem 2rem;
            border-radius: 40px;
            font-weight: 700;
            color: #0d0f14;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            font-size: 1rem;
        }
        .search-form button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .interact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin: 2.5rem 0;
        }
        .interact-card {
            background: #14181f;
            padding: 1.8rem 1.8rem 2rem;
            border-radius: 16px;
            border: 1px solid #2a3340;
        }
        .interact-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .interact-card form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 0.8rem;
        }
        .interact-card input,
        .interact-card textarea,
        .interact-card select {
            padding: 0.7rem 1rem;
            border-radius: 8px;
            border: 1px solid #2f3d4e;
            background: #1a202a;
            color: #e8edf2;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.3s;
            width: 100%;
        }
        .interact-card input:focus,
        .interact-card textarea:focus,
        .interact-card select:focus {
            border-color: #f5b342;
        }
        .interact-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .interact-card .btn-submit {
            background: #f5b342;
            color: #0d0f14;
            font-weight: 700;
            border: none;
            padding: 0.7rem 1.5rem;
            border-radius: 40px;
            cursor: pointer;
            transition: background 0.25s;
            font-size: 1rem;
            align-self: flex-start;
        }
        .interact-card .btn-submit:hover {
            background: #ffd966;
        }
        .star-rating {
            display: flex;
            gap: 0.4rem;
            font-size: 1.6rem;
            color: #3a4a5a;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating i {
            transition: color 0.2s;
        }
        .star-rating i:hover,
        .star-rating i:hover~i {
            color: #f5b342;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #3a4a5a;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f5b342;
        }
        .star-rating input:checked~label {
            color: #f5b342;
        }
        friend-link {
            display: block;
            background: #14181f;
            padding: 1.5rem 2rem;
            border-radius: 16px;
            border: 1px solid #2a3340;
            margin: 2rem 0 1rem;
        }
        friend-link h3 {
            margin: 0 0 0.8rem;
            font-size: 1.2rem;
            color: #f5b342;
        }
        friend-link ul {
            list-style: none;
            margin: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.5rem;
        }
        friend-link li a {
            color: #aab8c8;
            font-size: 0.95rem;
            padding: 0.2rem 0.4rem;
        }
        friend-link li a:hover {
            color: #f5b342;
        }
        .site-footer {
            background: #0a0d12;
            border-top: 1px solid #1f2a36;
            padding: 2rem 0 1.5rem;
            margin-top: 3rem;
            text-align: center;
            color: #6a7a8a;
            font-size: 0.9rem;
        }
        .site-footer .copyright {
            margin-top: 0.8rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-wrapper {
                display: none;
                width: 100%;
                order: 3;
                margin-top: 0.6rem;
            }
            #nav-toggle:checked~.nav-wrapper {
                display: block;
            }
            .nav-list {
                flex-direction: column;
                align-items: stretch;
                gap: 0.2rem;
                background: #1a202a;
                padding: 1rem;
                border-radius: 12px;
                border: 1px solid #2a3340;
            }
            .nav-list a {
                display: block;
                padding: 0.6rem 1rem;
            }
            .hero h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .interact-grid {
                grid-template-columns: 1fr;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.2rem;
                padding-left: 0.6rem;
            }
            .hero .subtitle {
                font-size: 1rem;
            }
        }
        .text-muted {
            color: #7a8a9a;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .highlight-box {
            background: #1a222e;
            border-left: 4px solid #f5b342;
            padding: 1.2rem 1.5rem;
            border-radius: 0 12px 12px 0;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            background: #14181f;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 0.8rem 1rem;
            text-align: left;
            border-bottom: 1px solid #1f2a36;
        }
        th {
            background: #1f2a36;
            color: #f5b342;
            font-weight: 600;
        }
        tr:last-child td {
            border-bottom: none;
        }
        .weapon-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 1.2rem;
            margin: 1.5rem 0;
        }
        .weapon-card {
            background: #14181f;
            border: 1px solid #2a3340;
            border-radius: 12px;
            padding: 1.2rem 1.2rem 1.5rem;
            transition: transform 0.2s, border-color 0.2s;
        }
        .weapon-card:hover {
            transform: translateY(-4px);
            border-color: #f5b342;
        }
        .weapon-card h4 {
            margin-top: 0;
            color: #f5b342;
        }
        .weapon-card .stat {
            font-size: 0.9rem;
            color: #aab8c8;
        }
        .tag {
            display: inline-block;
            background: #1f2a36;
            padding: 0.15rem 0.7rem;
            border-radius: 30px;
            font-size: 0.75rem;
            color: #b0c4de;
            margin-right: 0.3rem;
        }
        .interview-block {
            background: #14181f;
            border-radius: 16px;
            padding: 1.5rem 2rem;
            margin: 1.8rem 0;
            border: 1px solid #2a3340;
            position: relative;
        }
        .interview-block::before {
            content: "🗣️";
            font-size: 2rem;
            position: absolute;
            top: -0.8rem;
            left: 1.2rem;
            background: #0d0f14;
            padding: 0 0.5rem;
        }
        .interview-block .speaker {
            color: #f5b342;
            font-weight: 700;
        }
        .emoji-lg {
            font-size: 1.8rem;
            vertical-align: middle;
        }
