:root {
    --primary-color: #fbbf24;
    --secondary-color: #3b82f6;
    --dark-bg: #0f172a;
    --card-bg: #1e293b;
    --text-light: #e2e8f0;
    --border-white: #fff;
}

*, ::after, ::before {
    border-color: var(--tw-ring-color, rgba(99, 102, 241, 0.2));
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* PC版主题 */
body.pc {
    background: radial-gradient(ellipse 85% 60% at 50% 10%, #22243b 65%, #0d1017 100%);
    min-height: 100vh;
}

/* 手机版主题 */
body.mobile {
    background: radial-gradient(ellipse 85% 60% at 50% 10%,
    #22243b 65%,
    #0d1017 100%);
}

/* PC版样式 */
@media (min-width: 1024px) {
    .pc-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .pc-header {
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(251, 191, 36, 0.2);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .pc-card {
        background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.8));
        border-radius: 20px;
        border: 1px solid rgba(251, 191, 36, 0.15);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }

    .pc-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 40px rgba(251, 191, 36, 0.1);
        border-color: rgba(251, 191, 36, 0.3);
    }

    .pc-gradient-btn {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: #0f172a;
        font-weight: 700;
        padding: 14px 32px;
        border-radius: 12px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    .pc-gradient-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: all 0.5s ease;
        z-index: -1;
    }

    .pc-gradient-btn:hover::before {
        left: 100%;
    }

    .pc-gradient-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
    }

    .pc-stat-card {
        background: rgba(30, 41, 59, 0.6);
        border-radius: 16px;
        border: 1px solid rgba(251, 191, 36, 0.1);
        padding: 24px;
        transition: all 0.3s ease;
    }

    .pc-stat-card:hover {
        border-color: rgba(251, 191, 36, 0.3);
        background: rgba(30, 41, 59, 0.8);
    }

    .pc-nav-link {
        position: relative;
        padding: 8px 16px;
        color: #cbd5e1;
        font-weight: 500;
        font-size: 15px;
        transition: all 0.3s ease;
    }



    .pc-nav-link:hover {
        color: var(--primary-color);
    }

    .pc-nav-link:hover::after {
        width: 70%;
    }

    .pc-nav-link.active {
        color: var(--primary-color);
    }

    .pc-nav-link.active::after {
        width: 70%;
    }

    .pc-section-title {
        font-size: 2rem;
        font-weight: 800;
        color: var(--primary-color);
        margin-bottom: 2.5rem;
        position: relative;
        display: inline-block;
    }

    .pc-section-title::after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 0;
        width: 60px;
        height: 4px;
        border-radius: 2px;
    }

    .pc-badge {
        display: inline-flex;
        align-items: center;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 600;
        background: rgba(251, 191, 36, 0.1);
        color: #fbbf24;
        border: 1px solid rgba(251, 191, 36, 0.2);
        transition: all 0.3s ease;
        gap: 8px;
    }

    .pc-badge:hover {
        background: rgba(251, 191, 36, 0.2);
        border-color: rgba(251, 191, 36, 0.4);
        transform: translateY(-1px);
    }

    .pc-table {
        border-collapse: separate;
        border-spacing: 0;
        width: 100%;
        border-radius: 16px;
        overflow: hidden;
        background: rgba(15, 23, 42, 0.5);
    }

    .pc-table th {
        background: rgba(30, 41, 59, 0.8);
        padding: 20px 16px;
        font-weight: 600;
        color: #fbbf24;
        border-bottom: 2px solid rgba(251, 191, 36, 0.2);
        text-align: left;
        font-size: 14px;
    }

    .pc-table td {
        padding: 18px 16px;
        border-bottom: 1px solid rgba(251, 191, 36, 0.1);
        color: #94a3b8;
        font-size: 14px;
    }

    .pc-table tr:last-child td {
        border-bottom: none;
    }

    .pc-table tr:hover {
        background: rgba(251, 191, 36, 0.05);
    }

    .number-gradient {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 800;
    }

    .progress-bar {
        height: 8px;
        background: rgba(30, 41, 59, 0.8);
        border-radius: 4px;
        overflow: hidden;
        margin-top: 12px;
    }

    .progress-fill {
        height: 100%;
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        border-radius: 4px;
        transition: width 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
}

