        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #0f0f1a;
            color: #e0e0e0;
            line-height: 1.7;
            padding: 0;
            margin: 0;
            min-height: 100vh;
        }
        a {
            color: #f5c842;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus {
            color: #ffdf7e;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin: 1rem 0;
        }
        li {
            margin-bottom: 0.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #fff;
            margin-top: 1.8rem;
            margin-bottom: 1rem;
        }
        h1 {
            font-size: 2.6rem;
            border-left: 6px solid #f5c842;
            padding-left: 1.2rem;
        }
        h2 {
            font-size: 2rem;
            border-bottom: 2px solid #2a2a3e;
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #f0e6d0;
        }
        h4 {
            font-size: 1.2rem;
            color: #c0b8a8;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #12121f 0%, #1a1a2e 100%);
            border-bottom: 2px solid #f5c84233;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f5c842, #f0a500);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(245, 200, 66, 0.15);
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f5c842;
            font-size: 2rem;
        }
        .my-logo small {
            font-size: 0.7rem;
            opacity: 0.6;
            -webkit-text-fill-color: initial;
            color: #aaa;
            font-weight: 400;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f5c842;
            font-size: 2rem;
            cursor: pointer;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #2a2a3e;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            flex-wrap: wrap;
        }
        nav a {
            color: #ccc;
            font-weight: 500;
            padding: 0.4rem 0.8rem;
            border-radius: 6px;
            transition: background 0.2s, color 0.2s;
            font-size: 0.95rem;
        }
        nav a:hover,
        nav a.active {
            background: #2a2a4e;
            color: #f5c842;
            text-decoration: none;
        }
        .nav-right {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .breadcrumb {
            background: #1a1a2a;
            padding: 0.7rem 0;
            border-bottom: 1px solid #2a2a3e;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #888;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #f5c842;
        }
        .breadcrumb .current {
            color: #f5c842;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(145deg, #1a1a2e 0%, #0f0f1a 100%);
            padding: 3rem 0 2rem;
            text-align: center;
            border-bottom: 1px solid #2a2a3e;
        }
        .hero h1 {
            border-left: none;
            padding-left: 0;
            margin-top: 0;
        }
        .hero p {
            font-size: 1.3rem;
            color: #bbb;
            max-width: 800px;
            margin: 1rem auto 1.8rem;
        }
        .hero .last-updated {
            font-size: 0.85rem;
            color: #888;
            display: block;
            margin-top: 1rem;
        }
        .hero .last-updated i {
            margin-right: 0.4rem;
        }
        section {
            padding: 2.5rem 0;
        }
        section:nth-child(even) {
            background: #141420;
        }
        .section-title {
            text-align: center;
            margin-bottom: 2rem;
        }
        .section-title h2 {
            display: inline-block;
            border-bottom: 3px solid #f5c842;
            padding-bottom: 0.3rem;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.8rem;
            margin: 2rem 0;
        }
        .card {
            background: #1e1e32;
            border-radius: 16px;
            padding: 1.8rem;
            border: 1px solid #2a2a44;
            transition: transform 0.25s, box-shadow 0.25s;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        }
        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(245, 200, 66, 0.08);
            border-color: #f5c84255;
        }
        .card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .card h3 i {
            color: #f5c842;
            font-size: 1.4rem;
        }
        .card p {
            color: #bbb;
            font-size: 0.98rem;
        }
        .img-wrapper {
            margin: 2.5rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
            background: #1a1a2e;
            text-align: center;
        }
        .img-wrapper img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .img-wrapper figcaption {
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
            color: #999;
            background: #12121f;
            border-top: 1px solid #2a2a3e;
        }
        .form-box {
            background: #1a1a2e;
            border-radius: 16px;
            padding: 2rem;
            border: 1px solid #2a2a44;
            margin: 2rem 0;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        .form-box h3 {
            margin-top: 0;
            text-align: center;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            color: #ddd;
            margin-bottom: 0.3rem;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.85rem 1rem;
            border-radius: 8px;
            border: 1px solid #333;
            background: #0f0f1a;
            color: #e0e0e0;
            font-size: 1rem;
            transition: border 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #f5c842;
            box-shadow: 0 0 0 3px #f5c84222;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            display: inline-block;
            background: #f5c842;
            color: #0f0f1a;
            font-weight: 700;
            padding: 0.85rem 2.2rem;
            border: none;
            border-radius: 40px;
            font-size: 1.05rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s;
        }
        .btn:hover {
            background: #ffd95e;
            transform: scale(1.02);
        }
        .btn:active {
            transform: scale(0.97);
        }
        .btn-secondary {
            background: #2a2a4e;
            color: #e0e0e0;
        }
        .btn-secondary:hover {
            background: #3a3a5e;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: center;
            gap: 0.3rem;
            font-size: 2.2rem;
            margin: 1rem 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #555;
            transition: color 0.2s, transform 0.1s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5c842;
            transform: scale(1.05);
        }
        .link-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 0.6rem 1.2rem;
            list-style: none;
            padding: 0;
            margin: 1.5rem 0;
        }
        .link-list li {
            margin: 0;
        }
        .link-list a {
            padding: 0.4rem 0.8rem;
            border-radius: 6px;
            background: #1a1a2e;
            display: block;
            border: 1px solid #2a2a44;
            transition: background 0.2s, border-color 0.2s;
            font-size: 0.95rem;
        }
        .link-list a:hover {
            background: #2a2a4e;
            border-color: #f5c84255;
            text-decoration: none;
        }
        friend-link {
            display: block;
            padding: 1.5rem 0;
            border-top: 2px solid #2a2a3e;
            margin-top: 2rem;
        }
        friend-link ul {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.5rem;
            list-style: none;
            padding: 0;
            margin: 0.8rem 0 0;
        }
        friend-link ul li {
            margin: 0;
        }
        friend-link ul a {
            color: #aaa;
            font-size: 0.95rem;
        }
        friend-link ul a:hover {
            color: #f5c842;
        }
        footer {
            background: #0a0a14;
            border-top: 2px solid #1a1a2e;
            padding: 2rem 0 1.2rem;
            text-align: center;
            color: #888;
            font-size: 0.9rem;
        }
        footer .copyright {
            margin-top: 1rem;
            font-size: 0.82rem;
            color: #666;
        }
        footer .copyright strong {
            color: #999;
        }
        @media (max-width: 768px) {
            html {
                font-size: 15px;
            }
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding: 1rem 0 0.5rem;
                gap: 0.4rem;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 0.7rem 1rem;
                border-radius: 8px;
                background: #1a1a2e;
            }
            .header-inner {
                align-items: center;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            .link-list {
                grid-template-columns: 1fr;
            }
            .form-box {
                padding: 1.2rem;
            }
            .star-rating {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            h1 {
                font-size: 1.6rem;
                padding-left: 0.8rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .breadcrumb ol {
                font-size: 0.75rem;
                gap: 0.2rem 0.4rem;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0f0f1a;
        }
        ::-webkit-scrollbar-thumb {
            background: #3a3a5e;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #f5c84255;
        }
        .text-center {
            text-align: center;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .flex-center {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .badge {
            display: inline-block;
            background: #f5c84222;
            color: #f5c842;
            padding: 0.2rem 1rem;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 600;
            border: 1px solid #f5c84244;
        }
        blockquote {
            border-left: 4px solid #f5c842;
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
            background: #1a1a2e;
            border-radius: 0 12px 12px 0;
            color: #ccc;
            font-style: italic;
        }
        blockquote strong {
            color: #fff;
        }
        .highlight {
            color: #f5c842;
            font-weight: 600;
        }
        .divider {
            border: none;
            border-top: 1px solid #2a2a3e;
            margin: 2rem 0;
        }
