        *,
        *::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: #0b0c1a;
            color: #e8eaf0;
            line-height: 1.75;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #ffb347;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffd966;
            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: #f5f3f0;
            letter-spacing: -0.01em;
        }
        h1 {
            font-size: clamp(2.2rem, 6vw, 3.8rem);
            margin-bottom: 0.5rem;
        }
        h2 {
            font-size: clamp(1.6rem, 4vw, 2.6rem);
            margin-top: 2.5rem;
            margin-bottom: 0.75rem;
            border-left: 5px solid #ffb347;
            padding-left: 1rem;
        }
        h3 {
            font-size: clamp(1.25rem, 3vw, 1.8rem);
            margin-top: 2rem;
            margin-bottom: 0.5rem;
        }
        h4 {
            font-size: clamp(1.05rem, 2vw, 1.35rem);
            margin-top: 1.5rem;
            margin-bottom: 0.3rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.25rem;
            max-width: 75ch;
        }
        ul,
        ol {
            margin-bottom: 1.25rem;
            padding-left: 1.75rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        blockquote {
            border-left: 4px solid #ffb347;
            padding-left: 1.25rem;
            margin: 1.5rem 0;
            font-style: italic;
            color: #cfd2dc;
            background: rgba(255, 179, 71, 0.06);
            padding: 1rem 1.5rem;
            border-radius: 0 12px 12px 0;
        }
        hr {
            border: none;
            border-top: 2px solid #2a2c42;
            margin: 2.5rem 0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: linear-gradient(145deg, #13152b, #1a1d38);
            border-bottom: 2px solid #ffb347;
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem 1.25rem;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ffb347, #ff8c00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.02em;
            display: inline-block;
            transition: transform 0.2s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.75rem;
            -webkit-text-fill-color: #aab;
            display: block;
            font-weight: 400;
            letter-spacing: 0.3px;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 0.25rem 0.1rem;
            flex-wrap: wrap;
            padding: 0;
            margin: 0;
        }
        .nav-list li a {
            display: block;
            padding: 0.45rem 0.9rem;
            border-radius: 40px;
            font-weight: 500;
            font-size: 0.9rem;
            color: #d4d6e2;
            transition: background 0.2s, color 0.2s;
        }
        .nav-list li a:hover,
        .nav-list li a:focus-visible {
            background: rgba(255, 179, 71, 0.18);
            color: #ffb347;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid #ffb347;
            color: #ffb347;
            font-size: 1.5rem;
            padding: 0.3rem 0.7rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 179, 71, 0.15);
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            background: #1c1f33;
            padding: 0.5rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #2a2c42;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #777a92;
        }
        .breadcrumb a {
            color: #aab0c4;
        }
        .breadcrumb a:hover {
            color: #ffb347;
        }
        .breadcrumb .current {
            color: #ffb347;
            font-weight: 600;
        }
        main {
            flex: 1;
            padding: 2rem 0 3rem;
        }
        .featured-image {
            margin: 1.5rem 0 2.5rem;
            border-radius: 16px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
        }
        .featured-image figcaption {
            font-size: 0.85rem;
            color: #9095aa;
            margin-top: 0.5rem;
            text-align: center;
        }
        .search-module {
            background: #1a1d38;
            border-radius: 16px;
            padding: 1.75rem 2rem;
            margin: 2rem 0;
            border: 1px solid #2a2c42;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center;
        }
        .search-module label {
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 1.1rem;
        }
        .search-module input[type="text"] {
            flex: 1 1 240px;
            padding: 0.7rem 1.2rem;
            border: 2px solid #2f3250;
            border-radius: 40px;
            background: #0f1122;
            color: #e8eaf0;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.25s;
        }
        .search-module input[type="text"]:focus {
            border-color: #ffb347;
        }
        .search-module button {
            background: #ffb347;
            border: none;
            color: #0b0c1a;
            font-weight: 700;
            padding: 0.7rem 1.8rem;
            border-radius: 40px;
            cursor: pointer;
            font-size: 0.95rem;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-module button:hover {
            background: #ffc66d;
            transform: scale(1.02);
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        @media (max-width:700px) {
            .interaction-grid {
                grid-template-columns: 1fr;
            }
        }
        .card {
            background: #1a1d38;
            border-radius: 16px;
            padding: 1.5rem 1.75rem;
            border: 1px solid #2a2c42;
            transition: border-color 0.3s;
        }
        .card:hover {
            border-color: #ffb34755;
        }
        .card h3 {
            margin-top: 0;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .card textarea {
            width: 100%;
            padding: 0.7rem 1rem;
            border-radius: 12px;
            background: #0f1122;
            border: 2px solid #2f3250;
            color: #e8eaf0;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 90px;
            outline: none;
            transition: border 0.25s;
            font-family: inherit;
        }
        .card textarea:focus {
            border-color: #ffb347;
        }
        .card input[type="text"],
        .card input[type="number"] {
            width: 100%;
            padding: 0.6rem 1rem;
            border-radius: 40px;
            background: #0f1122;
            border: 2px solid #2f3250;
            color: #e8eaf0;
            outline: none;
            transition: border 0.25s;
            font-size: 0.95rem;
        }
        .card input:focus {
            border-color: #ffb347;
        }
        .card .btn {
            background: #ffb347;
            border: none;
            color: #0b0c1a;
            font-weight: 700;
            padding: 0.6rem 1.6rem;
            border-radius: 40px;
            cursor: pointer;
            font-size: 0.9rem;
            transition: background 0.2s;
            margin-top: 0.75rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .card .btn:hover {
            background: #ffc66d;
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #3d3f5e;
            cursor: pointer;
            margin: 0.5rem 0;
        }
        .star-rating i {
            transition: color 0.2s, transform 0.1s;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #ffb347;
            transform: scale(1.12);
        }
        .link-listing {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 0.75rem 1rem;
            background: #13152b;
            padding: 1.5rem 2rem;
            border-radius: 16px;
            border: 1px solid #2a2c42;
            margin: 2rem 0;
        }
        .link-listing a {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.3rem 0;
            font-size: 0.95rem;
            border-bottom: 1px solid transparent;
            transition: border-color 0.2s;
        }
        .link-listing a:hover {
            border-bottom-color: #ffb347;
            text-decoration: none;
        }
        .link-listing a i {
            width: 1.2rem;
            color: #ffb347;
            font-size: 0.8rem;
        }
        .site-footer {
            background: #0d0e1f;
            border-top: 2px solid #ffb34733;
            padding: 2rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1.5rem 2rem;
        }
        .footer-col {
            flex: 1 1 200px;
        }
        .footer-col h4 {
            margin-top: 0;
            font-size: 1.05rem;
            color: #ffb347;
        }
        friend-link {
            display: block;
            margin-top: 0.5rem;
        }
        friend-link a {
            display: inline-block;
            padding: 0.2rem 0;
            color: #b0b6cc;
        }
        friend-link a:hover {
            color: #ffb347;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            margin-top: 1.5rem;
            border-top: 1px solid #232540;
            font-size: 0.85rem;
            color: #7a7f99;
            width: 100%;
        }
        .copyright a {
            color: #b0b6cc;
        }
        .copyright a:hover {
            color: #ffb347;
        }
        @media (max-width: 820px) {
            .hamburger {
                display: inline-block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a1d38;
                padding: 0.75rem 0.5rem;
                border-radius: 12px;
                margin-top: 0.5rem;
                border: 1px solid #2a2c42;
            }
            #nav-toggle:checked~.nav-list {
                display: flex;
            }
            .nav-wrapper {
                flex-wrap: wrap;
            }
            .header-inner {
                align-items: center;
            }
            .search-module {
                flex-direction: column;
                align-items: stretch;
            }
            .search-module button {
                justify-content: center;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.9rem;
            }
            .card {
                padding: 1.15rem;
            }
            .link-listing {
                padding: 1rem 1.2rem;
                grid-template-columns: 1fr 1fr;
            }
            .my-logo {
                font-size: 1.2rem;
            }
        }
        .text-muted {
            color: #9095aa;
            font-size: 0.9rem;
        }
        .tag {
            display: inline-block;
            background: #2a2c42;
            padding: 0.15rem 0.8rem;
            border-radius: 40px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #c8cce0;
            margin-right: 0.3rem;
        }
        .flex-between {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 0.5rem;
        }
        .gap-1 {
            gap: 1rem;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .emoji-lg {
            font-size: 1.4em;
        }
        button,
        input,
        textarea,
        select {
            font-family: inherit;
        }
        ::selection {
            background: #ffb34755;
            color: #fff;
        }
