        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, Arial, sans-serif;
            background: #0f0e17;
            color: #fffffe;
            line-height: 1.8;
            padding: 0;
            margin: 0;
            min-height: 100vh;
        }
        a {
            color: #ff8906;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            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;
        }
        header {
            background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
            padding: 16px 0;
            border-bottom: 3px solid #ff8906;
            position: sticky;
            top: 0;
            z-index: 1000;
            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;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ff8906, #f25f4c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            text-shadow: 0 0 30px rgba(255, 137, 6, 0.2);
            display: inline-block;
        }
        .my-logo:hover {
            text-decoration: none;
            -webkit-text-fill-color: #ff8906;
        }
        .my-logo small {
            font-size: 0.8rem;
            -webkit-text-fill-color: #a7a9be;
            display: block;
            font-weight: 400;
            letter-spacing: 0.5px;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 6px;
            flex-wrap: wrap;
        }
        .nav-list li a {
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            color: #fffffe;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 137, 6, 0.15);
            transition: all 0.3s ease;
            display: block;
        }
        .nav-list li a:hover {
            background: #ff8906;
            color: #0f0e17;
            text-decoration: none;
            border-color: #ff8906;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 137, 6, 0.3);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #ff8906;
            cursor: pointer;
            padding: 4px 12px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 137, 6, 0.15);
        }
        .breadcrumb {
            background: rgba(255, 255, 255, 0.03);
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            font-size: 0.85rem;
            color: #a7a9be;
        }
        .breadcrumb ol li+li::before {
            content: "›";
            margin-right: 12px;
            color: #ff8906;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #ff8906;
        }
        .breadcrumb .current {
            color: #fffffe;
            font-weight: 600;
        }
        main {
            padding: 40px 0 60px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(255, 255, 255, 0.02);
            border-radius: 20px;
            padding: 30px 30px 40px;
            border: 1px solid rgba(255, 137, 6, 0.08);
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.25;
            margin-bottom: 16px;
            background: linear-gradient(135deg, #ff8906, #f25f4c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            margin-top: 48px;
            margin-bottom: 18px;
            color: #ff8906;
            border-left: 5px solid #f25f4c;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-top: 32px;
            margin-bottom: 14px;
            color: #fffffe;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin-top: 22px;
            margin-bottom: 10px;
            color: #a7a9be;
            letter-spacing: 0.3px;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            color: #e0e0e0;
        }
        .lead {
            font-size: 1.25rem;
            color: #fffffe;
            font-weight: 400;
            border-left: 4px solid #ff8906;
            padding-left: 20px;
            margin-bottom: 28px;
        }
        .highlight-box {
            background: rgba(255, 137, 6, 0.08);
            border-radius: 16px;
            padding: 24px 28px;
            margin: 28px 0;
            border-left: 6px solid #ff8906;
        }
        .highlight-box strong {
            color: #ff8906;
        }
        .emoji-big {
            font-size: 1.8rem;
            margin-right: 8px;
        }
        .stat-row {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 24px 0;
        }
        .stat-card {
            background: rgba(255, 255, 255, 0.04);
            border-radius: 14px;
            padding: 18px 22px;
            flex: 1 1 180px;
            border: 1px solid rgba(255, 137, 6, 0.12);
            text-align: center;
        }
        .stat-card .num {
            font-size: 2.2rem;
            font-weight: 800;
            color: #ff8906;
            display: block;
        }
        .stat-card .label {
            font-size: 0.9rem;
            color: #a7a9be;
        }
        .btn {
            display: inline-block;
            background: #ff8906;
            color: #0f0e17;
            padding: 12px 30px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            text-align: center;
        }
        .btn:hover {
            background: #f25f4c;
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(242, 95, 76, 0.3);
            text-decoration: none;
            color: #0f0e17;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #ff8906;
            color: #ff8906;
        }
        .btn-outline:hover {
            background: #ff8906;
            color: #0f0e17;
        }
        .image-wrapper {
            margin: 32px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
        }
        .image-wrapper img {
            width: 100%;
            display: block;
        }
        .image-wrapper figcaption {
            background: rgba(0, 0, 0, 0.7);
            padding: 12px 20px;
            font-size: 0.85rem;
            color: #a7a9be;
            text-align: center;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #a7a9be;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .last-updated i {
            color: #ff8906;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }
        .sidebar-card {
            background: rgba(255, 255, 255, 0.02);
            border-radius: 16px;
            padding: 24px 20px;
            border: 1px solid rgba(255, 137, 6, 0.08);
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            margin-top: 0;
            margin-bottom: 16px;
            color: #ff8906;
            border-bottom: 1px solid rgba(255, 137, 6, 0.15);
            padding-bottom: 10px;
        }
        .sidebar-card ul {
            list-style: none;
        }
        .sidebar-card ul li {
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }
        .sidebar-card ul li a {
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar-card ul li a i {
            color: #ff8906;
            font-size: 0.8rem;
        }
        .search-form {
            display: flex;
            gap: 10px;
            margin-top: 8px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 18px;
            border-radius: 40px;
            border: 1px solid rgba(255, 137, 6, 0.2);
            background: rgba(255, 255, 255, 0.05);
            color: #fffffe;
            font-size: 0.95rem;
            transition: border 0.3s;
            outline: none;
        }
        .search-form input:focus {
            border-color: #ff8906;
        }
        .search-form input::placeholder {
            color: #a7a9be;
        }
        .search-form button {
            padding: 12px 24px;
            border-radius: 40px;
            border: none;
            background: #ff8906;
            color: #0f0e17;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #f25f4c;
        }
        .comment-section,
        .rating-section {
            margin-top: 48px;
            padding-top: 32px;
            border-top: 2px solid rgba(255, 137, 6, 0.12);
        }
        .comment-section h2,
        .rating-section h2 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 18px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 6px;
            color: #a7a9be;
            font-size: 0.95rem;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 18px;
            border-radius: 12px;
            border: 1px solid rgba(255, 137, 6, 0.15);
            background: rgba(255, 255, 255, 0.04);
            color: #fffffe;
            font-size: 0.95rem;
            transition: border 0.3s;
            outline: none;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #ff8906;
        }
        .form-group textarea {
            min-height: 110px;
            resize: vertical;
        }
        .form-group select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ff8906' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #a7a9be;
            cursor: pointer;
        }
        .star-rating i {
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #ff8906;
            transform: scale(1.15);
        }
        footer {
            background: #1a1a2e;
            padding: 48px 0 30px;
            border-top: 3px solid #ff8906;
            margin-top: 40px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 32px;
        }
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
        }
        .footer-brand h3 {
            font-size: 1.6rem;
            color: #ff8906;
            margin-top: 0;
        }
        .footer-brand p {
            font-size: 0.95rem;
            color: #a7a9be;
        }
        .footer-links h4 {
            color: #fffffe;
            font-size: 1.1rem;
            margin-bottom: 12px;
            border-bottom: 2px solid #ff8906;
            padding-bottom: 6px;
            display: inline-block;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links ul li {
            padding: 5px 0;
        }
        .footer-links ul li a {
            font-size: 0.9rem;
            color: #a7a9be;
            transition: color 0.2s;
        }
        .footer-links ul li a:hover {
            color: #ff8906;
        }
        .friend-link {
            display: block;
            padding: 20px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            margin-top: 20px;
        }
        .friend-link h4 {
            color: #ff8906;
            font-size: 1rem;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }
        .friend-link .friend-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            list-style: none;
        }
        .friend-link .friend-list li a {
            color: #a7a9be;
            font-size: 0.85rem;
            transition: color 0.2s;
        }
        .friend-link .friend-list li a:hover {
            color: #ff8906;
        }
        .copyright {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.85rem;
            color: #a7a9be;
        }
        .copyright strong {
            color: #ff8906;
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 12px;
                gap: 4px;
                background: rgba(26, 26, 46, 0.98);
                padding: 16px 12px;
                border-radius: 16px;
                border: 1px solid rgba(255, 137, 6, 0.12);
            }
            .nav-list.open {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            article {
                padding: 20px 16px;
            }
            .stat-row {
                flex-direction: column;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
            .breadcrumb ol {
                font-size: 0.75rem;
                gap: 4px 8px;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.4rem;
            }
            .container {
                padding: 0 12px;
            }
            h1 {
                font-size: 1.6rem;
            }
            .lead {
                font-size: 1.05rem;
                padding-left: 14px;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0f0e17;
        }
        ::-webkit-scrollbar-thumb {
            background: #ff8906;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #f25f4c;
        }
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        @keyframes fadeIn {
            0% {
                opacity: 0;
                transform: translateY(20px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
