/* 4FREE Homepage - DreamDrive-Inspired Design */

/* Force remove margin from dashboard-nav - must be first */
nav.dashboard-nav,
.dashboard-nav,
body .dashboard-nav,
body nav.dashboard-nav {
    margin: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Home Body - Exact gradient background matching monthly card hero section */
/* Must override 4free.css body background-color */
body.home-body,
.home-body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%) !important;
    background-size: 400% 400% !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
    background-position: 0% 50% !important;
    animation: gradientShift 15s ease infinite !important;
    -webkit-animation: gradientShift 15s ease infinite !important;
    will-change: background-position !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #1a1a1a;
    margin: 0;
    padding: 0;
    padding-top: 75px; /* Account for fixed navigation - compact height */
    overflow-x: hidden !important;
    overflow-y: auto !important; /* Body handles scrolling */
    position: relative;
    min-height: 100vh;
    height: auto !important; /* Allow body to grow with content */
}

@media (max-width: 768px) {
    body.home-body,
    .home-body {
        padding-top: 65px; /* Slightly less on mobile */
    }
}

@keyframes gradientShift {
    0% { 
        background-position: 0% 50%; 
    }
    50% { 
        background-position: 100% 50%; 
    }
    100% { 
        background-position: 0% 50%; 
    }
}

/* ============================================
   FIXED MINIMAL HEADER - Always Visible
   ============================================ */
.home-nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.15) 0%, rgba(156, 39, 176, 0.2) 50%, rgba(33, 150, 243, 0.15) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin: 0 !important;
    padding: 0 !important;
}

.home-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    height: auto;
    min-height: auto;
}

.home-nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    height: 55px;
    max-width: 170px;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.home-nav-logo {
    position: relative;
}

.home-nav-logo img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    /* Change logo color from green to brand gradient colors - stronger filter */
    filter: hue-rotate(-140deg) saturate(2) brightness(1.2) contrast(1.3);
    position: relative;
}

.home-nav-logo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.8) 0%, rgba(33, 150, 243, 0.8) 100%);
    mix-blend-mode: multiply;
    pointer-events: none;
    border-radius: 4px;
}

.home-nav-logo:hover {
    transform: scale(1.05);
}

.home-nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.home-nav-link {
    padding: 0.5rem 1.25rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: clamp(0.875rem, 1.5vw, 0.95rem);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.home-nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.home-nav-link.active {
    background: linear-gradient(135deg, #E91E63 0%, #2196F3 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.home-nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.home-token-pill {
    background: linear-gradient(135deg, #E91E63 0%, #2196F3 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: clamp(0.875rem, 1.5vw, 0.95rem);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-token-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(233, 30, 99, 0.4);
}

.token-icon {
    font-size: 1.2rem;
}

.home-user-menu {
    position: relative;
}

.home-user-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #E91E63 0%, #2196F3 100%);
    color: white;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.3);
}

.home-user-toggle:hover {
    transform: scale(1.1);
}

.home-user-avatar {
    font-size: 1rem;
}

.home-user-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    overflow: hidden;
}

.home-user-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.home-menu-item {
    display: block;
    padding: 0.75rem 1.25rem;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.home-menu-item:last-child {
    border-bottom: none;
}

.home-menu-item:hover {
    background: rgba(233, 30, 99, 0.1);
    color: #E91E63;
}

.home-mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.home-mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: #1a1a1a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .home-nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .home-nav.mobile-open .home-nav-menu {
        max-height: 400px;
    }
    
    .home-nav-menu li {
        width: 100%;
    }
    
    .home-nav-link {
        display: block;
        width: 100%;
        padding: 1rem;
        text-align: center;
    }
    
    .home-mobile-menu-toggle {
        display: flex;
    }
    
    .home-nav-container {
        padding: 0.75rem 1rem;
    }
    
    .home-nav-right {
        gap: 0.5rem;
    }
    
    .home-nav-logo {
        height: 50px;
        max-width: 160px;
    }
    
    .home-nav-container {
        padding: 0.5rem 1rem;
    }
}