/* 移动版样式 */
@media (max-width: 1023px) {
    .mobile-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(251, 191, 36, 0.2);
        padding: 16px;
        height: 70px;
    }

    .mobile-header-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }

    /* 修正汉堡菜单样式 - 更接近原版 */
    .hamburger-menu {
        position: relative;
        width: 32px;
        height: 24px;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        z-index: 1002;
        padding: 4px;
    }

    .hamburger-line {
        width: 100%;
        height: 3px;
        background-color: var(--primary-color);
        border-radius: 3px;
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    /* 修正关闭动画 */
    .hamburger-menu.active .hamburger-line:nth-child(1) {
        transform: translateY(10.5px) rotate(45deg);
    }

    .hamburger-menu.active .hamburger-line:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }

    .hamburger-menu.active .hamburger-line:nth-child(3) {
        transform: translateY(-10.5px) rotate(-45deg);
    }

    .mobile-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100vh;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        padding: 90px 24px 24px 24px;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 1001;
        border-left: 1px solid rgba(251, 191, 36, 0.2);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
    }

    .mobile-nav.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .mobile-nav-link {
        display: flex;
        align-items: center;
        padding: 16px 20px;
        margin-bottom: 12px;
        border-radius: 14px;
        transition: all 0.3s ease;
        color: #cbd5e1;
        font-weight: 600;
        font-size: 16px;
        background: rgba(30, 41, 59, 0.5);
        border: 1px solid transparent;
    }

    .mobile-nav-link i {
        width: 24px;
        margin-right: 16px;
        font-size: 18px;
        color: var(--primary-color);
    }

    .mobile-nav-link:hover {
        background: rgba(251, 191, 36, 0.15);
        color: var(--primary-color);
        transform: translateX(10px);
        border-color: rgba(251, 191, 36, 0.3);
    }

    .mobile-content {
        padding-bottom: 40px;
    }

    .mobile .glass {
        background: rgba(35, 37, 60, 0.7);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(251, 191, 36, 0.2);
        border-radius: 20px;
        margin-bottom: 20px;
    }

    /* 安全徽章样式 - 使用原版图片 */
    .security-badge {
        width: 40px;
        height: 40px;
        margin: 0 4px;
        border-radius: 8px;
        padding: 6px;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(30, 41, 59, 0.6);
        border: 1px solid rgba(251, 191, 36, 0.2);
    }

    .security-badge img {
        width: 24px;
        height: 24px;
        object-fit: contain;
    }

    .security-badge:hover {
        transform: translateY(-2px);
        border-color: rgba(251, 191, 36, 0.4);
        background: rgba(251, 191, 36, 0.1);
    }

    /* 合作伙伴徽章样式 - 使用原版图片 */
    .logo-partner {
        width: 44px;
        height: 44px;
        border-radius: 10px;
        background: rgba(30, 41, 59, 0.8);
        padding: 6px;
        border: 1px solid rgba(251, 191, 36, 0.2);
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo-partner img {
        width: 32px;
        height: 32px;
        object-fit: contain;
        border-radius: 6px;
    }

    .logo-partner:hover {
        transform: translateY(-2px);
        border-color: rgba(251, 191, 36, 0.4);
        background: rgba(251, 191, 36, 0.1);
    }

    /* FAB按钮样式 */
    .fab-icon {
        position: fixed;
        bottom: 100px;
        right: 24px;
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: linear-gradient(135deg, #25D366, #128C7E);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
        z-index: 100;
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        animation: float 3s ease-in-out infinite;
    }

    .fab-icon img {
        width: 32px;
        height: 32px;
        object-fit: contain;
    }

    .fab-icon:hover {
        transform: scale(1.15) rotate(10deg);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    }

    .fab-icon.fab-tg {
        bottom: 180px;
        background: linear-gradient(135deg, #0088cc, #005580);
        animation-delay: 0.2s;
    }

    .max-w-mob {
        max-width: 480px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .faq-details {
        margin-top: 12px;
        margin-bottom: 12px;
    }
}

/* 通用样式 */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-effect {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.icon-shadow {
    filter: drop-shadow(0 6px 20px rgba(251, 191, 36, 0.4));
}

/* 显示/隐藏控制 */
.mobile-only {
    display: none;
}

.pc-only {
    display: block;
}

@media (max-width: 1023px) {
    .mobile-only {
        display: block;
    }

    .pc-only {
        display: none;
    }
}

.fadein {
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.calculator-gradient {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(59, 130, 246, 0.1));
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.table-gradient {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.05), rgba(59, 130, 246, 0.05));
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.vip-badge-1 {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(251, 191, 36, 0.1));
}

.vip-badge-2 {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.1));
}

.vip-badge-3 {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.1));
}

