        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #0b0e14;
            color: #e4e9f0;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #7aa8f7;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #b4d0ff;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 600;
            line-height: 1.3;
            color: #f0f4ff;
            letter-spacing: 0.01em;
        }
        h1 {
            font-size: 2.4rem;
            margin: 0 0 1rem 0;
        }
        h2 {
            font-size: 1.9rem;
            margin: 2.8rem 0 1.2rem 0;
            border-bottom: 2px solid #2a3344;
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.5rem;
            margin: 2rem 0 0.8rem 0;
        }
        h4 {
            font-size: 1.2rem;
            margin: 1.4rem 0 0.5rem 0;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: #141b26;
            border-bottom: 1px solid #2a3344;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(6px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem 1.5rem;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 700;
            background: linear-gradient(135deg, #f8d25c, #c79a3e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f8d25c;
            font-size: 1.8rem;
        }
        .my-logo a {
            background: none;
            -webkit-text-fill-color: transparent;
            font-weight: 700;
        }
        .my-logo a:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.5rem 1rem;
            flex-wrap: wrap;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 0.3rem 1.2rem;
            flex-wrap: wrap;
            padding: 0;
            margin: 0;
        }
        .nav-list a {
            padding: 0.3rem 0.1rem;
            font-size: 0.95rem;
            font-weight: 500;
            color: #c8d0dc;
            position: relative;
        }
        .nav-list a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0%;
            height: 2px;
            background: #f8d25c;
            transition: width 0.3s ease;
        }
        .nav-list a:hover::after,
        .nav-list a:focus-visible::after {
            width: 100%;
        }
        .nav-list a:hover {
            color: #f8d25c;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: transparent;
            border: none;
            color: #e4e9f0;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #1f2a38;
        }
        .hamburger:focus-visible {
            outline: 2px solid #f8d25c;
            outline-offset: 2px;
        }
        .breadcrumb {
            background: #10171f;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #1f2a38;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
            gap: 0.4rem 0.8rem;
            color: #8a9bb5;
        }
        .breadcrumb li+li::before {
            content: '›';
            margin-right: 0.8rem;
            color: #556477;
        }
        .breadcrumb a {
            color: #8a9bb5;
        }
        .breadcrumb a:hover {
            color: #f8d25c;
        }
        .breadcrumb .current {
            color: #c8d0dc;
        }
        .hero {
            padding: 2.8rem 0 2rem;
            text-align: center;
            background: radial-gradient(ellipse at 30% 40%, #1a2538, #0b0e14 80%);
        }
        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
        }
        .hero .subtitle {
            font-size: 1.15rem;
            color: #a8bbd9;
            max-width: 750px;
            margin: 0 auto 1.2rem;
        }
        .hero .meta-info {
            font-size: 0.9rem;
            color: #7a8ba5;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.2rem 2.5rem;
        }
        .hero .meta-info i {
            margin-right: 0.4rem;
            color: #f8d25c;
        }
        .search-section {
            background: #10171f;
            padding: 1.8rem 0;
            border-top: 1px solid #1f2a38;
            border-bottom: 1px solid #1f2a38;
        }
        .search-form {
            display: flex;
            max-width: 580px;
            margin: 0 auto;
            gap: 0.5rem;
            flex-wrap: wrap;
            justify-content: center;
        }
        .search-form input[type="text"] {
            flex: 1 1 260px;
            padding: 0.8rem 1.2rem;
            border-radius: 40px;
            border: 1px solid #2a3344;
            background: #0b0e14;
            color: #e4e9f0;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s, box-shadow 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #f8d25c;
            box-shadow: 0 0 0 3px rgba(248, 210, 92, 0.15);
        }
        .search-form button {
            padding: 0.8rem 1.8rem;
            border-radius: 40px;
            border: none;
            background: #f8d25c;
            color: #0b0e14;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-form button:hover {
            background: #ecc04a;
            transform: scale(1.02);
        }
        .search-form button:active {
            transform: scale(0.97);
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2.5rem 0;
        }
        @media (max-width: 900px) {
            .main-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }
        .content-area {
            min-width: 0;
        }
        .sidebar {
            min-width: 0;
        }
        .sidebar .card {
            background: #141b26;
            border-radius: 14px;
            padding: 1.5rem 1.2rem;
            margin-bottom: 1.8rem;
            border: 1px solid #1f2a38;
        }
        .sidebar .card h3 {
            font-size: 1.2rem;
            margin-top: 0;
            border-bottom: 1px solid #2a3344;
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
        }
        .sidebar .link-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar .link-list li {
            margin-bottom: 0.5rem;
        }
        .sidebar .link-list a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.4rem 0.6rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .sidebar .link-list a:hover {
            background: #1f2a38;
            text-decoration: none;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            max-height: 500px;
            object-fit: cover;
        }
        .featured-image figcaption {
            background: #141b26;
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
            color: #a8bbd9;
            border-top: 1px solid #1f2a38;
        }
        .comment-section,
        .rating-section {
            background: #141b26;
            border-radius: 14px;
            padding: 1.8rem 1.5rem;
            margin: 2.2rem 0;
            border: 1px solid #1f2a38;
        }
        .comment-section h3,
        .rating-section h3 {
            margin-top: 0;
            border-bottom: 1px solid #2a3344;
            padding-bottom: 0.6rem;
            margin-bottom: 1.2rem;
        }
        .comment-form,
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 0.9rem;
            max-width: 600px;
        }
        .comment-form input,
        .comment-form textarea,
        .rating-form select,
        .rating-form button {
            padding: 0.7rem 1rem;
            border-radius: 10px;
            border: 1px solid #2a3344;
            background: #0b0e14;
            color: #e4e9f0;
            font-size: 0.95rem;
            font-family: inherit;
            outline: none;
            transition: border 0.3s;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .comment-form input:focus,
        .comment-form textarea:focus,
        .rating-form select:focus {
            border-color: #f8d25c;
        }
        .comment-form button,
        .rating-form button {
            background: #f8d25c;
            color: #0b0e14;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: background 0.3s, transform 0.15s;
            width: fit-content;
            padding: 0.7rem 2rem;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            background: #ecc04a;
            transform: scale(1.02);
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.95rem;
        }
        .data-table th,
        .data-table td {
            padding: 0.8rem 1rem;
            text-align: left;
            border-bottom: 1px solid #1f2a38;
        }
        .data-table th {
            background: #1a2538;
            color: #f8d25c;
            font-weight: 600;
        }
        .data-table tr:hover td {
            background: #141b26;
        }
        .site-footer {
            background: #0a0f16;
            border-top: 1px solid #1f2a38;
            padding: 2.5rem 0 1.5rem;
            margin-top: 2rem;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        @media (max-width: 700px) {
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }
        .footer-inner h4 {
            color: #f8d25c;
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }
        .footer-inner ul {
            list-style: none;
            padding: 0;
        }
        .footer-inner li {
            margin-bottom: 0.4rem;
        }
        .footer-inner a {
            color: #8a9bb5;
        }
        .footer-inner a:hover {
            color: #f8d25c;
        }
        .copyright {
            text-align: center;
            padding-top: 1.8rem;
            margin-top: 1.8rem;
            border-top: 1px solid #1a2538;
            color: #556477;
            font-size: 0.85rem;
        }
        .copyright a {
            color: #7a8ba5;
        }
        friend-link {
            display: block;
            margin-top: 0.8rem;
            font-style: normal;
        }
        friend-link a {
            display: inline-block;
            margin-right: 1.2rem;
            padding: 0.2rem 0;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: inline-block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #141b26;
                padding: 1rem 0.5rem;
                border-radius: 12px;
                margin-top: 0.5rem;
                gap: 0.2rem;
                border: 1px solid #1f2a38;
            }
            .nav-list.show {
                display: flex;
            }
            .nav-list a {
                padding: 0.6rem 0.8rem;
                border-radius: 8px;
            }
            .nav-list a:hover {
                background: #1f2a38;
            }
            .header-inner {
                align-items: center;
            }
            .hero h1 {
                font-size: 2rem;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .data-table {
                font-size: 0.8rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.5rem 0.6rem;
            }
            .search-form input[type="text"] {
                flex: 1 1 100%;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.8rem;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
        }
        .highlight {
            color: #f8d25c;
        }
        .badge {
            display: inline-block;
            background: #f8d25c;
            color: #0b0e14;
            padding: 0.15rem 0.7rem;
            border-radius: 40px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.3px;
        }
        .divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, #2a3344, transparent);
            margin: 2rem 0;
        }
        .blockquote {
            border-left: 4px solid #f8d25c;
            padding: 0.8rem 1.2rem;
            background: #10171f;
            border-radius: 0 12px 12px 0;
            margin: 1.5rem 0;
            font-style: italic;
            color: #c8d0dc;
        }
        .blockquote cite {
            display: block;
            margin-top: 0.6rem;
            font-size: 0.85rem;
            color: #7a8ba5;
            font-style: normal;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .stat-card {
            background: #141b26;
            border-radius: 12px;
            padding: 1.2rem 1rem;
            text-align: center;
            border: 1px solid #1f2a38;
        }
        .stat-card .number {
            font-size: 1.8rem;
            font-weight: 700;
            color: #f8d25c;
        }
        .stat-card .label {
            font-size: 0.85rem;
            color: #8a9bb5;
            margin-top: 0.2rem;
        }
        .scroll-offset {
            scroll-margin-top: 90px;
        }
        .sidebar .link-list i {
            width: 1.2rem;
            color: #f8d25c;
        }
