        *,
        *::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, 'Helvetica Neue', Arial, sans-serif;
            background: #0b0e1a;
            color: #e4e9f2;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #7aa9ff;
            text-decoration: none;
            transition: color .25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #b6d0ff;
            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.25;
            color: #f0f4ff;
            margin-top: 1.8em;
            margin-bottom: 0.6em;
        }
        h1 {
            font-size: 2.8rem;
            margin-top: 0.4em;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: 2rem;
            border-left: 5px solid #f5a623;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #d4e0ff;
        }
        h4 {
            font-size: 1.2rem;
            color: #b8c9ff;
        }
        p {
            margin-bottom: 1.2em;
            font-size: 1.05rem;
        }
        ul,
        ol {
            margin: 0.8em 0 1.5em 1.8em;
        }
        li {
            margin-bottom: 0.4em;
        }
        strong,
        b {
            color: #ffd78a;
            font-weight: 600;
        }
        em {
            color: #aac3ff;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }
        .site-header {
            background: linear-gradient(135deg, #0f1425 0%, #1a2340 100%);
            padding: 16px 0;
            border-bottom: 2px solid #2f3b66;
            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;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f5a623, #ff6b6b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.03em;
            display: inline-block;
            transition: transform .3s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #8899cc;
            color: #8899cc;
            display: block;
            font-weight: 400;
            letter-spacing: 0.2px;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        .main-nav a {
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.92rem;
            color: #c8d4f0;
            transition: background .25s, color .25s;
            white-space: nowrap;
        }
        .main-nav a:hover,
        .main-nav a:focus-visible {
            background: #2a3766;
            color: #fff;
            text-decoration: none;
        }
        .main-nav .nav-active {
            background: #3a4a7a;
            color: #fff;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #5a6a9a;
            color: #d4e0ff;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 10px;
            cursor: pointer;
            transition: background .25s;
        }
        .nav-toggle:hover {
            background: #2a3766;
        }
        .breadcrumb {
            padding: 14px 0 6px;
            font-size: 0.9rem;
            color: #8899bb;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: #7aa9ff;
        }
        .breadcrumb a:hover {
            color: #b6d0ff;
        }
        .breadcrumb span {
            color: #5a6a8a;
        }
        .hero-section {
            padding: 40px 0 30px;
            text-align: center;
            background: radial-gradient(ellipse at 50% 0%, #1a2340 0%, #0b0e1a 80%);
        }
        .hero-section h1 {
            font-size: 3.4rem;
            margin-bottom: 0.3em;
            background: linear-gradient(135deg, #f5a623, #ff8a5c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-section .subhead {
            font-size: 1.3rem;
            color: #b0c4e8;
            max-width: 720px;
            margin: 0 auto 1.2em;
        }
        .hero-section .meta-info {
            font-size: 0.95rem;
            color: #7a8aaa;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .hero-section .meta-info i {
            margin-right: 6px;
        }
        .content-area {
            padding: 30px 0 50px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
        }
        @media (min-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr 320px;
            }
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            min-width: 0;
        }
        .widget {
            background: #131a2e;
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 28px;
            border: 1px solid #2a3766;
        }
        .widget h3 {
            margin-top: 0;
            font-size: 1.3rem;
            border-bottom: 2px solid #2a3766;
            padding-bottom: 10px;
            margin-bottom: 16px;
        }
        .widget ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .widget li {
            margin-bottom: 10px;
        }
        .widget li a {
            display: block;
            padding: 6px 0;
            border-bottom: 1px solid #1e2844;
        }
        .widget li a:hover {
            padding-left: 6px;
        }
        .search-form {
            display: flex;
            gap: 8px;
            margin: 10px 0 4px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 16px;
            border-radius: 30px;
            border: 2px solid #2a3766;
            background: #0b0e1a;
            color: #e4e9f2;
            font-size: 1rem;
            outline: none;
            transition: border .25s;
        }
        .search-form input:focus {
            border-color: #f5a623;
        }
        .search-form button {
            padding: 12px 24px;
            border-radius: 30px;
            border: none;
            background: linear-gradient(135deg, #f5a623, #e8873a);
            color: #0b0e1a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform .2s, box-shadow .2s;
        }
        .search-form button:hover {
            transform: scale(1.03);
            box-shadow: 0 4px 20px rgba(245, 166, 35, 0.35);
        }
        .comment-box,
        .rating-box {
            background: #131a2e;
            border-radius: 16px;
            padding: 28px;
            margin-top: 40px;
            border: 1px solid #2a3766;
        }
        .comment-box h3,
        .rating-box h3 {
            margin-top: 0;
        }
        .comment-box textarea,
        .comment-box input,
        .rating-box select,
        .rating-box input {
            width: 100%;
            padding: 12px 16px;
            border-radius: 12px;
            border: 2px solid #2a3766;
            background: #0b0e1a;
            color: #e4e9f2;
            font-size: 1rem;
            margin-bottom: 12px;
            outline: none;
            font-family: inherit;
            transition: border .25s;
        }
        .comment-box textarea:focus,
        .comment-box input:focus,
        .rating-box select:focus,
        .rating-box input:focus {
            border-color: #f5a623;
        }
        .comment-box textarea {
            min-height: 110px;
            resize: vertical;
        }
        .btn {
            padding: 12px 32px;
            border-radius: 30px;
            border: none;
            background: linear-gradient(135deg, #f5a623, #e8873a);
            color: #0b0e1a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform .2s, box-shadow .2s;
            display: inline-block;
        }
        .btn:hover {
            transform: scale(1.03);
            box-shadow: 0 4px 20px rgba(245, 166, 35, 0.3);
        }
        .btn-secondary {
            background: #2a3766;
            color: #d4e0ff;
        }
        .btn-secondary:hover {
            background: #3a4a7a;
            box-shadow: 0 4px 16px rgba(42, 55, 102, 0.5);
        }
        .featured-image {
            margin: 2em 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
        }
        .featured-image figcaption {
            padding: 12px 16px;
            font-size: 0.9rem;
            color: #8899bb;
            background: #131a2e;
            border-radius: 0 0 16px 16px;
            text-align: center;
        }
        .site-footer {
            background: #0a0f1e;
            border-top: 2px solid #1e2844;
            padding: 40px 0 20px;
            margin-top: auto;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }
        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: 2fr 1fr 1fr;
            }
        }
        .site-footer h4 {
            color: #f0f4ff;
            margin-top: 0;
            margin-bottom: 14px;
            font-size: 1.1rem;
        }
        .site-footer a {
            color: #7aa9ff;
        }
        .site-footer a:hover {
            color: #b6d0ff;
        }
        .footer-copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid #1e2844;
            color: #5a6a8a;
            font-size: 0.9rem;
        }
        .footer-copyright p {
            margin-bottom: 0.4em;
        }
        friend-link {
            display: block;
            padding: 16px 0;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 6px 16px;
            background: #131a2e;
            border-radius: 30px;
            border: 1px solid #2a3766;
            font-size: 0.9rem;
            transition: background .25s;
        }
        friend-link a:hover {
            background: #2a3766;
            text-decoration: none;
        }
        @media (max-width: 767px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                flex-basis: 100%;
                flex-direction: column;
                align-items: stretch;
                gap: 4px;
                padding: 12px 0 6px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 12px 16px;
                border-radius: 10px;
                text-align: center;
            }
            h1 {
                font-size: 2.2rem;
            }
            .hero-section h1 {
                font-size: 2.4rem;
            }
            .hero-section .subhead {
                font-size: 1.05rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
        }
        @media (min-width: 768px) and (max-width: 991px) {
            h1 {
                font-size: 2.4rem;
            }
            .hero-section h1 {
                font-size: 2.8rem;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0b0e1a;
        }
        ::-webkit-scrollbar-thumb {
            background: #2a3766;
            border-radius: 8px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #3a4a7a;
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .text-muted {
            color: #7a8aaa;
        }
        .text-small {
            font-size: 0.92rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        .gap-8 {
            gap: 8px;
        }
        .schema-hidden {
            display: none;
        }
        .star-display {
            color: #f5a623;
            letter-spacing: 2px;
            font-size: 1.2rem;
        }
        .tier-card {
            background: #131a2e;
            border-radius: 14px;
            padding: 20px 24px;
            margin: 1.2em 0;
            border-left: 5px solid #f5a623;
        }
        .tier-card h4 {
            margin-top: 0;
        }
        .tier-card .tier-label {
            display: inline-block;
            background: #f5a623;
            color: #0b0e1a;
            font-weight: 700;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.85rem;
            margin-right: 10px;
        }