/* ============================================
   FULL-BLEED HERO SECTION
   ============================================ */
.hero-full-bleed {
    position: relative; /* Allow natural document flow */
    top: 0;
    width: 100%;
    max-height: none !important; /* Remove height constraint to allow scrolling */
    min-height: auto;
    overflow: visible !important; /* Allow content to flow naturally */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    padding: 0 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    z-index: 10;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(233, 30, 99, 0.85) 0%,
        rgba(156, 39, 176, 0.75) 50%,
        rgba(33, 150, 243, 0.85) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-headline {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    margin: 0 0 1rem 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subheadline {
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 600;
    margin: 0 0 2.5rem 0;
    opacity: 0.95;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.btn-play-now {
    background: #ffffff;
    color: #E91E63;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.btn-play-now > * {
    position: relative;
    z-index: 2;
}

.btn-play-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.95);
}

.btn-how-it-works {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.btn-how-it-works:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

/* ============================================
   COUNTDOWN OVERLAY (Bottom-Right)
   ============================================ */
.countdown-overlay {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 3;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 280px;
    animation: slideInRight 0.8s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.countdown-label {
    color: #4CAF50;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    text-align: center;
}

.countdown-blocks {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.countdown-block {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.75rem 0.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.countdown-value {
    display: block;
    color: #4CAF50;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.countdown-unit {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   FLOATING FREE ENTRY BUTTON (Bottom-Left)
   ============================================ */
.floating-free-entry {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    z-index: 3;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.4);
    transition: all 0.3s ease;
    animation: slideInLeft 0.8s ease;
    text-decoration: none;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.floating-free-entry:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(76, 175, 80, 0.5);
    background: linear-gradient(135deg, #45a049 0%, #4CAF50 100%);
}

.free-entry-icon {
    font-size: 1.5rem;
}

.free-entry-text {
    font-size: 1rem;
}

/* ============================================
   QUICK PLAY ROW
   ============================================ */
.quick-play-section {
    padding: 3rem 2rem;
    background: transparent !important;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.quick-play-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    box-sizing: border-box;
    width: 100%;
    padding: 0;
}

.quick-play-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

.quick-play-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(233, 30, 99, 0.2);
    border-color: rgba(233, 30, 99, 0.3);
}

.quick-play-card.primary {
    background: linear-gradient(135deg, #E91E63 0%, #2196F3 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(233, 30, 99, 0.3);
}

.quick-play-card.primary:hover {
    box-shadow: 0 16px 40px rgba(233, 30, 99, 0.4);
    transform: translateY(-10px) scale(1.02);
}

.quick-play-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.quick-play-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.quick-play-desc {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
}

/* ============================================
   HOME WIDGETS SECTION
   ============================================ */
.home-widgets-section {
    padding: 3rem 2rem;
    background: transparent !important;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    overflow-y: visible !important;
}

.home-widgets-container {
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0;
    overflow-x: hidden !important;
    overflow-y: visible !important;
}

.home-widgets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    box-sizing: border-box;
    width: 100%;
    overflow: visible;
}

@media (max-width: 768px) {
    .home-widgets-section {
        padding: 2rem 1rem !important;
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
    }
    
    .home-widgets-container {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .home-widgets-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        overflow: visible !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .home-widget-card {
        overflow: visible !important;
        overflow-x: hidden !important;
        max-height: none !important;
        min-height: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        padding: 1.25rem 1rem !important;
        margin: 0 !important;
    }
    
    .leaderboard-content,
    .winners-content {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }
    
    .leaderboard-list,
    .winners-content {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }
    
    .leaderboard-item {
        gap: 0.4rem !important;
        padding: 0.6rem !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }
    
    .leaderboard-rank {
        min-width: 28px !important;
        max-width: 28px !important;
        width: 28px !important;
        font-size: 0.8rem !important;
        flex-shrink: 0 !important;
    }
    
    .leaderboard-name {
        font-size: 0.85rem !important;
        max-width: calc(100% - 120px) !important;
    }
    
    .leaderboard-score {
        font-size: 0.8rem !important;
        flex-shrink: 0 !important;
    }
    
    .winner-row {
        gap: 0.4rem !important;
        padding: 0.6rem !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }
    
    .winner-avatar-small {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        max-width: 32px !important;
        font-size: 0.7rem !important;
        flex-shrink: 0 !important;
    }
    
    .winner-info-small {
        max-width: calc(100% - 100px) !important;
        min-width: 0 !important;
    }
    
    .winner-name-small {
        font-size: 0.8rem !important;
    }
    
    .winner-prize-small {
        font-size: 0.65rem !important;
    }
    
    .winner-value-small {
        font-size: 0.8rem !important;
        flex-shrink: 0 !important;
    }
}

.home-widget-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(33, 150, 243, 0.4) !important;
    transition: all 0.3s ease;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: visible;
    overflow-x: hidden !important;
    min-height: auto;
    max-height: none;
}

.home-widget-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(233, 30, 99, 0.15);
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(233, 30, 99, 0.1);
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    color: #1a1a1a;
}

.widget-icon {
    font-size: 1.5rem;
}

.widget-link {
    color: #E91E63;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.widget-link:hover {
    color: #2196F3;
}

/* Prize Pool Card */
.pool-content {
    min-height: 120px;
}

.pool-stats {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.pool-current {
    font-size: 2rem;
    font-weight: 800;
    color: #E91E63;
}

.pool-target {
    font-size: 1.25rem;
    color: #666;
    font-weight: 600;
}

.pool-progress-bar {
    width: 100%;
    height: 12px;
    background: rgba(233, 30, 99, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.pool-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #E91E63 0%, #2196F3 100%);
    border-radius: 10px;
    transition: width 0.5s ease;
}

.pool-remaining {
    font-size: 0.875rem;
    color: #666;
    font-weight: 600;
}

/* All Prize Pools List */
.all-pools-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.pool-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pool-item.active {
    background: rgba(233, 30, 99, 0.15);
    border-color: rgba(233, 30, 99, 0.3);
}

.pool-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.pool-game {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.pool-prize {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.pool-item .pool-stats {
    margin-bottom: 0.75rem;
}

.pool-item .pool-current {
    font-size: 1.5rem;
}

.pool-item .pool-target {
    font-size: 1rem;
}

.pool-item .pool-progress-bar {
    margin-bottom: 0.5rem;
    height: 8px;
}

.pool-item .pool-remaining {
    font-size: 0.8rem;
}

/* Stats Card */
.stats-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-label {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #E91E63;
}

/* Leaderboard Card */
.leaderboard-content {
    min-height: 200px;
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
}

.leaderboard-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
}

.leaderboard-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(233, 30, 99, 0.05);
    border-radius: 12px;
    transition: all 0.2s ease;
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
    overflow: hidden;
}

.leaderboard-item:hover {
    background: rgba(233, 30, 99, 0.1);
    transform: translateX(4px);
}

.leaderboard-item.is-me {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.15) 0%, rgba(33, 150, 243, 0.15) 100%);
    border: 2px solid rgba(233, 30, 99, 0.3);
    font-weight: 700;
}

.leaderboard-rank {
    font-weight: 700;
    color: #E91E63;
    min-width: 35px !important;
    max-width: 35px !important;
    width: 35px !important;
    font-size: 0.9rem;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
}

.leaderboard-name {
    flex: 1;
    font-weight: 600;
    color: #1a1a1a;
    min-width: 0 !important;
    max-width: 100% !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
}

.leaderboard-score {
    font-weight: 700;
    color: #2196F3;
    font-size: 0.95rem;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
}

/* Winners Card */
.winners-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
}

.winner-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(233, 30, 99, 0.05);
    border-radius: 12px;
    transition: all 0.2s ease;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

.winner-row:hover {
    background: rgba(233, 30, 99, 0.1);
    transform: translateX(4px);
}

.winner-avatar-small {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    max-width: 40px !important;
    border-radius: 50%;
    background: linear-gradient(135deg, #E91E63 0%, #2196F3 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
}

.winner-info-small {
    flex: 1;
    min-width: 0 !important;
    max-width: calc(100% - 90px) !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

.winner-name-small {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
    max-width: 100% !important;
}

.winner-prize-small {
    font-size: 0.75rem;
    color: #666;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
    max-width: 100% !important;
}

.winner-value-small {
    font-weight: 700;
    color: #4CAF50;
    font-size: 0.95rem;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
    min-width: 60px !important;
}

/* Empty States */
.empty-widget {
    text-align: center;
    padding: 2rem 1rem;
    color: #666;
}

.empty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-widget p {
    margin: 0;
    font-size: 0.95rem;
}

.pool-loading {
    text-align: center;
    padding: 2rem;
    color: #666;
    font-size: 0.95rem;
}

/* ============================================
   FREE ENTRY MODAL
   ============================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 2rem;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: rgba(233, 30, 99, 0.1);
    color: #E91E63;
}

.modal-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 0 1.5rem 0;
    background: linear-gradient(135deg, #E91E63 0%, #2196F3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-body {
    color: #1a1a1a;
}

.modal-body p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.modal-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.modal-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.modal-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: 700;
}

.modal-note {
    background: rgba(233, 30, 99, 0.1);
    padding: 1rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    font-size: 0.9rem;
    border-left: 4px solid #E91E63;
}

.btn-modal-cta {
    display: inline-block;
    background: linear-gradient(135deg, #E91E63 0%, #2196F3 100%);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.btn-modal-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(233, 30, 99, 0.4);
}

/* ============================================
   ENTRY STATUS CARD
   ============================================ */
.entry-status-card {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.05) 0%, rgba(33, 150, 243, 0.05) 100%);
    border: 2px solid #E91E63 !important;
}

.entry-status-content {
    text-align: center;
    padding: 1rem 0;
}

.entry-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.entry-status-badge.entered {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
}

.entry-status-badge.not-entered {
    background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
    color: white;
}

.status-icon {
    font-size: 1.3rem;
}

.entry-count {
    margin: 1rem 0;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
}

.entry-count-label {
    font-size: 0.9rem;
    color: #666;
    display: block;
    margin-bottom: 0.25rem;
}

.entry-count-value {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #E91E63 0%, #2196F3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.entry-status-note {
    font-size: 0.9rem;
    color: #666;
    margin: 1rem 0;
}

.btn-entry-now {
    display: inline-block;
    background: linear-gradient(135deg, #E91E63 0%, #2196F3 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.btn-entry-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(233, 30, 99, 0.4);
}

/* ============================================
   DAILY CHECK-IN CARD
   ============================================ */
.checkin-card {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.05) 0%, rgba(255, 87, 34, 0.05) 100%);
    border: 2px solid #FF9800 !important;
}

.checkin-content {
    text-align: center;
    padding: 1rem 0;
}

.streak-display {
    margin-bottom: 1.5rem;
}

.streak-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.streak-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-checkin {
    background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
    width: 100%;
    max-width: 250px;
    margin: 0 auto 1rem;
}

.btn-checkin:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 152, 0, 0.4);
}