.vip-badge-4 {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(236, 72, 153, 0.1));
}

.vip-badge-5 {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
}

.vip-badge-6 {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.1));
}

.vip-badge-7 {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(239, 68, 68, 0.1));
}

.vip-badge-8 {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(6, 182, 212, 0.1));
}

/* 移动版表格样式 */
.tbl-th {
    background-color: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    padding: 6px 4px;
    font-size: 11px;
    white-space: nowrap;
    text-align: center;
}

.tbl-td {
    border: 1px solid rgba(251, 191, 36, 0.1);
    padding: 6px 4px;
    font-size: 11px;
    white-space: nowrap;
    text-align: center;
}

.tbl-row-odd {
    background-color: rgba(30, 41, 59, 0.3);
}

.tbl-row-even {
    background-color: rgba(15, 23, 42, 0.3);
}

.start-step-bg {
    background-color: rgba(234, 179, 8, 0.9);
    color: #111827;
    border-radius: 9999px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 4px;
    animation: bounce 1s infinite;
}

.start-step-bg.delay-150 {
    animation-delay: 150ms;
}

.start-step-bg.delay-300 {
    animation-delay: 300ms;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% {
        transform: none;
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

/* FAB按钮 */
.fab-whatsapp {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: float 3s ease-in-out infinite;
}

.fab-telegram {
    position: fixed;
    bottom: 180px;
    right: 24px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0088cc, #005580);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: float 3s ease-in-out infinite;
    animation-delay: 0.2s;
}

.fab-whatsapp:hover, .fab-telegram:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.bg-gray-800

/
70
{
    background: rgb(35 54 81 / 70%)
;
}

/* 基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

.mobile-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    padding: 1rem;
    width: 100%;
}

.mobile-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Logo样式 */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.125rem;
    font-weight: bold;
    color: #fbbf24;
    z-index: 1001; /* 确保logo在菜单上层 */
}

.logo .fas.fa-cube {
    background: linear-gradient(to bottom right, #f59e0b, #ea580c);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

/* 汉堡菜单样式 */
.hamburger-menu {
    width: 28px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.hamburger-line {
    height: 3px;
    width: 100%;
    background: #fbbf24;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* 移动导航菜单 - 初始隐藏 */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    overflow-y: auto;

    /* 初始状态：隐藏 */
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all 0.3s ease;
}

/* 菜单显示状态 */
.mobile-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* 导航头部 */
.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.mobile-close-btn {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #93c5fd;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    outline: none;
}

.mobile-close-btn:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
}

/* 导航链接 */
.mobile-nav-links {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 12px;
    color: #e2e8f0;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    text-decoration: none;
}

.mobile-nav-link:hover {
    background: rgba(30, 64, 175, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
    color: #93c5fd;
}

/* 导航底部 */
.mobile-nav-footer {
    padding-top: 1.5rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

/* 菜单打开时隐藏汉堡按钮的CSS规则（移除错误的~选择器） */
.menu-open .hamburger-menu {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* 响应式调整 */
@media (max-width: 480px) {
    .mobile-nav {
        padding: 1.25rem;
    }

    .mobile-nav-link {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }

    .mobile-nav-header {
        padding-bottom: 1.25rem;
        margin-bottom: 0.875rem;
    }
}

/* 轮播过渡效果 */
.transition-transform {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 确保容器正确显示 */
#reviewsCarousel {
    position: relative;
}

/* 移动端优化 */
@media (max-width: 480px) {
    .glass {
        padding: 1rem !important;
    }

    #reviewsCarousel {
        height: 120px;
    }

    .text-[

    13px ] {
    font-size: 12px;
    line-height: 1.4;
}

    .font-mono.text-xs {
        font-size: 10px;
    }

    .text-[

    11px ] {
    font-size: 10px;
}
}

/* 小屏幕优化 */
@media (max-width: 360px) {
    #reviewsCarousel {
        height: 125px;
    }

    .text-[

    13px ] {
    font-size: 11px;
}
}

/* 精致指示器样式 */
.indicator-btn {
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    outline: none;
}

.indicator-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 0 6px rgba(59, 130, 246, 0.5);
}

.indicator-btn.active-indicator {
    background: linear-gradient(135deg, #3b82f6, #60a5fa) !important;
    transform: scale(1.25);
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.7),
    0 0 12px rgba(59, 130, 246, 0.3);
}

/* 微妙的脉冲动画效果 */
@keyframes subtle-pulse {
    0%, 100% {
        box-shadow: 0 0 8px rgba(59, 130, 246, 0.7),
        0 0 12px rgba(59, 130, 246, 0.3);
    }
    50% {
        box-shadow: 0 0 10px rgba(59, 130, 246, 0.8),
        0 0 15px rgba(59, 130, 246, 0.4);
    }
}

.indicator-btn.active-indicator {
    animation: subtle-pulse 2s ease-in-out infinite;
}

/* 指示器容器样式 */
.inline-flex.items-center.gap-2 {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.15), rgba(37, 99, 235, 0.08));
    backdrop-filter: blur(4px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2),
    0 0 10px rgba(59, 130, 246, 0.1);
}

/* 隐藏滚动条 */
.overflow-hidden {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.overflow-hidden::-webkit-scrollbar {
    display: none;
}

.bg-gray-800\/70 {
    background: rgb(31 41 55 / 0.7);
}

/* Logo悬浮动画 */
@keyframes subtleFloat {
    0%, 100% {
        transform: scale(1) rotate(12deg);
    }
    50% {
        transform: scale(1.05) rotate(15deg);
    }
}

.group:hover .w-10.h-10 {
    animation: subtleFloat 2s ease-in-out infinite;
}

/* 文字悬停效果 */
.group:hover .text-transparent {
    text-shadow: 0 0 15px rgba(96, 165, 250, 0.4);
}

/* 响应式调整 */
@media (max-width: 1024px) {
    .logo .text-2xl {
        font-size: 1.5rem;
    }

    .logo .w-10.h-10 {
        width: 2.5rem;
        height: 2.5rem;
    }

    .logo .fa-cube {
        font-size: 1.125rem;
    }
}

/* PC版VIP表格对齐修复 */
.pc-table {
    width: 100%;
    table-layout: fixed; /* 固定表格布局，确保列宽均匀 */
}

.pc-table th,
.pc-table td {
    text-align: center !important;
    vertical-align: middle !important;
    padding: 1.25rem 0.75rem !important;
    line-height: 1.5 !important;
}

/* 表头样式优化 */
.pc-table th {
    font-weight: bold;
    font-size: 1.125rem;
    padding-bottom: 1rem !important;
}

.pc-table th span.text-sm {
    display: block;
    margin-top: 0.25rem;
    font-weight: normal;
    font-size: 0.875rem;
}

/* 单元格内容垂直对齐 */
.pc-table td {
    min-height: 80px; /* 确保所有行高度一致 */
    display: table-cell;
    vertical-align: middle;
}

/* 确保所有内容块对齐 */
.pc-table td > * {
    margin: 0;
    padding: 0;
    display: block;
}

/* VIP级别和范围对齐 */
.pc-table td .font-bold {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.pc-table td .text-gray-500 {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* 百分比数字对齐 */
.pc-table td span.font-bold.text-yellow-400.text-lg,
.pc-table td span.font-bold.text-yellow-300.text-lg {
    display: block;
    font-size: 1.5rem;
    line-height: 1.2;
    margin: 0 auto;
}

/* 数值对齐 */
.pc-table td:not(:first-child):not(:nth-child(2)) {
    font-size: 1.1rem;
    font-weight: 600;
}

/* 响应式调整 */
@media (max-width: 1280px) {
    .pc-table th,
    .pc-table td {
        padding: 1rem 0.5rem !important;
    }

    .pc-table td span.font-bold.text-yellow-400.text-lg,
    .pc-table td span.font-bold.text-yellow-300.text-lg {
        font-size: 1.25rem;
    }
}

@media (max-width: 1024px) {
    .pc-table th,
    .pc-table td {
        padding: 0.875rem 0.375rem !important;
    }

    .pc-table th {
        font-size: 1rem;
    }

    .pc-table td .font-bold {
        font-size: 1rem;
    }

    .pc-table td span.font-bold.text-yellow-400.text-lg,
    .pc-table td span.font-bold.text-yellow-300.text-lg {
        font-size: 1.125rem;
    }
}

/* PC版单行横向滚动样式 */
.ranking-container-pc {
    position: relative;
    overflow: hidden;
}

.ranking-list-pc {
    display: flex;
    animation: scrollLeft 40s linear infinite;
}

.ranking-list-pc:hover {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-380px * 5 - 24px * 5));
    }
}

/* 手机版样式 - 添加屏幕间距 */
@media (max-width: 1023px) {
    .px-4 {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .ranking-container {
        height: 280px;
        overflow: hidden;
        position: relative;
        border-radius: 8px;
    }

    .ranking-list {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        animation: rankingScroll 35s linear infinite;
    }

    .ranking-item {
        height: 28px;
        display: flex;
        align-items: center;
        padding: 4px 0;
        border-bottom: 1px solid rgba(35, 37, 60, 0.8);
    }

    .ranking-item:last-child {
        border-bottom: none;
    }

    @keyframes rankingScroll {
        0% {
            transform: translateY(0);
        }
        100% {
            transform: translateY(-336px);
        }
    }

    /* 悬停时暂停动画 */
    .ranking-container:hover .ranking-list {
        animation-play-state: paused;
    }
}

/* 确保表格容器有足够空间 */
.table-gradient .overflow-x-auto {
    padding: 0.5rem 0;
}

/* 移除任何可能影响对齐的边框 */
.pc-table,
.pc-table th,
.pc-table td {
    border: none !important;
}

/* 使用背景色区分行 */
.pc-table tbody tr:nth-child(odd) {
    background-color: rgba(251, 191, 36, 0.03);
}

.pc-table tbody tr:nth-child(even) {
    background-color: rgba(59, 130, 246, 0.03);
}

/* 鼠标悬停效果 */
.pc-table tbody tr:hover {
    background-color: rgba(251, 191, 36, 0.07);
    transition: background-color 0.2s ease;
}

.mt60 {
    margin-top: 60px;
}


/* 联系人按钮组 - 右侧垂直居中（无背景版本） */
.btn-concat-group {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 4px; /* 间距缩小为4px */
}

/* 完全无背景按钮，只展示原始图片 */
.btn-concat-group .fab-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    padding: 0;
    border: none;
    background: transparent !important;
    box-shadow: unset;
}

/* 保持图片原始样式和颜色 */
.btn-concat-group .fab-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: none;
}

