/* Home Section Styles */
#home-section {
    margin-top: -3rem; /* Pull up closer to nav */
}
.hero-slider-wrapper {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
}

.slider-container {
    width: 100% !important;
    max-width: 100% !important;
}

.slider-slide {
    width: 100% !important;
    height: 500px !important; /* Adjust height as needed */
}

.slide-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* Fix badge to show icons properly */
.slide-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

.slide-badge i {
    font-size: 1.2em !important;
}
.hero-slider-wrapper {
    margin-bottom: 3rem;
}

/* When in home section, hide the margin */
#home-section .hero-slider-section {
    margin-top: 0;
}

/* Game Category Cards */
.game-category-card {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.game-category-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-category-card:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.game-category-card:hover::before {
    opacity: 1;
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #FFD700;
    position: relative;
    z-index: 1;
}

.wheel-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(168, 85, 247, 0.1));
    color: #8B5CF6;
}

.instant-icon {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(251, 191, 36, 0.1));
    color: #F59E0B;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.category-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.category-stats {
    margin-bottom: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD700;
    display: block;
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.category-cta {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    width: 100%;
}

.category-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

/* Winners Preview */
.home-winners-section {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-radius: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.winner-preview-card {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.winner-preview-card:hover {
    background: rgba(255, 215, 0, 0.08);
    transform: translateY(-3px);
}

.winner-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #000;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
}

.winner-name {
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.winner-prize {
    color: #FFD700;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.winner-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}
