        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #0f0e17;
            color: #fffffe;
            line-height: 1.75;
            padding: 0;
            margin: 0;
            -webkit-font-smoothing: antialiased;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #ff8906;
            text-decoration: none;
            transition: color .25s ease;
        }
        a:hover,
        a:focus {
            color: #f25f4c;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: #1a1932;
            padding: 16px 0;
            border-bottom: 3px solid #ff8906;
            position: sticky;
            top: 0;
            z-index: 100;
            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;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            letter-spacing: -0.5px;
            color: #ff8906;
            text-transform: uppercase;
            background: linear-gradient(135deg, #ff8906, #f25f4c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform .3s ease;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
        }
        .my-logo span {
            font-weight: 300;
            color: #fffffe;
            -webkit-text-fill-color: #fffffe;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fffffe;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background .2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 137, 6, 0.15);
        }
        .primary-nav {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .primary-nav a {
            padding: 8px 16px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.9rem;
            color: #fffffe;
            transition: all .25s ease;
            white-space: nowrap;
        }
        .primary-nav a:hover,
        .primary-nav a.active {
            background: #ff8906;
            color: #0f0e17;
            text-decoration: none;
        }
        .breadcrumb-wrap {
            background: #1a1932;
            padding: 10px 0;
            border-bottom: 1px solid #2a2942;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px;
            font-size: 0.85rem;
            color: #a7a9be;
        }
        .breadcrumb a {
            color: #ff8906;
        }
        .breadcrumb a:hover {
            color: #f25f4c;
        }
        .breadcrumb .sep {
            color: #555;
        }
        .main-content {
            padding: 40px 0 60px;
        }
        .hero {
            text-align: center;
            padding: 40px 0 30px;
        }
        .hero h1 {
            font-size: clamp(2rem, 6vw, 3.6rem);
            font-weight: 900;
            line-height: 1.2;
            background: linear-gradient(135deg, #ff8906, #f25f4c, #e53170);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 16px;
        }
        .hero p {
            font-size: 1.15rem;
            color: #a7a9be;
            max-width: 780px;
            margin: 0 auto 24px;
        }
        .hero .last-updated {
            display: inline-block;
            background: #2a2942;
            padding: 6px 20px;
            border-radius: 40px;
            font-size: 0.85rem;
            color: #ff8906;
            border: 1px solid #ff890633;
        }
        .hero .last-updated i {
            margin-right: 6px;
        }
        .section {
            margin-bottom: 48px;
        }
        .section h2 {
            font-size: clamp(1.6rem, 4vw, 2.4rem);
            font-weight: 800;
            color: #ff8906;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #2a2942;
        }
        .section h3 {
            font-size: 1.35rem;
            font-weight: 700;
            color: #f25f4c;
            margin-top: 32px;
            margin-bottom: 12px;
        }
        .section h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #e53170;
            margin-top: 24px;
            margin-bottom: 8px;
        }
        .section p {
            margin-bottom: 16px;
            color: #e0e0e0;
        }
        .section ul,
        .section ol {
            margin: 12px 0 20px 24px;
            color: #e0e0e0;
        }
        .section li {
            margin-bottom: 8px;
        }
        .highlight-box {
            background: #1a1932;
            border-left: 5px solid #ff8906;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .highlight-box strong {
            color: #ff8906;
        }
        .image-card {
            margin: 32px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
            background: #1a1932;
        }
        .image-card img {
            width: 100%;
            height: auto;
            object-fit: cover;
            aspect-ratio: 16/9;
        }
        .image-card .img-caption {
            padding: 12px 20px;
            font-size: 0.9rem;
            color: #a7a9be;
            font-style: italic;
            border-top: 1px solid #2a2942;
        }
        .rank-table-wrap {
            overflow-x: auto;
            margin: 24px 0;
            border-radius: 12px;
            border: 1px solid #2a2942;
        }
        .rank-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            min-width: 500px;
        }
        .rank-table thead {
            background: #ff8906;
            color: #0f0e17;
        }
        .rank-table th {
            padding: 14px 18px;
            text-align: left;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .rank-table td {
            padding: 12px 18px;
            border-bottom: 1px solid #2a2942;
            color: #e0e0e0;
        }
        .rank-table tbody tr:hover {
            background: #1a1932;
        }
        .rank-table .rank-num {
            font-weight: 800;
            color: #ff8906;
            width: 50px;
        }
        .search-section {
            background: #1a1932;
            border-radius: 16px;
            padding: 28px 32px;
            margin: 40px 0;
            border: 1px solid #2a2942;
        }
        .search-section h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 12px;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: 2px solid #2a2942;
            border-radius: 40px;
            background: #0f0e17;
            color: #fffffe;
            font-size: 1rem;
            outline: none;
            transition: border .3s;
        }
        .search-form input:focus {
            border-color: #ff8906;
        }
        .search-form button {
            padding: 14px 32px;
            background: #ff8906;
            border: none;
            border-radius: 40px;
            color: #0f0e17;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background .3s, transform .2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #f25f4c;
            transform: translateY(-2px);
        }
        .interact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 40px 0;
        }
        @media (max-width:768px) {
            .interact-grid {
                grid-template-columns: 1fr;
            }
        }
        .interact-card {
            background: #1a1932;
            border-radius: 16px;
            padding: 24px 28px;
            border: 1px solid #2a2942;
        }
        .interact-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.25rem;
        }
        .interact-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 12px;
        }
        .interact-card input,
        .interact-card textarea,
        .interact-card select {
            padding: 12px 16px;
            border: 2px solid #2a2942;
            border-radius: 10px;
            background: #0f0e17;
            color: #fffffe;
            font-size: 0.95rem;
            outline: none;
            transition: border .3s;
            font-family: inherit;
        }
        .interact-card input:focus,
        .interact-card textarea:focus,
        .interact-card select:focus {
            border-color: #ff8906;
        }
        .interact-card textarea {
            min-height: 90px;
            resize: vertical;
        }
        .interact-card button {
            padding: 12px 24px;
            background: #ff8906;
            border: none;
            border-radius: 40px;
            color: #0f0e17;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background .3s, transform .2s;
            align-self: flex-start;
        }
        .interact-card button:hover {
            background: #f25f4c;
            transform: translateY(-2px);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #3a3950;
            cursor: pointer;
            transition: color .25s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #ff8906;
        }
        .friend-links-section {
            background: #1a1932;
            border-radius: 16px;
            padding: 28px 32px;
            margin: 40px 0 20px;
            border: 1px solid #2a2942;
        }
        .friend-links-section h3 {
            margin-top: 0;
            color: #ff8906;
        }
        friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            margin-top: 12px;
        }
        friend-link a {
            color: #a7a9be;
            font-size: 0.95rem;
            padding: 4px 0;
            border-bottom: 1px dotted transparent;
            transition: all .25s;
        }
        friend-link a:hover {
            color: #ff8906;
            border-bottom-color: #ff8906;
            text-decoration: none;
        }
        .site-footer {
            background: #0a0a1a;
            padding: 32px 0 24px;
            border-top: 2px solid #1a1932;
            text-align: center;
        }
        .site-footer p {
            color: #6e6d8a;
            font-size: 0.85rem;
            margin-bottom: 6px;
        }
        .site-footer .copyright {
            color: #a7a9be;
            font-size: 0.85rem;
        }
        .site-footer .copyright i {
            color: #f25f4c;
        }
        @media (max-width: 900px) {
            .primary-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding-top: 16px;
                gap: 4px;
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                padding: 12px 20px;
                border-radius: 8px;
                text-align: center;
            }
            .nav-toggle {
                display: block;
            }
            .header-inner {
                align-items: center;
            }
        }
        @media (max-width: 600px) {
            .container {
                padding: 0 14px;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .search-form input {
                min-width: 140px;
            }
            .interact-card {
                padding: 18px 16px;
            }
            .rank-table {
                font-size: 0.8rem;
            }
            .rank-table th,
            .rank-table td {
                padding: 8px 10px;
            }
            .friend-links-section {
                padding: 18px 16px;
            }
        }
        .emoji-lg {
            font-size: 1.4em;
            line-height: 1;
        }
        .text-accent {
            color: #ff8906;
        }
        .text-muted {
            color: #a7a9be;
        }
        .mt-16 {
            margin-top: 16px;
        }
        .mb-16 {
            margin-bottom: 16px;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 8px;
        }