/* 悬停效果：轻微放大 */
.btn-concat-group .fab-icon:hover {
    transform: scale(1.1);
}

.btn-concat-group .fab-icon:hover img {
    transform: scale(1.15);
}

/* ===== PC版（1024px及以上） ===== */
@media (min-width: 1024px) {
    .btn-concat-group {
        right: 25px;
        gap: 6px; /* PC版间距减小 */
    }

    .btn-concat-group .fab-icon {
        width: 55px;
        height: 55px;
    }

    .btn-concat-group .fab-icon img {
        width: 30px;
        height: 30px;
    }
}

/* ===== 平板版（769px-1023px） ===== */
@media (min-width: 769px) and (max-width: 1023px) {
    .btn-concat-group {
        right: 18px;
        gap: 5px;
    }

    .btn-concat-group .fab-icon {
        width: 52px;
        height: 52px;
    }

    .btn-concat-group .fab-icon img {
        width: 28px;
        height: 28px;
    }
}

/* ===== 手机版（768px及以下） - 按钮放大一倍 ===== */
@media (max-width: 768px) {
    .btn-concat-group {
        position: fixed;
        right: 15px;
        top: 0;
        bottom: 0;
        margin: auto 0;
        height: fit-content;
        transform: none;
        gap: 4px; /* 手机版间距4px */
    }

    .btn-concat-group .fab-icon {
        width: 100px !important; /* 放大一倍：从56px到100px */
        height: 100px !important;
        background: transparent !important;
    }

    .btn-concat-group .fab-icon img {
        width: 54px !important; /* 相应放大图片 */
        height: 54px !important;
    }

    .btn-concat-group .fab-icon:hover {
        transform: scale(1.12);
    }
}