.btn-checkin:disabled,
.btn-checkin.claimed {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.checkin-note {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1rem;
}

.checkin-rewards {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: left;
}

.rewards-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff !important;
    margin-bottom: 0.75rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.rewards-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rewards-list li {
    font-size: 0.85rem;
    color: #fff !important;
    padding: 0.4rem 0;
    display: flex;
    justify-content: space-between;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.rewards-list li strong {
    color: #FFD700 !important;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* ============================================
   TOKEN EARNING CARD
   ============================================ */
.token-earning-card {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.05) 0%, rgba(233, 30, 99, 0.05) 100%);
    border: 2px solid #9C27B0 !important;
}

.token-earning-content {
    padding: 1rem 0;
}

.earning-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.earning-option:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(5px);
}

.earning-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.earning-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.earning-title {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 0.95rem;
}

.earning-amount {
    font-size: 0.85rem;
    color: #666;
}

.btn-earn-tokens {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #9C27B0 0%, #E91E63 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(156, 39, 176, 0.3);
}

.btn-earn-tokens:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(156, 39, 176, 0.4);
}

/* ============================================
   NAVIGATION PLAY BUTTON STYLING
   ============================================ */
.home-nav-play {
    background: linear-gradient(135deg, #E91E63 0%, #2196F3 100%) !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3) !important;
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    padding: 0.6rem 1.5rem !important;
    transform: scale(1.05);
}

.home-nav-play:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(233, 30, 99, 0.4) !important;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .countdown-overlay {
        min-width: 240px;
        padding: 1rem;
        bottom: 1rem;
        right: 1rem;
    }
    
    .countdown-blocks {
        gap: 0.5rem;
    }
    
    .countdown-value {
        font-size: 1.25rem;
    }
    
    .countdown-unit {
        font-size: 0.65rem;
    }
    
    .floating-free-entry {
        bottom: 1rem;
        left: 1rem;
        padding: 0.75rem 1.25rem;
    }
}

