        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            background: #0b0b0f;
            color: #e8e6e3;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f0a030;
            text-decoration: none;
            transition: color 0.25s ease, border-color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffc85a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #f5f0eb;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 3px solid #d42a2a;
            padding-bottom: 0.4rem;
            display: inline-block;
            margin-top: 0.4rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #d42a2a;
            padding-left: 0.8rem;
            margin-top: 2.8rem;
        }
        h3 {
            font-size: 1.4rem;
            margin-top: 2rem;
        }
        h4 {
            font-size: 1.15rem;
            margin-top: 1.4rem;
            color: #d4cfca;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .badge {
            display: inline-block;
            background: #d42a2a;
            color: #fff;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.2rem 0.8rem;
            border-radius: 30px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        header {
            background: #14141c;
            border-bottom: 2px solid #2a1e1e;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.8rem 20px;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #d42a2a, #f0a030);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            text-decoration: none;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .my-logo i {
            -webkit-text-fill-color: #d42a2a;
            font-size: 1.6rem;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #e8e6e3;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #2a2a3a;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            flex-wrap: wrap;
        }
        nav a {
            color: #cfcac5;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.3rem 0.2rem;
            border-bottom: 2px solid transparent;
            transition: color 0.2s, border-color 0.2s;
        }
        nav a:hover {
            color: #f0a030;
            border-bottom-color: #f0a030;
            text-decoration: none;
        }
        .nav-search {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            background: #1f1f2a;
            border-radius: 40px;
            padding: 0.2rem 0.2rem 0.2rem 1rem;
            border: 1px solid #3a3a4a;
            transition: border-color 0.3s;
        }
        .nav-search:focus-within {
            border-color: #f0a030;
        }
        .nav-search input {
            background: transparent;
            border: none;
            color: #e8e6e3;
            font-size: 0.9rem;
            outline: none;
            width: 140px;
            padding: 0.4rem 0;
        }
        .nav-search input::placeholder {
            color: #7a7a8a;
        }
        .nav-search button {
            background: #d42a2a;
            border: none;
            color: #fff;
            padding: 0.4rem 1rem;
            border-radius: 40px;
            font-size: 0.85rem;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.25s;
        }
        .nav-search button:hover {
            background: #b32020;
        }
        .breadcrumb {
            background: #1a1a24;
            padding: 0.6rem 20px;
            font-size: 0.85rem;
            border-bottom: 1px solid #2a2a3a;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }
        .breadcrumb a {
            color: #a0a0b0;
        }
        .breadcrumb a:hover {
            color: #f0a030;
            text-decoration: none;
        }
        .breadcrumb span {
            color: #6a6a7a;
            margin: 0 0.3rem;
        }
        .breadcrumb .current {
            color: #f0a030;
            font-weight: 500;
        }
        main {
            flex: 1;
            padding: 2rem 20px 3rem;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #9a9aaa;
            margin-bottom: 1.8rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .last-updated i {
            color: #f0a030;
        }
        .featured-image {
            margin: 2rem 0 2.5rem;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.8);
            background: #1a1a24;
        }
        .featured-image img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
            border-bottom: 3px solid #d42a2a;
        }
        .featured-image figcaption {
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
            color: #b0b0be;
            background: #14141c;
            font-style: italic;
        }
        .info-card {
            background: #1a1a26;
            border-left: 5px solid #d42a2a;
            padding: 1.4rem 1.8rem;
            border-radius: 0 12px 12px 0;
            margin: 1.6rem 0 2rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
        }
        .info-card p:last-child {
            margin-bottom: 0;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin: 1.6rem 0;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 1.5rem;
            margin: 1.6rem 0;
        }
        .emoji-big {
            font-size: 1.6rem;
            line-height: 1;
        }
        .highlight {
            background: linear-gradient(to right, #d42a2a22, #f0a03022);
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            font-weight: 600;
        }
        .btn {
            display: inline-block;
            background: #d42a2a;
            color: #fff;
            padding: 0.6rem 1.6rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.95rem;
            border: none;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
        }
        .btn:hover {
            background: #b32020;
            transform: translateY(-2px);
            text-decoration: none;
            color: #fff;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #f0a030;
            color: #f0a030;
        }
        .btn-outline:hover {
            background: #f0a03022;
        }
        .interaction-area {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 3rem 0 2rem;
            padding: 2rem 0;
            border-top: 2px solid #2a2a3a;
            border-bottom: 2px solid #2a2a3a;
        }
        .interaction-box {
            background: #16161f;
            padding: 1.6rem 1.8rem;
            border-radius: 14px;
            border: 1px solid #2a2a3a;
        }
        .interaction-box h3 {
            margin-top: 0;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .interaction-box form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 0.8rem;
        }
        .interaction-box input,
        .interaction-box textarea,
        .interaction-box select {
            background: #0e0e16;
            border: 1px solid #3a3a4a;
            color: #e8e6e3;
            padding: 0.7rem 1rem;
            border-radius: 8px;
            font-size: 0.95rem;
            font-family: inherit;
            transition: border-color 0.3s;
            width: 100%;
        }
        .interaction-box input:focus,
        .interaction-box textarea:focus,
        .interaction-box select:focus {
            border-color: #f0a030;
            outline: none;
        }
        .interaction-box textarea {
            min-height: 90px;
            resize: vertical;
        }
        .interaction-box .btn {
            align-self: flex-start;
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            flex-direction: row-reverse;
            justify-content: flex-end;
            font-size: 1.6rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #4a4a5a;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f0c030;
        }
        friend-link {
            display: block;
            margin: 2rem 0 0.6rem;
        }
        friend-link ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.8rem;
        }
        friend-link ul li a {
            color: #b0b0c0;
            font-size: 0.9rem;
            border-bottom: 1px dotted #4a4a5a;
        }
        friend-link ul li a:hover {
            color: #f0a030;
            border-bottom-color: #f0a030;
            text-decoration: none;
        }
        footer {
            background: #0e0e16;
            border-top: 2px solid #1a1a2a;
            padding: 2rem 20px 1.2rem;
            margin-top: 2rem;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }
        .footer-inner .copyright {
            font-size: 0.85rem;
            color: #7a7a8a;
        }
        .footer-inner .copyright strong {
            color: #c0c0d0;
        }
        @media (max-width: 900px) {
            .grid-2,
            .grid-3 {
                grid-template-columns: 1fr;
            }
            .interaction-area {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 1rem 0 0.6rem;
                gap: 0.8rem;
                border-top: 1px solid #2a2a3a;
                margin-top: 0.6rem;
            }
            nav.open {
                display: flex;
            }
            .nav-search {
                width: 100%;
            }
            .nav-search input {
                width: 100%;
            }
            .header-inner {
                padding: 0.6rem 16px;
            }
            main {
                padding: 1.2rem 16px 2rem;
            }
            .breadcrumb {
                padding: 0.4rem 16px;
                font-size: 0.75rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .info-card {
                padding: 1rem 1.2rem;
            }
            .interaction-box {
                padding: 1.2rem;
            }
            .featured-image figcaption {
                font-size: 0.8rem;
                padding: 0.6rem 0.8rem;
            }
        }
        @media (max-width: 480px) {
            .footer-inner {
                flex-direction: column;
                text-align: center;
            }
            .nav-search input {
                width: 100%;
            }
            .star-rating {
                font-size: 1.4rem;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
            background: #0b0b0f;
        }
        ::-webkit-scrollbar-track {
            background: #1a1a24;
        }
        ::-webkit-scrollbar-thumb {
            background: #3a3a4a;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #d42a2a;
        }
        .schema-hidden {
            display: none;
        }
nav { display: flex !important; }
            .hamburger { display: none !important; }