/* ===== 小手机版（480px及以下） ===== */
@media (max-width: 480px) {
    .btn-concat-group {
        right: 12px;
        gap: 4px;
    }

    .btn-concat-group .fab-icon {
        width: 90px !important; /* 相应调整 */
        height: 90px !important;
    }

    .btn-concat-group .fab-icon img {
        width: 48px !important;
        height: 48px !important;
    }
}

/* ===== 超小手机版（360px及以下） ===== */
@media (max-width: 360px) {
    .btn-concat-group {
        right: 10px;
        gap: 4px;
    }

    .btn-concat-group .fab-icon {
        width: 80px !important;
        height: 80px !important;
    }

    .btn-concat-group .fab-icon img {
        width: 42px !important;
        height: 42px !important;
    }
}

/* ===== 横屏模式调整 ===== */
@media (max-height: 500px) and (orientation: landscape) {
    .btn-concat-group {
        top: 50%;
        transform: translateY(-50%);
        gap: 4px;
    }

    .btn-concat-group .fab-icon {
        width: 70px !important; /* 横屏时适当减小 */
        height: 70px !important;
    }

    .btn-concat-group .fab-icon img {
        width: 36px !important;
        height: 36px !important;
    }
}

/* ===== 确保按钮在页面最上层 ===== */
.btn-concat-group {
    z-index: 10;
}

/* ===== 确保按钮不会影响其他元素的点击 ===== */
.btn-concat-group * {
    pointer-events: auto;
}

/* ===== 打印时隐藏按钮 ===== */
@media print {
    .btn-concat-group {
        display: none !important;
    }
}

/* ===== 确保图片高质量显示 ===== */
.btn-concat-group .fab-icon img {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* ===== 加载时的占位符效果 ===== */
.btn-concat-group .fab-icon img:not([src]),
.btn-concat-group .fab-icon img[src=""] {
    background: rgba(128, 128, 128, 0.1);
    border-radius: 50%;
}
