/**
 * UI Enhancements CSS - Premium Modern Design Upgrade
 * Enhanced animations, glassmorphism, and premium visual effects
 * @package Betpro_Theme
 */

/* ==========================================================================
   NEW ANIMATION KEYFRAMES
   ========================================================================== */

/* Shimmer effect for text */
@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* Floating animation with more depth */
@keyframes floatEnhanced {

    0%,
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    25% {
        transform: translateY(-20px) rotate(2deg) scale(1.02);
    }

    50% {
        transform: translateY(-10px) rotate(-1deg) scale(0.98);
    }

    75% {
        transform: translateY(-25px) rotate(1deg) scale(1.01);
    }
}

/* Pulse glow effect */
@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.6), 0 0 60px rgba(212, 175, 55, 0.3);
    }
}

/* Rotating gradient border */
@keyframes rotateBorder {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Reveal animation */
@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scale in */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Slide in from left */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Counter animation */
@keyframes countPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Sparkle effect */
@keyframes sparkle {

    0%,
    100% {
        opacity: 0;
        transform: scale(0);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ==========================================================================
   ENHANCED HERO SECTION
   ========================================================================== */

/* Text shimmer effect for hero title */
.huzfp--text-gradient-shimmer {
    background: linear-gradient(90deg,
            #FFD700 0%,
            #fff 20%,
            #D4AF37 40%,
            #FFD700 60%,
            #fff 80%,
            #D4AF37 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

/* Enhanced floating orbs */
.huzfp--floating-orb {
    animation: floatEnhanced 15s ease-in-out infinite;
}

.huzfp--orb-1 {
    background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, rgba(212, 175, 55, 0) 70%);
    animation-duration: 18s;
}

.huzfp--orb-2 {
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0) 70%);
    animation-duration: 22s;
    animation-delay: -5s;
}

.huzfp--orb-3 {
    background: radial-gradient(circle, rgba(184, 134, 11, 0.2) 0%, rgba(184, 134, 11, 0) 70%);
    animation-duration: 16s;
    animation-delay: -10s;
}

/* New decorative particles */
.huzfp--hero::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 6px;
    height: 6px;
    background: #D4AF37;
    border-radius: 50%;
    animation: sparkle 3s ease-in-out infinite;
    box-shadow:
        200px 100px 0 #D4AF37,
        400px 200px 0 rgba(212, 175, 55, 0.7),
        600px 50px 0 rgba(255, 215, 0, 0.5),
        100px 300px 0 rgba(184, 134, 11, 0.6);
}

/* Enhanced hero badge with glow */
.huzfp--hero-badge {
    animation: pulseGlow 3s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

/* Better hero stat cards with glassmorphism */
.huzfp--hero-stat {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.huzfp--hero-stat:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow:
        0 25px 50px rgba(212, 175, 55, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.huzfp--hero-stat:hover .huzfp--stat-icon {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, #D4AF37, #FFD700);
}

.huzfp--stat-icon {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Enhanced CTA buttons */
.huzfp--btn-primary {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.huzfp--btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transition: left 0.5s ease;
}

.huzfp--btn-primary:hover::before {
    left: 100%;
}

.huzfp--btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 15px 35px rgba(212, 175, 55, 0.4),
        0 0 0 2px rgba(212, 175, 55, 0.2);
}

/* ==========================================================================
   ENHANCED FEATURE CARDS
   ========================================================================== */

.huzfp--feature-card {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.huzfp--feature-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg,
            rgba(212, 175, 55, 0) 0%,
            rgba(212, 175, 55, 0.5) 50%,
            rgba(212, 175, 55, 0) 100%);
    border-radius: 26px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.huzfp--feature-card:hover::before {
    opacity: 1;
}

.huzfp--feature-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow:
        0 30px 60px rgba(212, 175, 55, 0.15),
        0 0 0 1px rgba(212, 175, 55, 0.3);
}

.huzfp--feature-card:hover .huzfp--feature-icon {
    transform: scale(1.15) rotate(-5deg);
    background: linear-gradient(135deg, #D4AF37, #FFD700);
}

.huzfp--feature-card:hover .huzfp--feature-icon svg {
    color: #000;
}

.huzfp--feature-icon {
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.huzfp--feature-number {
    transition: all 0.4s ease;
}

.huzfp--feature-card:hover .huzfp--feature-number {
    color: rgba(212, 175, 55, 0.3);
    transform: translateX(10px);
}

/* ==========================================================================
   ENHANCED TESTIMONIAL CARDS
   ========================================================================== */

.testimonial-card,
.huzfp--testimonial-card {
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card::before,
.huzfp--testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 120px;
    font-family: Georgia, serif;
    line-height: 1;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    pointer-events: none;
}

.testimonial-card:hover,
.huzfp--testimonial-card:hover {
    transform: translateY(-12px) rotate(-1deg);
    box-shadow:
        0 25px 60px rgba(212, 175, 55, 0.15),
        0 0 0 1px rgba(212, 175, 55, 0.2);
}

/* Enhanced author avatar */
.author-avatar,
.huzfp--author-avatar {
    position: relative;
    transition: all 0.4s ease;
}

.author-avatar::after,
.huzfp--author-avatar::after {
    content: '';
    position: absolute;
    inset: -3px;
    border: 2px solid transparent;
    border-radius: 50%;
    background: linear-gradient(135deg, #D4AF37, #FFD700, #B8860B) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover .author-avatar::after,
.huzfp--testimonial-card:hover .huzfp--author-avatar::after {
    opacity: 1;
}

/* Enhanced stars */
.stars svg,
.huzfp--stars svg {
    transition: all 0.3s ease;
}

.testimonial-card:hover .stars svg,
.huzfp--testimonial-card:hover .huzfp--stars svg {
    transform: scale(1.2);
    filter: drop-shadow(0 0 5px rgba(245, 158, 11, 0.5));
}

/* ==========================================================================
   ENHANCED PRICING CARDS
   ========================================================================== */

.pricing-card,
.huzfp--pricing-card {
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animated gradient border for popular card */
.pricing-card.popular::before,
.huzfp--pricing-featured::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg,
            #D4AF37,
            #FFD700,
            #B8860B,
            #D4AF37,
            #FFD700);
    background-size: 300% 300%;
    animation: rotateBorder 4s ease infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.pricing-card:hover,
.huzfp--pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

.pricing-card.popular:hover,
.huzfp--pricing-featured:hover {
    box-shadow:
        0 30px 70px rgba(212, 175, 55, 0.2),
        0 0 0 1px rgba(212, 175, 55, 0.3);
}

/* Enhanced badge animation */
.pricing-card .badge {
    animation: pulseGlow 2s ease-in-out infinite;
}

/* Feature list checkmarks animation */
.features-list li svg,
.huzfp--account-features li svg {
    transition: all 0.3s ease;
}

.pricing-card:hover .features-list li svg,
.huzfp--pricing-card:hover .huzfp--account-features li svg {
    color: #D4AF37;
    transform: scale(1.2);
}

/* ==========================================================================
   ENHANCED STATS SECTION
   ========================================================================== */

.huzfp--stats-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.huzfp--stats-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.huzfp--stats-card:hover::before {
    opacity: 1;
}

.huzfp--stats-card:hover {
    transform: translateY(-12px) scale(1.03);
}

.huzfp--stats-icon {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.huzfp--stats-card:hover .huzfp--stats-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.huzfp--stats-number {
    transition: all 0.4s ease;
}

.huzfp--stats-card:hover .huzfp--stats-number {
    animation: countPulse 0.5s ease;
}

/* ==========================================================================
   ENHANCED FAQ SECTION
   ========================================================================== */

.faq-item,
.huzfp--faq-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover,
.huzfp--faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-item.active,
.huzfp--faq-item.active {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.1);
}

/* Smooth answer reveal */
.faq-answer,
.huzfp--faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}

.faq-item.active .faq-answer,
.huzfp--faq-item.active .huzfp--faq-answer {
    max-height: 500px;
}

/* Toggle button animation */
.faq-toggle,
.huzfp--faq-toggle {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-item.active .faq-toggle,
.huzfp--faq-item.active .huzfp--faq-toggle {
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    transform: rotate(45deg);
}

/* ==========================================================================
   ENHANCED STEP CARDS (How It Works)
   ========================================================================== */

.huzfp--step-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.huzfp--step-card:hover {
    transform: translateY(-15px);
    box-shadow:
        0 30px 60px rgba(212, 175, 55, 0.12),
        0 0 0 2px rgba(212, 175, 55, 0.3);
}

.huzfp--step-number {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.huzfp--step-card:hover .huzfp--step-number {
    transform: translateX(-50%) scale(1.15);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

/* ==========================================================================
   GLOBAL BUTTON ENHANCEMENTS
   ========================================================================== */

.btn-primary,
.btn-outline {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary::after,
.btn-outline::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:active::after,
.btn-outline:active::after {
    width: 300px;
    height: 300px;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */

.reveal-element {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-element.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered grid animations */
.reveal-grid>* {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-grid.revealed>*:nth-child(1) {
    transition-delay: 0.1s;
}

.reveal-grid.revealed>*:nth-child(2) {
    transition-delay: 0.2s;
}

.reveal-grid.revealed>*:nth-child(3) {
    transition-delay: 0.3s;
}

.reveal-grid.revealed>*:nth-child(4) {
    transition-delay: 0.4s;
}

.reveal-grid.revealed>*:nth-child(5) {
    transition-delay: 0.5s;
}

.reveal-grid.revealed>*:nth-child(6) {
    transition-delay: 0.6s;
}

.reveal-grid.revealed>* {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   SECTION BACKGROUNDS ENHANCEMENT
   ========================================================================== */

/* Gradient mesh background for dark sections */
.huzfp--features,
.huzfp--dealer,
.huzfp--faq,
.huzfp--cta,
.section.faq,
.section.pricing {
    position: relative;
}

.huzfp--features::before,
.huzfp--dealer::before,
.section.pricing::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(184, 134, 11, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

/* ==========================================================================
   MOBILE OPTIMIZATIONS
   ========================================================================== */

@media (max-width: 768px) {

    /* Reduce animation intensity on mobile */
    .huzfp--text-gradient-shimmer {
        animation-duration: 5s;
    }

    .huzfp--floating-orb {
        animation-duration: 25s;
    }

    .huzfp--hero::before {
        display: none;
    }

    /* Simpler hover effects on mobile */
    .huzfp--feature-card:hover,
    .huzfp--testimonial-card:hover,
    .huzfp--pricing-card:hover {
        transform: translateY(-8px);
    }

    /* Reduce glow effects */
    .huzfp--hero-badge {
        animation: none;
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
    }
}

/* ==========================================================================
   NEW MARKETS SECTION STYLES
   ========================================================================== */

.huzfp--markets-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.huzfp--markets-category {
    background: #fff;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 28px;
    padding: 40px;
    transition: all 0.4s ease;
}

.huzfp--markets-category:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.08);
}

.huzfp--casino-category {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(184, 134, 11, 0.02));
}

.huzfp--category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.huzfp--category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(184, 134, 11, 0.1));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.huzfp--category-icon svg {
    color: #D4AF37;
}

.huzfp--casino-icon {
    background: linear-gradient(135deg, #D4AF37, #B8860B);
}

.huzfp--casino-icon svg {
    color: #fff;
}

.huzfp--category-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
}

.huzfp--category-desc {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 800px;
}

/* Markets Grid */
.huzfp--markets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.huzfp--market-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.huzfp--market-featured {
    grid-column: span 3;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(184, 134, 11, 0.03));
    border-color: rgba(212, 175, 55, 0.3);
    text-align: left;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 25px;
    align-items: start;
}

.huzfp--market-badge {
    position: absolute;
    top: -12px;
    right: 25px;
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.huzfp--market-card:hover {
    transform: translateY(-10px);
    border-color: #D4AF37;
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.12);
}

.huzfp--market-card .huzfp--market-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(184, 134, 11, 0.1));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.huzfp--market-featured .huzfp--market-icon {
    margin: 0;
}

.huzfp--market-icon svg {
    color: #D4AF37;
}

.huzfp--market-card:hover .huzfp--market-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #D4AF37, #FFD700);
}

.huzfp--market-card:hover .huzfp--market-icon svg {
    color: #000;
}

.huzfp--market-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
}

.huzfp--market-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.huzfp--market-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.huzfp--market-tags span {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(184, 134, 11, 0.1));
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #B8860B;
}

/* Providers Grid */
.huzfp--providers {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.huzfp--provider {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a202c;
    transition: all 0.3s ease;
}

.huzfp--provider:hover {
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* Casino Games Grid */
.huzfp--casino-games {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.huzfp--casino-game {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.huzfp--casino-game:hover {
    transform: translateY(-8px);
    border-color: #D4AF37;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.huzfp--casino-game svg {
    color: #D4AF37;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.huzfp--casino-game:hover svg {
    transform: scale(1.2);
}

.huzfp--casino-game span {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a202c;
}

/* Markets Responsive */
@media (max-width: 1024px) {
    .huzfp--markets-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .huzfp--market-featured {
        grid-column: span 2;
    }

    .huzfp--casino-games {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .huzfp--markets-category {
        padding: 25px;
    }

    .huzfp--category-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .huzfp--category-header h3 {
        font-size: 1.5rem;
    }

    .huzfp--markets-grid {
        grid-template-columns: 1fr;
    }

    .huzfp--market-featured {
        grid-column: auto;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .huzfp--market-featured .huzfp--market-icon {
        margin: 0 auto;
    }

    .huzfp--market-tags {
        justify-content: center;
    }

    .huzfp--providers {
        justify-content: center;
    }

    .huzfp--casino-games {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   ENHANCED TESTIMONIALS STYLES
   ========================================================================== */

.huzfp--testimonials {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.huzfp--testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.huzfp--testimonial-card {
    background: #fff;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 24px;
    padding: 35px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.huzfp--testimonial-card p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
}

.huzfp--stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.huzfp--stars svg {
    color: #f59e0b;
}

.huzfp--author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.huzfp--author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
}

.huzfp--author strong {
    display: block;
    color: #1a202c;
    font-size: 1.05rem;
    margin-bottom: 3px;
}

.huzfp--author span {
    color: #64748b;
    font-size: 0.85rem;
}

@media (max-width: 1024px) {
    .huzfp--testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .huzfp--testimonials-grid {
        grid-template-columns: 1fr;
    }

    .huzfp--testimonial-card {
        padding: 25px;
    }
}

/* ==========================================================================
   HOW IT WORKS ENHANCED STYLES
   ========================================================================== */

.huzfp--steps-container {
    position: relative;
    margin-bottom: 50px;
}

.huzfp--steps-line {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 3px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.5), rgba(212, 175, 55, 0.1));
    border-radius: 2px;
    z-index: 0;
}

.huzfp--step-content {
    flex: 1;
}

.huzfp--step-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 15px;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(184, 134, 11, 0.1));
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #B8860B;
}

.huzfp--step-time svg {
    color: #D4AF37;
}

.huzfp--steps-cta {
    text-align: center;
    margin-bottom: 50px;
}

.huzfp--cta-note {
    margin-top: 15px;
    color: #64748b;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .huzfp--steps-line {
        display: none;
    }
}

/* ==========================================================================
   DEALER CARD ENHANCED STYLES
   ========================================================================== */

.huzfp--content-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.15);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #D4AF37;
    margin-bottom: 20px;
}

.huzfp--content-badge svg {
    color: #D4AF37;
}

.huzfp--lead {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 15px;
}

.huzfp--check-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.huzfp--check-icon svg {
    color: #fff;
}

.huzfp--dealer-features li {
    display: flex;
    align-items: center;
    gap: 15px;
}

.huzfp--verified-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.huzfp--dealer-avatar {
    position: relative;
}

.huzfp--avatar-ring {
    position: absolute;
    inset: -6px;
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite;
}

.huzfp--dealer-role {
    display: block;
    color: #D4AF37;
    font-weight: 600;
    margin-bottom: 15px;
}

.huzfp--dealer-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.huzfp--dealer-rating .huzfp--stars {
    display: flex;
    gap: 4px;
}

.huzfp--dealer-rating .huzfp--stars svg {
    color: #f59e0b;
}

.huzfp--dealer-rating>span {
    color: #94a3b8;
    font-size: 0.85rem;
}

.huzfp--stat-icon-wrap {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(184, 134, 11, 0.15));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.huzfp--stat-icon-wrap svg {
    color: #D4AF37;
}

.huzfp--response-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 15px;
    color: #94a3b8;
    font-size: 0.85rem;
}

.huzfp--response-time svg {
    color: #D4AF37;
}

/* Info Box Enhanced */
.huzfp--info-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(184, 134, 11, 0.04));
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.huzfp--info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.huzfp--info-icon svg {
    color: #fff;
}

/* ==========================================================================
   HERO SECTION ULTRA PREMIUM STYLES
   ========================================================================== */

/* Animated Particles */
.huzfp--particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.huzfp--particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #D4AF37;
    border-radius: 50%;
    animation: floatParticle 10s ease-in-out infinite;
}

.huzfp--particle-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.huzfp--particle-2 {
    top: 60%;
    left: 25%;
    animation-delay: -2s;
    opacity: 0.7;
}

.huzfp--particle-3 {
    top: 30%;
    left: 70%;
    animation-delay: -4s;
    width: 4px;
    height: 4px;
}

.huzfp--particle-4 {
    top: 70%;
    left: 80%;
    animation-delay: -6s;
    opacity: 0.5;
}

.huzfp--particle-5 {
    top: 50%;
    left: 50%;
    animation-delay: -8s;
    width: 8px;
    height: 8px;
}

@keyframes floatParticle {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    50% {
        transform: translateY(-100px) translateX(30px);
        opacity: 0.8;
    }

    90% {
        opacity: 0.2;
    }
}

/* Accent Lines */
.huzfp--accent-line {
    position: absolute;
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    opacity: 0.3;
}

.huzfp--line-1 {
    top: 30%;
    left: -100px;
    transform: rotate(45deg);
    animation: lineFloat 8s ease-in-out infinite;
}

.huzfp--line-2 {
    bottom: 30%;
    right: -100px;
    transform: rotate(-45deg);
    animation: lineFloat 8s ease-in-out infinite reverse;
}

@keyframes lineFloat {

    0%,
    100% {
        transform: rotate(45deg) translateX(0);
        opacity: 0.2;
    }

    50% {
        transform: rotate(45deg) translateX(50px);
        opacity: 0.5;
    }
}

/* Live Activity Indicator */
.huzfp--live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    margin-bottom: 25px;
    font-size: 0.85rem;
    color: #10b981;
    animation: revealUp 0.8s ease forwards;
}

.huzfp--live-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

/* Enhanced Badge */
.huzfp--badge-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.huzfp--badge-icon svg {
    color: #fff;
}

.huzfp--badge-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgeShine {

    0%,
    100% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(100%);
    }
}

/* Hero Title Enhanced */
.huzfp--hero-title {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.huzfp--title-line {
    display: block;
}

/* Button Enhancements */
.huzfp--btn-content {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.huzfp--btn-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.huzfp--btn-animated:hover .huzfp--btn-shine {
    transform: translateX(100%);
}

.huzfp--btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.huzfp--btn-glass:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
}

/* Trust Items Enhanced */
.huzfp--trust-icon {
    width: 28px;
    height: 28px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.huzfp--trust-icon svg {
    color: #D4AF37;
}

.huzfp--trust-divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
}

/* Stat Card Enhancements */
.huzfp--stat-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.huzfp--hero-stat:hover .huzfp--stat-glow {
    opacity: 1;
}

.huzfp--stat-content {
    display: flex;
    flex-direction: column;
}

.huzfp--stat-featured {
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(212, 175, 55, 0.1);
}

.huzfp--stat-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: livePulse 2s ease-in-out infinite;
}

/* Scroll Indicator */
.huzfp--scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 50px;
    animation: fadeInUp 1s ease forwards 1s;
    opacity: 0;
}

.huzfp--scroll-indicator span {
    color: #94a3b8;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.huzfp--scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.huzfp--scroll-wheel {
    width: 4px;
    height: 10px;
    background: #D4AF37;
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(10px);
        opacity: 0.3;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Optimizations for Hero */
@media (max-width: 768px) {

    .huzfp--particles,
    .huzfp--accent-line {
        display: none;
    }

    .huzfp--live-indicator {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .huzfp--scroll-indicator {
        display: none;
    }

    .huzfp--trust-divider {
        display: none;
    }

    .huzfp--hero-trust {
        flex-wrap: wrap;
        gap: 12px;
    }
}

/* ==========================================================================
   ACCESSIBILITY - REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}