        *,
        *::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: #0d0d1a;
            color: #e8e0d0;
            line-height: 1.7;
            min-height: 100vh;
        }
        a {
            color: #f0c850;
            text-decoration: none;
            transition: color .25s;
        }
        a:hover,
        a:focus-visible {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ::selection {
            background: #f0c040;
            color: #0d0d1a;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.25;
            color: #f5e6b8;
            letter-spacing: 0.01em;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 1.2rem;
            text-shadow: 0 2px 12px rgba(240, 192, 64, 0.25);
        }
        h2 {
            font-size: 1.8rem;
            margin-top: 2.8rem;
            margin-bottom: 1rem;
            border-left: 5px solid #f0c040;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.35rem;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
            color: #f0d080;
        }
        h4 {
            font-size: 1.1rem;
            margin-top: 1.4rem;
            margin-bottom: 0.5rem;
            color: #e0c070;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        .text-muted {
            color: #a09080;
        }
        .text-gold {
            color: #f0c040;
        }
        .fw-bold {
            font-weight: 700;
        }
        .small {
            font-size: 0.9rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1f 100%);
            border-bottom: 2px solid #f0c04030;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(8px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem 1.5rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #f5e6b8;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            background: linear-gradient(135deg, #f0c040, #e8a820);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: opacity .3s;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #a09080;
            display: block;
            font-weight: 400;
            letter-spacing: 0.15em;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f0c04060;
            color: #f0c040;
            font-size: 1.5rem;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background .25s;
        }
        .nav-toggle:hover {
            background: #f0c04020;
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.6rem 1.2rem;
            list-style: none;
        }
        .nav-menu a {
            color: #d0c8b0;
            font-weight: 500;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: border-color .3s, color .3s;
            font-size: 0.95rem;
        }
        .nav-menu a:hover {
            border-bottom-color: #f0c040;
            color: #f5e6b8;
            text-decoration: none;
        }
        .nav-menu .active a {
            color: #f0c040;
            border-bottom-color: #f0c040;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            padding: 0.75rem 0 0.25rem;
            font-size: 0.9rem;
            color: #a09080;
            list-style: none;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #f0c04080;
        }
        .breadcrumb a {
            color: #c0b090;
        }
        .breadcrumb a:hover {
            color: #f0c040;
        }
        .breadcrumb .current {
            color: #f0c040;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            max-width: 500px;
            margin: 1.5rem 0 2rem;
        }
        .search-form input {
            flex: 1;
            padding: 0.7rem 1.2rem;
            border: 2px solid #2a2a40;
            border-radius: 50px;
            background: #1a1a2e;
            color: #e8e0d0;
            font-size: 1rem;
            outline: none;
            transition: border-color .3s;
        }
        .search-form input:focus {
            border-color: #f0c040;
        }
        .search-form button {
            background: #f0c040;
            border: none;
            border-radius: 50px;
            padding: 0.7rem 1.5rem;
            color: #0d0d1a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background .3s, transform .15s;
        }
        .search-form button:hover {
            background: #e8b830;
            transform: scale(1.02);
        }
        .section-card {
            background: #151528;
            border-radius: 18px;
            padding: 1.8rem 2rem;
            margin-bottom: 2.2rem;
            border: 1px solid #2a2a4030;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
            transition: border-color .3s;
        }
        .section-card:hover {
            border-color: #f0c04030;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        .feature-item {
            background: #1e1e36;
            padding: 1.5rem 1.2rem;
            border-radius: 14px;
            border-left: 4px solid #f0c040;
            transition: transform .25s, box-shadow .25s;
        }
        .feature-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(240, 192, 64, 0.08);
        }
        .feature-item i {
            font-size: 1.6rem;
            color: #f0c040;
            margin-bottom: 0.6rem;
            display: inline-block;
        }
        .rating-stars {
            display: flex;
            gap: 0.2rem;
            font-size: 1.6rem;
            color: #444;
            cursor: pointer;
            direction: rtl;
            unicode-bidi: bidi-override;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            transition: color .2s, transform .15s;
            color: #555;
        }
        .rating-stars label:hover,
        .rating-stars label:hover~label,
        .rating-stars input:checked~label {
            color: #f0c040;
            transform: scale(1.05);
        }
        .comment-box {
            background: #1a1a30;
            border-radius: 14px;
            padding: 1.5rem;
            margin-top: 1.2rem;
        }
        .comment-box textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #2a2a45;
            border-radius: 10px;
            background: #12121f;
            color: #e8e0d0;
            font-size: 1rem;
            resize: vertical;
            min-height: 100px;
            outline: none;
            transition: border-color .3s;
        }
        .comment-box textarea:focus {
            border-color: #f0c040;
        }
        .comment-box .btn {
            background: #f0c040;
            border: none;
            border-radius: 50px;
            padding: 0.6rem 2rem;
            color: #0d0d1a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background .3s;
            margin-top: 0.6rem;
        }
        .comment-box .btn:hover {
            background: #e8b830;
        }
        .featured-img {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
        }
        .featured-img img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .featured-img figcaption {
            padding: 0.8rem 1.2rem;
            background: #1a1a30;
            font-size: 0.9rem;
            color: #b0a090;
            border-top: 1px solid #2a2a40;
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
            margin: 1rem 0;
            padding: 0.6rem 0;
            list-style: none;
        }
        .link-list li a {
            background: #1e1e36;
            padding: 0.3rem 1rem;
            border-radius: 50px;
            border: 1px solid #2a2a45;
            font-size: 0.9rem;
            transition: all .25s;
            display: inline-block;
        }
        .link-list li a:hover {
            background: #f0c04020;
            border-color: #f0c04060;
            text-decoration: none;
        }
        friend-link {
            display: block;
            padding: 1.2rem 0 0.6rem;
            border-top: 1px solid #2a2a40;
            margin-top: 1.2rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 0.6rem 0.3rem 0;
            padding: 0.2rem 0.8rem;
            border-radius: 30px;
            background: #1e1e36;
            border: 1px solid #2a2a45;
            font-size: 0.9rem;
            transition: all .25s;
        }
        friend-link a:hover {
            background: #f0c04015;
            border-color: #f0c04060;
            text-decoration: none;
        }
        .site-footer {
            background: #0a0a18;
            border-top: 2px solid #f0c04020;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1.5rem;
        }
        .footer-copy {
            text-align: center;
            width: 100%;
            padding-top: 1.2rem;
            font-size: 0.9rem;
            color: #706050;
            border-top: 1px solid #1a1a30;
            margin-top: 0.8rem;
        }
        @media (max-width: 820px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .section-card {
                padding: 1.2rem 1rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 1rem 0 0.4rem;
                gap: 0.4rem 0;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                display: block;
                padding: 0.5rem 0;
                border-bottom: none;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
            .feature-grid {
                grid-template-columns: 1fr;
            }
            .rating-stars {
                font-size: 1.4rem;
            }
            .footer-inner {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.3rem;
            }
            .my-logo small {
                font-size: 0.6rem;
            }
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.2rem;
                padding-left: 0.6rem;
            }
            .container {
                padding: 0 12px;
            }
            .section-card {
                padding: 0.9rem 0.8rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
                gap: 0.2rem 0.5rem;
            }
            .comment-box textarea {
                min-height: 70px;
            }
        }
        .mt-1 {
            margin-top: 0.6rem;
        }
        .mt-2 {
            margin-top: 1.2rem;
        }
        .mb-1 {
            margin-bottom: 0.6rem;
        }
        .mb-2 {
            margin-bottom: 1.2rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.6rem;
        }
        .gap-1 {
            gap: 0.6rem;
        }
        .gap-2 {
            gap: 1.2rem;
        }
        .no-deco:hover {
            text-decoration: none;
        }
        .schema-hidden {
            display: none;
        }
        .reveal {
            opacity: 0;
            transform: translateY(20px);
            animation: revealUp 0.7s ease forwards;
        }
        @keyframes revealUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .reveal-delay-1 {
            animation-delay: 0.1s;
        }
        .reveal-delay-2 {
            animation-delay: 0.2s;
        }
        .reveal-delay-3 {
            animation-delay: 0.3s;
        }