/* ============================================
   MOBILE LAYOUT - Consolidated Hero Section
   ============================================ */
@media (max-width: 900px) {
    /* Prevent horizontal overflow on mobile */
    body, html {
        overflow-x: hidden !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Ensure all containers use border-box and don't overflow */
    section, div, article, aside, main, header, footer {
        box-sizing: border-box !important;
    }
    
    /* Prevent containers from overflowing */
    .content-section, .content-container, .home-widgets-section, .home-widgets-container,
    .quick-play-section, .quick-play-container, .home-widget-card, .quick-play-card {
        box-sizing: border-box !important;
        max-width: 100% !important;
    }
    
    /* Hero section - mobile layout */
    .hero-full-bleed {
        display: flex !important;
        flex-direction: column !important;
        position: relative;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding: 0 !important;
        padding-top: 0 !important; /* No top padding - let content flow naturally */
        padding-bottom: 0 !important;
        min-height: auto !important;
        max-height: none !important;
        overflow: visible !important;
        z-index: 1;
        box-sizing: border-box !important;
    }
    
    /* Monthly hero container - FORCE column layout on mobile */
    .hero-full-bleed .monthly-hero,
    .monthly-hero,
    section .monthly-hero,
    body .monthly-hero {
        display: flex !important;
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        flex-shrink: 0 !important;
        width: 100% !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        position: relative !important;
    }
    
    /* Ensure all children stack vertically */
    .monthly-hero > * {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Floating entry button - mobile positioning */
    .hero-full-bleed .floating-free-entry {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        display: flex !important;
        margin: 1.5rem auto 2rem auto !important;
        width: fit-content;
        max-width: calc(100% - 2rem);
        justify-content: center;
        animation: none !important;
        z-index: auto !important;
        flex-shrink: 0;
        order: 999 !important; /* Ensure it appears last */
    }
}

@media (max-width: 768px) {
    .hero-full-bleed {
        padding-top: 0 !important; /* No top padding */
    }
}

/* Shimmer animation for play buttons on mobile */
@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-50%) skewX(-20deg);
    }
    100% {
        transform: translateX(200%) translateY(-50%) skewX(-20deg);
    }
}

