/* ===== 0060 - HHPOKER联盟排名俱乐部 ===== */

/* Navbar */
#navbar.scrolled {
    background: rgba(255,255,255,0.98);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

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

/* Page Header */
.page-header-bg {
    background: linear-gradient(135deg, #312e81 0%, #4338ca 50%, #4f46e5 100%);
}

/* Feature Cards */
.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;
}
.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;
}

/* Testimonial Cards */
.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);
}

/* Club Cards */
.club-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;
}
.club-card:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    border-color: #e0e7ff;
    transform: translateY(-2px);
}

/* FAQ */
.faq-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s;
}
.faq-toggle i {
    transition: transform 0.3s ease;
}

/* Download Steps */
.download-step {
    text-align: center;
    padding: 2rem;
}
.download-step-number {
    width: 3rem;
    height: 3rem;
    background: #4f46e5;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

/* Contact Form */
.contact-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    transition: all 0.2s;
    outline: none;
}
.contact-input:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79,70,229,0.1);
}

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

/* Button Hover Effects */
.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 2rem;
    background: #4f46e5;
    color: #fff;
    font-weight: 700;
    border-radius: 9999px;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(79,70,229,0.3);
}
.btn-primary:hover {
    background: #4338ca;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(79,70,229,0.4);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 2rem;
    border: 2px solid #4f46e5;
    color: #4f46e5;
    font-weight: 700;
    border-radius: 9999px;
    transition: all 0.3s;
}
.btn-outline:hover {
    background: #eef2ff;
}

/* Responsive */
@media (max-width: 768px) {
    .feature-card,
    .club-card,
    .testimonial-card {
        padding: 1.5rem;
    }
}
