/* === HHPoker Club - Main Stylesheet === */

html {
    scroll-behavior: smooth;
}

/* FAQ Accordion */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-answer.open {
    max-height: 500px;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* Card Hover Effects */
.feature-card,
.testimonial-card {
    transition: all 0.3s ease;
}
.feature-card:hover,
.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Mobile Menu */
#mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
#mobile-menu.open {
    max-height: 400px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%);
    padding-top: 8rem;
    padding-bottom: 5rem;
}

/* Contact Form */
.contact-input {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-input:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
    outline: none;
}

/* Download Cards */
.download-card {
    transition: all 0.3s ease;
}
.download-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.2);
}

/* Scroll Animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #6366f1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #4f46e5;
}
