/* ============================================
   LUXURY HALL OF FAME - $99k Awwwards Styling
   ============================================ */

/* Import Luxury Typography */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* Fallback Variables (Just in case) */
:root {
    --luxury-deep-charcoal: #1A365D;
    --luxury-champagne-gold: #d4af37;
    --luxury-text-light: #ffffff;
    --luxury-cream: #f5f5f5;
}

/* Section Background - White */
.luxury-hof-section {
    position: relative;
    padding: 8rem 0;
    min-height: 100vh;
    background: #ffffff;
    overflow: hidden;
    color: var(--luxury-text-light);
}

/* Golden Particles Background */
.luxury-hof-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Section Title - Premium Dark with Golden Accent */
.luxury-hof-section .luxury-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.luxury-hof-section .luxury-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f1c40f);
    border-radius: 2px;
}

/* Horizontal Scrolling Layout */
.luxury-hof-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 3rem;
    padding: 4rem 0;
    position: relative;
    z-index: 1;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(212, 175, 55, 0.5) rgba(15, 23, 42, 0.3);
}

/* Custom scrollbar for webkit browsers */
.luxury-hof-grid::-webkit-scrollbar {
    height: 8px;
}

.luxury-hof-grid::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.3);
    border-radius: 10px;
}

.luxury-hof-grid::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.5);
    border-radius: 10px;
}

.luxury-hof-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.8);
}

/* Ultra-Premium Card - Clean White Design */
.luxury-star-card {
    position: relative;
    background: #ffffff;
    border: none;
    border-radius: 32px;
    padding: 3rem 2rem 2.5rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    min-width: 340px;
    width: 340px;
}

/* Subtle gradient overlay */
.luxury-star-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 248, 255, 1) 100%);
    z-index: 0;
    pointer-events: none;
}

/* All content above background */
.luxury-star-card>* {
    position: relative;
    z-index: 1;
}

.luxury-star-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15),
        0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Image Styling - Clean with Golden Ring */
.luxury-star-img-wrapper {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 2rem;
}

.luxury-star-img-wrapper::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37 0%, #f1c40f 100%);
    z-index: 0;
}

.luxury-star-img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #ffffff;
    z-index: 2;
    filter: brightness(1.05) contrast(1.1);
    transition: all 0.4s ease;
}

.luxury-star-card:hover .luxury-star-img {
    transform: scale(1.05);
}

/* Rank Badge - Golden */
.luxury-rank-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #d4af37, #f1c40f);
    color: #000;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
    z-index: 3;
}

/* Typography - Dark and Readable */
.luxury-star-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

.luxury-star-achievement {
    font-family: 'Inter', sans-serif;
    color: #d4af37;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 10px 24px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    background: rgba(212, 175, 55, 0.08);
    display: inline-block;
    margin-bottom: 1rem;
}

/* Result Thumbnail */
.luxury-result-preview {
    margin-top: 1.5rem;
    width: 100px;
    height: 75px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.3);
    cursor: zoom-in;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.luxury-result-preview:hover {
    transform: scale(1.1);
    border-color: #d4af37;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

/* Scroll Reveal Animation */
.luxury-reveal-ub {
    opacity: 0;
    transform: translateY(80px);
    transition: all 1s cubic-bezier(0.2, 1, 0.3, 1);
}

.luxury-reveal-ub.revealed {
    opacity: 1;
    transform: translateY(0);
}

.luxury-reveal-ub:nth-child(1) {
    transition-delay: 0.1s;
}

.luxury-reveal-ub:nth-child(2) {
    transition-delay: 0.2s;
}

.luxury-reveal-ub:nth-child(3) {
    transition-delay: 0.3s;
}

/* Responsive */
@media (max-width: 991px) {
    .luxury-hof-section {
        padding: 5rem 0;
    }

    .luxury-hof-section .luxury-section-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .luxury-hof-section {
        padding: 4rem 0;
    }

    .luxury-hof-section .luxury-section-title {
        font-size: 2.5rem;
    }

    .luxury-hof-grid {
        gap: 2rem;
        padding: 2rem 0;
    }

    .luxury-star-card {
        padding: 2.5rem 1.5rem 2rem;
        min-width: 280px;
        width: 280px;
    }

    .luxury-star-img-wrapper {
        width: 140px;
        height: 140px;
    }

    .luxury-star-name {
        font-size: 1.6rem;
    }

    .luxury-star-achievement {
        font-size: 0.9rem;
        padding: 8px 18px;
    }
}