.btn-play-now::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(233, 30, 99, 0.4),
        transparent
    );
    transform: translateX(-100%) translateY(-50%) skewX(-20deg);
    animation: shimmer 2.5s infinite;
    pointer-events: none;
    z-index: 1;
    display: none; /* Hidden by default, show on mobile */
}

@media (max-width: 480px) {
    .hero-full-bleed {
        padding-top: 0 !important; /* No top padding */
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-subheadline {
        font-size: 1.25rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-play-now {
        width: 100%;
        padding: 1rem 2rem;
    }
    
    /* Enhanced shimmer on mobile - more visible and attractive */
    .btn-play-now::before {
        animation: shimmer 1.8s infinite;
        background: linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.8),
            transparent
        );
    }
    
    .btn-how-it-works {
        width: 100%;
        text-align: center;
    }
    
    .countdown-overlay {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 1rem auto;
        width: calc(100% - 2rem);
        max-width: 400px;
    }
    
    .quick-play-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .home-widgets-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .home-widgets-section {
        padding: 2rem 1rem !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .home-widgets-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }
    
    .home-widget-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 1.5rem !important;
        margin: 0 !important;
    }
    
    .quick-play-section {
        padding: 2rem 1rem !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .quick-play-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }
    
    .quick-play-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 1.5rem !important;
        margin: 0 !important;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 1rem;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .countdown-blocks {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .home-nav-container {
        padding: 0.5rem 1rem;
    }
    
    .home-nav-logo {
        height: 50px;
        max-width: 150px;
    }
}

