/* ===== 0058 - HHPoker 安全下载 Landing Page ===== */

/* Navbar */
.navbar-transparent {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
#navbar.scrolled {
    background: rgba(255,255,255,0.95);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 0.625rem 1.5rem;
    background: #4f46e5;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    transition: all 0.2s;
    box-shadow: 0 4px 14px rgba(79,70,229,0.3);
}
.btn-primary:hover {
    background: #4338ca;
    box-shadow: 0 6px 20px rgba(79,70,229,0.4);
    transform: translateY(-1px);
}
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: #4f46e5;
    color: #fff;
    font-weight: 700;
    border-radius: 9999px;
    font-size: 1.125rem;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(79,70,229,0.35);
}
.btn-hero-primary:hover {
    background: #4338ca;
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(79,70,229,0.45);
}
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border: 2px solid #4f46e5;
    color: #4f46e5;
    font-weight: 700;
    border-radius: 9999px;
    font-size: 1.125rem;
    transition: all 0.3s;
}
.btn-hero-secondary:hover {
    background: #eef2ff;
}

/* Badges */
.badge-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: #eef2ff;
    color: #4338ca;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
}
.badge-outline {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: #eef2ff;
    color: #4338ca;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

/* Hero Background */
.gradient-bg {
    background: linear-gradient(135deg, #eef2ff 0%, #ffffff 40%, #eff6ff 100%);
}

/* Hero Glow */
.hero-image-glow {
    position: absolute;
    inset: -1rem;
    background: rgba(79,70,229,0.08);
    border-radius: 1.5rem;
    filter: blur(40px);
}

/* Hero Floating Card */
.hero-floating-card {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: #fff;
    border-radius: 1rem;
    padding: 0.875rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Feature Card */
.feature-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
    cursor: pointer;
}
.feature-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #e0e7ff;
    transform: translateY(-4px);
}
.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: #eef2ff;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}
.feature-card:hover .feature-icon {
    background: #4f46e5;
}

/* Stats Background */
.stats-bg {
    background: #312e81;
}

/* Testimonial Card */
.testimonial-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    transition: all 0.3s;
}
.testimonial-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
}

/* CTA Section */
.cta-section {
    background: #312e81;
}

/* FAQ Animations */
.faq-toggle i {
    transition: transform 0.3s ease;
}
.faq-content {
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-floating-card {
        bottom: -0.5rem;
        right: -0.5rem;
        padding: 0.625rem;
    }
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}
