        *,
        *::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, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
            background: #f8f6f0;
            color: #1f1f2e;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #d4a017;
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
            padding: 16px 0;
            border-bottom: 4px solid #b8860b;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #ffd700;
            text-shadow: 0 2px 8px rgba(255, 215, 0, 0.25);
            transition: transform 0.2s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo span {
            color: #fff;
            font-weight: 300;
        }
        .my-logo small {
            display: block;
            font-size: 0.65rem;
            color: #ccc;
            font-weight: 400;
            letter-spacing: 1px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #ffd700;
            font-size: 2rem;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 215, 0, 0.15);
        }
        .main-nav {
            display: flex;
            gap: 6px 18px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #e0e0e0;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.25s, color 0.25s;
        }
        .main-nav a:hover {
            color: #ffd700;
            border-bottom-color: #ffd700;
            text-decoration: none;
        }
        .breadcrumb {
            background: #f0ede6;
            padding: 10px 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #ddd6c8;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #b8860b;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #5a4a3a;
        }
        .breadcrumb a:hover {
            color: #b8860b;
        }
        .breadcrumb .active {
            color: #1f1f2e;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 50%, #1a1a2e 100%);
            color: #fff;
            padding: 50px 0 40px;
            text-align: center;
            border-bottom: 6px solid #b8860b;
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #ffd700;
            letter-spacing: -0.5px;
            line-height: 1.2;
            margin-bottom: 12px;
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 750px;
            margin: 0 auto 16px;
            color: #cfcfcf;
        }
        .hero .badge {
            display: inline-block;
            background: #b8860b;
            color: #fff;
            padding: 4px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        .last-updated {
            text-align: center;
            padding: 10px 0;
            background: #f0ede6;
            font-size: 0.85rem;
            color: #5a4a3a;
            border-bottom: 1px solid #ddd6c8;
        }
        .last-updated strong {
            color: #b8860b;
        }
        .content {
            padding: 40px 0 60px;
        }
        .content h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #1a1a2e;
            border-left: 6px solid #b8860b;
            padding-left: 18px;
            margin: 48px 0 20px;
        }
        .content h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2d1b4e;
            margin: 32px 0 14px;
            padding-bottom: 4px;
            border-bottom: 2px dashed #ddd6c8;
        }
        .content h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #3d2b5e;
            margin: 24px 0 10px;
        }
        .content p {
            margin-bottom: 16px;
            font-size: 1.05rem;
            color: #2c2c3a;
        }
        .content ul,
        .content ol {
            margin: 12px 0 20px 24px;
        }
        .content li {
            margin-bottom: 8px;
            font-size: 1.02rem;
        }
        .content strong {
            color: #b8860b;
            font-weight: 700;
        }
        .content .highlight-box {
            background: #f5f0e8;
            border-left: 6px solid #b8860b;
            padding: 18px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .content .emoji-lg {
            font-size: 1.4rem;
            margin-right: 6px;
        }
        .featured-image {
            margin: 32px 0;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            overflow: hidden;
        }
        .featured-image figcaption {
            background: #f0ede6;
            padding: 10px 16px;
            font-size: 0.9rem;
            color: #5a4a3a;
            text-align: center;
            font-style: italic;
        }
        .search-section {
            background: #f5f0e8;
            padding: 30px 24px;
            border-radius: 16px;
            margin: 40px 0;
            border: 1px solid #ddd6c8;
        }
        .search-section form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            max-width: 600px;
            margin: 12px auto 0;
        }
        .search-section input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 12px 18px;
            border: 2px solid #ccc3b0;
            border-radius: 30px;
            font-size: 1rem;
            background: #fff;
            transition: border-color 0.3s;
        }
        .search-section input[type="text"]:focus {
            border-color: #b8860b;
            outline: none;
        }
        .search-section button {
            padding: 12px 28px;
            background: #b8860b;
            color: #fff;
            border: none;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.15s;
        }
        .search-section button:hover {
            background: #d4a017;
            transform: translateY(-2px);
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 40px 0;
        }
        @media (max-width:700px) {
            .interaction-grid {
                grid-template-columns: 1fr;
            }
        }
        .card {
            background: #fff;
            border-radius: 16px;
            padding: 28px 24px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid #e8e0d4;
        }
        .card h3 {
            margin-top: 0;
            border-bottom: none;
            font-size: 1.3rem;
            color: #1a1a2e;
        }
        .card label {
            display: block;
            font-weight: 600;
            margin: 12px 0 4px;
            color: #2d1b4e;
        }
        .card input,
        .card textarea,
        .card select {
            width: 100%;
            padding: 10px 14px;
            border: 2px solid #ddd6c8;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            background: #fafafa;
            transition: border-color 0.3s;
        }
        .card input:focus,
        .card textarea:focus,
        .card select:focus {
            border-color: #b8860b;
            outline: none;
        }
        .card textarea {
            min-height: 90px;
            resize: vertical;
        }
        .card .btn-submit {
            margin-top: 14px;
            padding: 12px 28px;
            background: #1a1a2e;
            color: #ffd700;
            border: none;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.15s;
        }
        .card .btn-submit:hover {
            background: #2d1b4e;
            transform: translateY(-2px);
        }
        .star-rating {
            display: flex;
            gap: 8px;
            font-size: 2rem;
            cursor: pointer;
            direction: rtl;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #ddd6c8;
            transition: color 0.2s;
            font-size: 2rem;
            cursor: pointer;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #ffd700;
        }
        friend-link {
            display: block;
            background: #1a1a2e;
            color: #e0e0e0;
            padding: 36px 0 28px;
            border-top: 6px solid #b8860b;
            margin-top: 20px;
        }
        friend-link .container {
            display: flex;
            flex-wrap: wrap;
            gap: 16px 28px;
            justify-content: center;
        }
        friend-link a {
            color: #ffd700;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 4px 0;
            border-bottom: 1px solid transparent;
            transition: border-color 0.25s;
        }
        friend-link a:hover {
            border-bottom-color: #ffd700;
            text-decoration: none;
        }
        friend-link .fl-title {
            width: 100%;
            text-align: center;
            font-size: 1.1rem;
            font-weight: 600;
            color: #ffd700;
            margin-bottom: 6px;
            letter-spacing: 1px;
        }
        .site-footer {
            background: #0f0f1a;
            color: #aaa;
            padding: 24px 0;
            text-align: center;
            font-size: 0.9rem;
            border-top: 2px solid #2a2a3e;
        }
        .site-footer .copyright {
            color: #ccc;
        }
        .site-footer .copyright strong {
            color: #ffd700;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #1a1a2e;
                padding: 12px 0 18px;
                border-top: 1px solid #2a2a3e;
                margin-top: 8px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 16px;
                font-size: 1.05rem;
                border-bottom: 1px solid #2a2a3e;
            }
            .hero h1 {
                font-size: 1.9rem;
            }
            .content h2 {
                font-size: 1.6rem;
                padding-left: 12px;
            }
            .content h3 {
                font-size: 1.25rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.5rem;
            }
            .hero p {
                font-size: 0.95rem;
            }
            .content p {
                font-size: 0.98rem;
            }
            .card {
                padding: 18px 14px;
            }
            .search-section {
                padding: 20px 14px;
            }
        }
        .divider {
            width: 80px;
            height: 4px;
            background: #b8860b;
            border-radius: 4px;
            margin: 20px 0 28px;
        }
        .text-gold {
            color: #b8860b;
        }
        .text-muted {
            color: #6a5a4a;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .mt-0 {
            margin-top: 0;
        }