/* Extra Small Mobile Phones (360px and below) */
@media (max-width: 360px) {
    .home-nav-logo {
        height: 45px;
        max-width: 120px;
    }
    
    .home-nav-container {
        padding: 0.5rem 0.75rem;
        gap: 0.75rem;
    }
    
    .home-token-pill {
        padding: 0.3rem 0.5rem;
        font-size: 0.7rem;
    }
    
    .home-user-toggle {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .hero-headline {
        font-size: 1.75rem;
    }
    
    .hero-subheadline {
        font-size: 1rem;
    }
    
    .btn-play-now {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .home-widgets-section {
        padding: 1.5rem 0.75rem !important;
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
        box-sizing: border-box !important;
    }
    
    .home-widget-card {
        padding: 1.25rem !important;
    }
    
    .quick-play-section {
        padding: 1.5rem 0.75rem !important;
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
        box-sizing: border-box !important;
    }
    
    .quick-play-card {
        padding: 1.5rem !important;
    }
}

/* Very Small Mobile Phones (320px and below - old small phones) */
@media (max-width: 320px) {
    .home-nav-logo {
        height: 40px;
        max-width: 100px;
    }
    
    .home-nav-container {
        padding: 0.5rem;
        gap: 0.5rem;
    }
    
    .home-token-pill {
        padding: 0.25rem 0.4rem;
        font-size: 0.65rem;
    }
    
    .home-user-toggle {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
    
    .hero-headline {
        font-size: 1.5rem;
    }
    
    .hero-subheadline {
        font-size: 0.9rem;
    }
    
    .btn-play-now {
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .home-widgets-section {
        padding: 1rem 0.5rem;
    }
    
    .quick-play-section {
        padding: 1rem 0.5rem;
    }
    
    .quick-play-card {
        padding: 1.5rem;
    }
    
    .quick-play-icon {
        font-size: 2.5rem;
    }
    
    .quick-play-title {
        font-size: 1.25rem;
    }
}

/* Smooth scrolling - standard approach: html scrolls, body doesn't */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: auto; /* HTML scrolls - this is the document scrollbar */
    height: 100%;
    position: relative;
}

/* Body should not scroll - html handles it */
body {
    overflow-x: hidden;
    overflow-y: visible !important; /* Body doesn't scroll - html does */
    height: auto !important;
    min-height: 100vh;
    position: relative;
}

/* Modern, polished scrollbar styling */
html::-webkit-scrollbar {
    width: 10px;
}

html::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

html::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.6) 0%, rgba(33, 150, 243, 0.6) 100%);
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: padding-box;
    transition: background 0.3s ease;
}

html::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.8) 0%, rgba(33, 150, 243, 0.8) 100%);
    background-clip: padding-box;
}

html::-webkit-scrollbar-thumb:active {
    background: linear-gradient(135deg, rgba(233, 30, 99, 1) 0%, rgba(33, 150, 243, 1) 100%);
    background-clip: padding-box;
}

/* Firefox scrollbar - modern thin style */
html {
    scrollbar-width: thin;
    scrollbar-color: rgba(233, 30, 99, 0.6) rgba(255, 255, 255, 0.1);
}

/* Home body - body doesn't scroll, html does */
body.home-body,
.home-body {
    overflow-y: visible !important; /* Body doesn't scroll - html handles it */
    overflow-x: hidden !important;
    height: auto !important; /* Ensure no height constraint */
    min-height: 100vh; /* Ensure minimum height */
}

