* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0a0a14;
            color: #e0e0e0;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #f5a623;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffc107;
            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(135deg, #0f0f1a 0%, #1a1a2e 100%);
            padding: 16px 0;
            border-bottom: 2px solid #e94560;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 30px rgba(233, 69, 96, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 800;
            background: linear-gradient(90deg, #f5a623, #e94560);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-decoration: none !important;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none !important;
        }
        .my-logo span {
            font-weight: 300;
            -webkit-text-fill-color: #fff;
            background: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 28px;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background 0.3s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        nav {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        nav a {
            color: #ccc;
            font-size: 15px;
            font-weight: 500;
            padding: 8px 14px;
            border-radius: 8px;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        nav a:hover {
            color: #fff;
            background: rgba(233, 69, 96, 0.2);
            text-decoration: none;
        }
        nav a i {
            margin-right: 6px;
            color: #f5a623;
        }
        .breadcrumb {
            background: rgba(255, 255, 255, 0.03);
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 14px;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb ol li+li::before {
            content: "›";
            margin-right: 12px;
            color: #666;
        }
        .breadcrumb a {
            color: #999;
        }
        .breadcrumb a:hover {
            color: #f5a623;
        }
        .breadcrumb .current {
            color: #f5a623;
            font-weight: 500;
        }
        main {
            padding: 40px 0 60px;
        }
        h1 {
            font-size: clamp(32px, 5vw, 52px);
            font-weight: 800;
            background: linear-gradient(90deg, #f5a623, #e94560, #f5a623);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 16px;
            line-height: 1.2;
            animation: shimmer 4s linear infinite;
        }
        @keyframes shimmer {
            0% {
                background-position: 0% center;
            }
            100% {
                background-position: 200% center;
            }
        }
        h2 {
            font-size: clamp(24px, 3.5vw, 34px);
            font-weight: 700;
            color: #f5a623;
            margin-top: 48px;
            margin-bottom: 16px;
            border-left: 4px solid #e94560;
            padding-left: 18px;
        }
        h3 {
            font-size: clamp(20px, 2.5vw, 26px);
            font-weight: 600;
            color: #e94560;
            margin-top: 32px;
            margin-bottom: 12px;
        }
        h4 {
            font-size: clamp(17px, 2vw, 20px);
            font-weight: 600;
            color: #f0a030;
            margin-top: 24px;
            margin-bottom: 10px;
        }
        p {
            margin-bottom: 18px;
            color: #d0d0d0;
            font-size: 16px;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(233, 69, 96, 0.15), rgba(245, 166, 35, 0.10));
            padding: 2px 10px;
            border-radius: 4px;
            font-weight: 600;
            color: #fff;
        }
        .content-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 16px;
            padding: 28px 32px;
            margin: 24px 0;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .content-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(233, 69, 96, 0.08);
        }
        .content-card i {
            color: #f5a623;
            margin-right: 10px;
            font-size: 20px;
        }
        .image-wrapper {
            margin: 32px 0;
            border-radius: 16px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.04);
            padding: 8px;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
        .image-wrapper figcaption {
            padding: 14px 16px 6px;
            font-size: 14px;
            color: #888;
            font-style: italic;
            text-align: center;
        }
        .last-update {
            display: inline-block;
            background: rgba(245, 166, 35, 0.12);
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 14px;
            color: #f5a623;
            margin-bottom: 24px;
            border: 1px solid rgba(245, 166, 35, 0.15);
        }
        .last-update i {
            margin-right: 6px;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 15px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none !important;
        }
        .btn-primary {
            background: linear-gradient(135deg, #e94560, #f5a623);
            color: #fff;
        }
        .btn-primary:hover {
            transform: scale(1.03);
            box-shadow: 0 8px 30px rgba(233, 69, 96, 0.3);
            color: #fff;
        }
        .btn-secondary {
            background: rgba(255, 255, 255, 0.06);
            color: #f5a623;
            border: 1px solid rgba(245, 166, 35, 0.3);
        }
        .btn-secondary:hover {
            background: rgba(245, 166, 35, 0.12);
            color: #ffc107;
        }
        ul,
        ol {
            margin: 16px 0 20px 24px;
            color: #d0d0d0;
        }
        li {
            margin-bottom: 8px;
        }
        .link-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 14px;
            margin: 24px 0;
        }
        .link-grid a {
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(255, 255, 255, 0.04);
            padding: 14px 18px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            transition: all 0.3s ease;
            font-weight: 500;
            color: #ccc;
            text-decoration: none;
        }
        .link-grid a:hover {
            background: rgba(233, 69, 96, 0.10);
            border-color: rgba(233, 69, 96, 0.25);
            color: #fff;
            transform: translateX(4px);
            text-decoration: none;
        }
        .link-grid a i {
            color: #f5a623;
            font-size: 18px;
            min-width: 22px;
        }
        .search-section {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 16px;
            padding: 36px 32px;
            margin: 40px 0;
            text-align: center;
        }
        .search-section h3 {
            margin-top: 0;
            color: #f5a623;
        }
        .search-form {
            display: flex;
            max-width: 560px;
            margin: 20px auto 0;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(0, 0, 0, 0.4);
            color: #fff;
            font-size: 16px;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-form input:focus {
            border-color: #f5a623;
        }
        .search-form input::placeholder {
            color: #666;
        }
        .search-form button {
            padding: 14px 32px;
            border-radius: 30px;
            border: none;
            background: linear-gradient(135deg, #e94560, #f5a623);
            color: #fff;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .search-form button:hover {
            transform: scale(1.03);
            box-shadow: 0 6px 24px rgba(233, 69, 96, 0.25);
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 40px 0;
        }
        @media (max-width: 768px) {
            .interaction-grid {
                grid-template-columns: 1fr;
            }
        }
        .comment-section,
        .rating-section {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 16px;
            padding: 28px 24px;
        }
        .comment-section h3,
        .rating-section h3 {
            margin-top: 0;
            font-size: 22px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .comment-section textarea {
            width: 100%;
            min-height: 100px;
            padding: 14px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.10);
            background: rgba(0, 0, 0, 0.3);
            color: #fff;
            font-size: 15px;
            font-family: inherit;
            resize: vertical;
            outline: none;
            transition: border-color 0.3s;
        }
        .comment-section textarea:focus {
            border-color: #f5a623;
        }
        .comment-section input[type="text"] {
            width: 100%;
            padding: 12px 14px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.10);
            background: rgba(0, 0, 0, 0.3);
            color: #fff;
            font-size: 15px;
            outline: none;
            transition: border-color 0.3s;
            margin: 10px 0;
        }
        .comment-section input:focus {
            border-color: #f5a623;
        }
        .rating-stars {
            display: flex;
            gap: 8px;
            margin: 16px 0;
            font-size: 32px;
            justify-content: center;
        }
        .rating-stars i {
            cursor: pointer;
            color: #444;
            transition: color 0.3s, transform 0.2s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #f5a623;
            transform: scale(1.15);
        }
        .rating-stars i.fa-star {
            color: #f5a623;
        }
        .rating-stars i.fa-star-o {
            color: #444;
        }
        .submit-btn {
            padding: 12px 28px;
            border-radius: 30px;
            border: none;
            background: linear-gradient(135deg, #e94560, #f5a623);
            color: #fff;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 6px;
        }
        .submit-btn:hover {
            transform: scale(1.02);
            box-shadow: 0 6px 24px rgba(233, 69, 96, 0.2);
        }
        .faq-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            padding: 18px 0;
        }
        .faq-item:last-child {
            border-bottom: none;
        }
        .faq-question {
            font-weight: 600;
            font-size: 18px;
            color: #f5a623;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
        }
        .faq-question i {
            transition: transform 0.3s;
            color: #e94560;
        }
        .faq-question.open i {
            transform: rotate(180deg);
        }
        .faq-answer {
            padding-top: 12px;
            color: #b0b0b0;
            display: none;
        }
        .faq-answer.show {
            display: block;
        }
        footer {
            background: linear-gradient(135deg, #0a0a14 0%, #12121f 100%);
            border-top: 2px solid rgba(233, 69, 96, 0.20);
            padding: 48px 0 24px;
            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: 24px;
            }
        }
        .footer-brand .my-logo {
            font-size: 24px;
        }
        .footer-brand p {
            font-size: 14px;
            color: #888;
            margin-top: 10px;
        }
        .footer-links h4,
        .footer-friend h4 {
            color: #f5a623;
            font-size: 18px;
            margin-bottom: 12px;
        }
        .footer-links a,
        .footer-friend a {
            display: block;
            padding: 4px 0;
            color: #999;
            font-size: 14px;
            transition: color 0.3s;
        }
        .footer-links a:hover,
        .footer-friend a:hover {
            color: #f5a623;
            text-decoration: none;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 20px;
            text-align: center;
            font-size: 14px;
            color: #666;
        }
        .footer-bottom a {
            color: #888;
        }
        .footer-bottom a:hover {
            color: #f5a623;
        }
        friend-link {
            display: block;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding-top: 16px;
                gap: 4px;
            }
            nav.show {
                display: flex;
            }
            nav a {
                width: 100%;
                padding: 12px 16px;
                border-radius: 8px;
            }
            .header-inner {
                align-items: center;
            }
            .content-card {
                padding: 20px 18px;
            }
            .search-section {
                padding: 24px 18px;
            }
            .link-grid {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 28px;
            }
            .container {
                padding: 0 14px;
            }
            .image-wrapper {
                padding: 4px;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 20px;
            }
            .rating-stars {
                font-size: 26px;
            }
            .search-form input {
                min-width: 140px;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0a0a14;
        }
        ::-webkit-scrollbar-thumb {
            background: #e94560;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #f5a623;
        }
        .divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, #e94560, #f5a623, transparent);
            margin: 40px 0;
            opacity: 0.3;
        }
        .emoji-big {
            font-size: 28px;
            vertical-align: middle;
        }
        .text-glow {
            text-shadow: 0 0 20px rgba(245, 166, 35, 0.15);
        }
        .tag {
            display: inline-block;
            background: rgba(233, 69, 96, 0.12);
            padding: 2px 14px;
            border-radius: 20px;
            font-size: 13px;
            color: #e94560;
            margin: 2px 4px;
            border: 1px solid rgba(233, 69, 96, 0.10);
        }
