* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #0f0e17;
            color: #fffffe;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #ff8906;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #f25f4c;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: #1a1932;
            padding: 16px 0;
            border-bottom: 2px solid #ff8906;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(6px);
            background: rgba(26, 25, 50, 0.96);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: 2px;
            color: #ff8906;
            text-shadow: 0 0 12px rgba(255, 137, 6, 0.3);
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
            color: #ff8906;
        }
        .my-logo span {
            color: #fffffe;
            font-weight: 300;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #ff8906;
            color: #ff8906;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .nav-toggle:hover {
            background: #ff8906;
            color: #0f0e17;
        }
        .main-nav {
            display: flex;
            gap: 8px 20px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #fffffe;
            font-weight: 500;
            padding: 6px 10px;
            border-radius: 6px;
            transition: background 0.25s, color 0.25s;
            font-size: 0.95rem;
        }
        .main-nav a:hover {
            background: #ff8906;
            color: #0f0e17;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 6px;
        }
        .breadcrumb-wrap {
            background: #1a1932;
            padding: 10px 0;
            border-bottom: 1px solid #2a2942;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            font-size: 0.9rem;
            color: #a7a9be;
        }
        .breadcrumb a {
            color: #ff8906;
        }
        .breadcrumb a:hover {
            color: #f25f4c;
        }
        .breadcrumb .sep {
            color: #555;
        }
        .hero {
            padding: 40px 0 30px;
            text-align: center;
            background: linear-gradient(145deg, #0f0e17 0%, #1a1932 100%);
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #ff8906;
            line-height: 1.2;
            margin-bottom: 16px;
        }
        .hero h1 i {
            margin-right: 12px;
            color: #f25f4c;
        }
        .hero p {
            max-width: 780px;
            margin: 0 auto 20px;
            font-size: 1.15rem;
            color: #a7a9be;
        }
        .hero .badge {
            display: inline-block;
            background: #ff8906;
            color: #0f0e17;
            padding: 4px 18px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 14px;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #6e6f8b;
            margin-top: 8px;
        }
        .last-updated i {
            margin-right: 6px;
        }
        .search-section {
            background: #1a1932;
            padding: 28px 0;
            border-top: 1px solid #2a2942;
            border-bottom: 1px solid #2a2942;
        }
        .search-form {
            display: flex;
            max-width: 580px;
            margin: 0 auto;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .search-form input[type="text"] {
            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 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #ff8906;
        }
        .search-form button {
            padding: 14px 32px;
            border: none;
            border-radius: 40px;
            background: #ff8906;
            color: #0f0e17;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #f25f4c;
            transform: scale(1.02);
        }
        .content-wrap {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
            padding: 40px 0;
        }
        @media (max-width: 920px) {
            .content-wrap {
                grid-template-columns: 1fr;
            }
        }
        .main-content h2 {
            font-size: 2rem;
            color: #ff8906;
            margin: 40px 0 16px;
            border-left: 5px solid #f25f4c;
            padding-left: 18px;
        }
        .main-content h3 {
            font-size: 1.5rem;
            color: #fffffe;
            margin: 32px 0 12px;
            border-left: 3px solid #ff8906;
            padding-left: 14px;
        }
        .main-content h4 {
            font-size: 1.2rem;
            color: #a7a9be;
            margin: 24px 0 10px;
            font-weight: 600;
        }
        .main-content p {
            margin-bottom: 18px;
            color: #d1d1e0;
        }
        .main-content ul,
        .main-content ol {
            margin: 12px 0 20px 24px;
            color: #d1d1e0;
        }
        .main-content li {
            margin-bottom: 8px;
        }
        .main-content strong {
            color: #fffffe;
        }
        .main-content .emoji-big {
            font-size: 1.8rem;
            margin-right: 6px;
        }
        .highlight-box {
            background: #1a1932;
            border-left: 6px solid #ff8906;
            padding: 20px 24px;
            border-radius: 12px;
            margin: 24px 0;
        }
        .highlight-box p {
            margin-bottom: 0;
        }
        .img-wrapper {
            margin: 30px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
        }
        .img-wrapper img {
            width: 100%;
            display: block;
        }
        .img-wrapper figcaption {
            background: #1a1932;
            padding: 12px 20px;
            font-size: 0.9rem;
            color: #a7a9be;
            text-align: center;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            background: #1a1932;
            border-radius: 12px;
            overflow: hidden;
        }
        .data-table th {
            background: #ff8906;
            color: #0f0e17;
            padding: 12px 16px;
            text-align: left;
            font-weight: 700;
        }
        .data-table td {
            padding: 12px 16px;
            border-bottom: 1px solid #2a2942;
            color: #d1d1e0;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #232141;
        }
        .sidebar {
            background: #1a1932;
            border-radius: 16px;
            padding: 24px 20px;
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar h3 {
            color: #ff8906;
            font-size: 1.3rem;
            margin-bottom: 16px;
            border-bottom: 2px solid #2a2942;
            padding-bottom: 10px;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
        }
        .sidebar li {
            margin-bottom: 10px;
        }
        .sidebar a {
            color: #d1d1e0;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 12px;
            border-radius: 8px;
            transition: background 0.25s, color 0.25s;
        }
        .sidebar a:hover {
            background: #2a2942;
            color: #ff8906;
            text-decoration: none;
        }
        .sidebar a i {
            width: 20px;
            color: #ff8906;
        }
        .interaction-section {
            background: #1a1932;
            border-radius: 16px;
            padding: 32px 28px;
            margin: 40px 0;
            border: 1px solid #2a2942;
        }
        .interaction-section h3 {
            color: #ff8906;
            font-size: 1.6rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .comment-form textarea {
            width: 100%;
            padding: 16px;
            border: 2px solid #2a2942;
            border-radius: 12px;
            background: #0f0e17;
            color: #fffffe;
            font-size: 1rem;
            resize: vertical;
            min-height: 120px;
            transition: border 0.3s;
            font-family: inherit;
        }
        .comment-form textarea:focus {
            border-color: #ff8906;
            outline: none;
        }
        .form-row {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-top: 16px;
            align-items: center;
        }
        .form-row input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 12px 16px;
            border: 2px solid #2a2942;
            border-radius: 40px;
            background: #0f0e17;
            color: #fffffe;
            font-size: 0.95rem;
            transition: border 0.3s;
        }
        .form-row input[type="text"]:focus {
            border-color: #ff8906;
            outline: none;
        }
        .form-row button {
            padding: 12px 32px;
            border: none;
            border-radius: 40px;
            background: #ff8906;
            color: #0f0e17;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .form-row button:hover {
            background: #f25f4c;
            transform: scale(1.02);
        }
        .rating-area {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
            margin: 20px 0 0;
        }
        .rating-area .stars {
            display: flex;
            gap: 4px;
            font-size: 1.8rem;
            color: #2a2942;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-area .stars i {
            transition: color 0.2s, transform 0.2s;
        }
        .rating-area .stars i:hover,
        .rating-area .stars i.active {
            color: #ff8906;
            transform: scale(1.1);
        }
        .rating-area .stars i.selected {
            color: #ff8906;
        }
        .rating-form button {
            padding: 10px 28px;
            border: none;
            border-radius: 40px;
            background: #ff8906;
            color: #0f0e17;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.3s;
        }
        .rating-form button:hover {
            background: #f25f4c;
        }
        .site-footer {
            background: #1a1932;
            padding: 40px 0 20px;
            border-top: 2px solid #2a2942;
            margin-top: 40px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }
        .footer-inner h4 {
            color: #ff8906;
            font-size: 1.1rem;
            margin-bottom: 14px;
        }
        .footer-inner ul {
            list-style: none;
            padding: 0;
        }
        .footer-inner li {
            margin-bottom: 8px;
        }
        .footer-inner a {
            color: #a7a9be;
            font-size: 0.95rem;
        }
        .footer-inner a:hover {
            color: #ff8906;
        }
        friend-link {
            display: block;
            margin-top: 24px;
            padding: 20px 0;
            border-top: 1px solid #2a2942;
            font-style: normal;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 16px 4px 0;
            color: #a7a9be;
        }
        friend-link a:hover {
            color: #ff8906;
        }
        .copyright {
            text-align: center;
            padding: 20px 0 0;
            color: #6e6f8b;
            font-size: 0.9rem;
            border-top: 1px solid #2a2942;
            margin-top: 20px;
        }
        .copyright strong {
            color: #a7a9be;
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                margin-top: 16px;
                gap: 4px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 12px 16px;
                border-radius: 8px;
                background: #2a2942;
                width: 100%;
            }
            .main-nav a:hover {
                background: #ff8906;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.6rem;
            }
            .content-wrap {
                padding: 20px 0;
                gap: 24px;
            }
            .search-form input[type="text"] {
                min-width: 140px;
            }
            .interaction-section {
                padding: 20px 16px;
            }
            .data-table {
                font-size: 0.85rem;
            }
            .data-table th,
            .data-table td {
                padding: 8px 10px;
            }
            .sidebar {
                position: static;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .container {
                padding: 0 12px;
            }
            .form-row {
                flex-direction: column;
            }
            .form-row input[type="text"] {
                width: 100%;
                min-width: unset;
            }
            .rating-area {
                flex-direction: column;
                align-items: flex-start;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0f0e17;
        }
        ::-webkit-scrollbar-thumb {
            background: #ff8906;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #f25f4c;
        }
        :focus-visible {
            outline: 3px solid #ff8906;
            outline-offset: 2px;
        }
