        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #0b0e1a;
            color: #e8edf5;
            line-height: 1.75;
            padding: 0;
            margin: 0;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: #f7d44a;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #ffe174;
            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: 700;
            line-height: 1.25;
            margin-top: 0;
            color: #f0f4ff;
        }
        h1 {
            font-size: 2.6rem;
            margin-bottom: 1rem;
        }
        h2 {
            font-size: 2rem;
            margin: 2.5rem 0 1rem;
            border-bottom: 3px solid #f7d44a;
            padding-bottom: 0.5rem;
            display: inline-block;
        }
        h3 {
            font-size: 1.5rem;
            margin: 2rem 0 0.75rem;
        }
        h4 {
            font-size: 1.2rem;
            margin: 1.5rem 0 0.5rem;
            color: #cbd5e6;
        }
        p {
            margin-bottom: 1.25rem;
        }
        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: linear-gradient(145deg, #11172b, #1a2240);
            border-bottom: 2px solid #2a3555;
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            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.75rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 900;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f7d44a, #f9a825);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(247, 212, 74, 0.15);
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo small {
            font-size: 1.2rem;
            font-weight: 400;
            -webkit-text-fill-color: #aab4d0;
            color: #aab4d0;
            letter-spacing: 0;
        }
        .my-logo a {
            text-decoration: none;
            -webkit-text-fill-color: inherit;
            color: inherit;
        }
        .my-logo a:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            flex-wrap: wrap;
        }
        .nav-menu a {
            padding: 0.5rem 1rem;
            border-radius: 40px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #c8d0e0;
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        .nav-menu a:hover,
        .nav-menu a:focus {
            background: #2a3555;
            color: #f7d44a;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f0f4ff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            transition: transform 0.2s;
        }
        .hamburger:hover {
            transform: scale(1.1);
        }
        #nav-toggle {
            display: none;
        }
        .nav-overlay {
            display: none;
        }
        .breadcrumb {
            background: #0f1424;
            padding: 0.75rem 0;
            border-bottom: 1px solid #1f2a44;
            font-size: 0.9rem;
            color: #8e9bb5;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.6rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #5a6a8a;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #b0bddb;
        }
        .breadcrumb a:hover {
            color: #f7d44a;
        }
        .breadcrumb .current {
            color: #f7d44a;
            font-weight: 600;
        }
        .search-wrap {
            background: #11172b;
            border-radius: 16px;
            padding: 2rem 2rem 2.2rem;
            margin: 2.5rem 0 2rem;
            border: 1px solid #2a3555;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }
        .search-wrap h3 {
            margin-top: 0;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-top: 0.75rem;
        }
        .search-form input {
            flex: 1 1 260px;
            padding: 0.85rem 1.2rem;
            border: none;
            border-radius: 60px;
            font-size: 1rem;
            background: #1c2542;
            color: #f0f4ff;
            outline: 2px solid transparent;
            transition: outline 0.2s;
        }
        .search-form input:focus {
            outline: 2px solid #f7d44a;
        }
        .search-form input::placeholder {
            color: #6f7d9e;
        }
        .search-form button {
            padding: 0.85rem 2rem;
            border: none;
            border-radius: 60px;
            background: linear-gradient(135deg, #f7d44a, #f0b800);
            color: #0b0e1a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            transform: scale(1.03);
            box-shadow: 0 6px 24px rgba(247, 212, 74, 0.3);
        }
        .interact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .interact-card {
            background: #11172b;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            border: 1px solid #2a3555;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
            transition: border-color 0.2s;
        }
        .interact-card:hover {
            border-color: #3f4e74;
        }
        .interact-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.25rem;
            margin: 0.75rem 0 1rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #3c4a6a;
            cursor: pointer;
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f7d44a;
            transform: scale(1.1);
        }
        .star-rating input:checked~label {
            color: #f7d44a;
        }
        .interact-card form {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        .interact-card form input,
        .interact-card form textarea {
            padding: 0.75rem 1rem;
            border: none;
            border-radius: 10px;
            background: #1c2542;
            color: #f0f4ff;
            font-size: 0.95rem;
            outline: 2px solid transparent;
            transition: outline 0.2s;
            width: 100%;
        }
        .interact-card form input:focus,
        .interact-card form textarea:focus {
            outline: 2px solid #f7d44a;
        }
        .interact-card form textarea {
            min-height: 80px;
            resize: vertical;
        }
        .interact-card form button {
            align-self: flex-start;
            padding: 0.7rem 1.8rem;
            border: none;
            border-radius: 60px;
            background: linear-gradient(135deg, #f7d44a, #f0b800);
            color: #0b0e1a;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .interact-card form button:hover {
            transform: scale(1.03);
            box-shadow: 0 6px 24px rgba(247, 212, 74, 0.25);
        }
        .featured-image {
            margin: 2.5rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
            background: #0f1424;
            padding: 0.5rem;
        }
        .featured-image img {
            width: 100%;
            border-radius: 12px;
            aspect-ratio: 1200/630;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 0.75rem 0.5rem 0.25rem;
            font-size: 0.9rem;
            color: #8e9bb5;
            text-align: center;
            font-style: italic;
        }
        .content-body a {
            font-weight: 500;
            border-bottom: 1px dashed #3f4e74;
        }
        .content-body a:hover {
            border-bottom-color: #f7d44a;
        }
        friend-link {
            display: block;
            margin-top: 2rem;
            padding: 1.5rem 2rem;
            background: #0f1424;
            border-radius: 16px;
            border: 1px solid #2a3555;
        }
        friend-link::before {
            content: "🔗 🤝 Friend Links";
            display: block;
            font-size: 1.2rem;
            font-weight: 700;
            color: #f7d44a;
            margin-bottom: 0.75rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.25rem 1rem 0.25rem 0;
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            background: #1a2240;
            transition: background 0.2s;
        }
        friend-link a:hover {
            background: #2a3555;
            text-decoration: none;
        }
        .site-footer {
            background: #0a0e1c;
            border-top: 2px solid #1f2a44;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
            text-align: center;
            font-size: 0.9rem;
            color: #6f7d9e;
        }
        .site-footer .copyright {
            margin-top: 1.2rem;
            font-size: 0.85rem;
            color: #4e5d7a;
        }
        .site-footer .copyright strong {
            color: #8e9bb5;
        }
        @media (max-width: 820px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .interact-grid {
                grid-template-columns: 1fr;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #11172b;
                border-radius: 16px;
                padding: 1rem 0.5rem;
                margin-top: 0.5rem;
                border: 1px solid #2a3555;
                max-height: 70vh;
                overflow-y: auto;
            }
            .nav-menu a {
                padding: 0.7rem 1.2rem;
                width: 100%;
                border-radius: 8px;
            }
            .hamburger {
                display: block;
            }
            #nav-toggle:checked~.nav-menu {
                display: flex;
            }
            .nav-overlay {
                display: none;
            }
            .search-wrap {
                padding: 1.5rem 1.2rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                justify-content: center;
            }
            .breadcrumb ol {
                font-size: 0.8rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .my-logo small {
                font-size: 1rem;
            }
            friend-link {
                padding: 1.2rem 1rem;
            }
            friend-link a {
                margin: 0.2rem 0.5rem 0.2rem 0;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.9rem;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.35rem;
            }
            .interact-card {
                padding: 1.2rem 1.2rem;
            }
            .star-rating label {
                font-size: 1.6rem;
            }
            .featured-image {
                margin: 1.5rem 0;
            }
        }
        .text-accent {
            color: #f7d44a;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .gap-1 {
            gap: 1rem;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }
        .emoji-big {
            font-size: 1.6em;
            line-height: 1;
        }
        .pill {
            display: inline-block;
            background: #2a3555;
            padding: 0.15rem 0.9rem;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 600;
            color: #b0bddb;
        }
        hr {
            border: none;
            border-top: 1px solid #1f2a44;
            margin: 2rem 0;
        }
        blockquote {
            border-left: 4px solid #f7d44a;
            padding: 0.75rem 1.2rem;
            margin: 1.5rem 0;
            background: #0f1424;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #c8d0e0;
        }
        blockquote strong {
            color: #f7d44a;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .stat-card {
            background: #0f1424;
            border-radius: 12px;
            padding: 1rem 1.2rem;
            text-align: center;
            border: 1px solid #2a3555;
        }
        .stat-card .number {
            font-size: 2.2rem;
            font-weight: 900;
            color: #f7d44a;
            line-height: 1.2;
        }
        .stat-card .label {
            font-size: 0.85rem;
            color: #8e9bb5;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #0f1424;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 0.75rem 1rem;
            text-align: left;
            border-bottom: 1px solid #1f2a44;
        }
        th {
            background: #1a2240;
            color: #f7d44a;
            font-weight: 700;
        }
        tr:last-child td {
            border-bottom: none;
        }
