/* Tonight's Picks - Original Design with Enhanced Features */

/* 1. Restore original layout structure */
.tonight-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 4rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* 2. Enhanced time selector - modern segmented control */
.time-selector {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 4px;
    gap: 4px;
}

.time-btn {
    padding: 0.75rem 1.75rem;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
    min-height: 44px;
}

.time-btn:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
}

.time-btn.active {
    background: rgba(212, 175, 55, 0.25);
    color: #d4af37;
    font-weight: 700;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.15);
}

/* 3. Quick filters - enhanced pill chips */
.quick-filters-section {
    padding: 2rem 0;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-filters-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.5rem 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.quick-filters-scroll::-webkit-scrollbar {
    display: none;
}

.quick-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
    min-height: 44px;
    flex: 0 0 auto;
}

.quick-filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.quick-filter-btn.active {
    background: rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
    color: #d4af37;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.15);
}

/* 4. Featured section */
.featured-section {
    padding: 4rem 0;
}

.featured-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

/* 5. Enhanced picks grid */
.picks-section {
    padding: 4rem 0;
}

.picks-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.picks-list-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
}

#picksCount {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

.picks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* 6. Category sections - restore original design */
.picks-category {
    margin-bottom: 3rem;
}

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

.category-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.category-title svg {
    color: #d4af37;
    width: 24px;
    height: 24px;
}

.category-title h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.view-all-link {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.view-all-link:hover {
    color: #f4e4bc;
    transform: translateX(2px);
}

/* 7. Enhanced venue cards - consistent with original */
.venue-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.venue-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 175, 55, 0.25);
}

.venue-card-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.venue-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.venue-card:hover .venue-card-image {
    transform: scale(1.05);
}

.venue-card-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.venue-rating {
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.open-now-badge {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.venue-card-content {
    padding: 1.5rem;
}

.venue-card-header {
    margin-bottom: 1rem;
}

.venue-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.venue-card-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.venue-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.venue-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.venue-card-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.venue-card-actions {
    display: flex;
    gap: 1rem;
}

.venue-card-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.venue-card-btn.primary {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(244, 228, 188, 0.2) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #d4af37;
}

.venue-card-btn.primary:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(244, 228, 188, 0.3) 100%);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-1px);
}

.venue-card-btn.secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
}

.venue-card-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

/* 8. Friends activity section - enhanced */
.friends-activity-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.activity-feed {
    display: grid;
    gap: 1.5rem;
}

.activity-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    transition: all 0.2s ease;
}

.activity-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}

.activity-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(244, 228, 188, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-weight: 700;
    flex-shrink: 0;
}

.activity-content {
    flex: 1;
}

.activity-user {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.activity-venue {
    color: #d4af37;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.activity-time {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

/* 9. Mobile responsiveness */
@media (max-width: 768px) {
    .tonight-hero {
        padding: 2rem 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .time-selector {
        width: 100%;
        justify-content: center;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .time-selector::-webkit-scrollbar {
        display: none;
    }
    
    .quick-filters-scroll {
        justify-content: flex-start;
    }
    
    .picks-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .venue-card-image-container {
        height: 160px;
    }
    
    .venue-card-content {
        padding: 1rem;
    }
    
    .venue-card-actions {
        flex-direction: column;
    }
    
    .activity-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* 10. Remove any conflicting styles */
.hero-section,
.filters-container,
.main-content .container {
    max-width: none;
    margin: 0;
    padding: 0;
}