/* Styles spécifiques à index.html */

/* Streaming Container */
.streaming-container {
    max-width: 1400px;
    width: 100%;
    padding: 0;
    position: relative;
    z-index: 1;
}

/* Category Tabs - Intégrés au header */
.category-tabs {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.category-tab {
    padding: 10px 24px;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid var(--auth-primary);
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(79, 157, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-tab:hover {
    background: rgba(15, 23, 42, 0.8);
    color: rgba(255, 255, 255, 0.9);
}

.category-tab.active {
    background: #4f9dff;
    color: #ffffff;
    border-color: #4f9dff;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 0;
    margin-bottom: 0;
}

.content-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: none;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(79, 157, 255, 0.3);
    border-color: transparent;
}

.content-thumbnail {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.8);
    border-radius: 16px 16px 0 0;
}

.content-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px 16px 0 0;
}

.content-thumbnail-placeholder {
    width: 100%;
    height: 400px;
    background: rgba(79, 157, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(79, 157, 255, 0.5);
}

.content-thumbnail-placeholder svg {
    width: 80px;
    height: 80px;
}

.content-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
}

.content-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.content-seasons-count {
    display: inline-block;
    background: rgba(79, 157, 255, 0.2);
    color: #4f9dff;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}

.content-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.content-year {
    display: inline-block;
    background: rgba(79, 157, 255, 0.2);
    color: #4f9dff;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}

.content-genre {
    display: inline-block;
    background: rgba(249, 115, 22, 0.2);
    color: #f97316;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}

.content-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin-top: 8px;
}

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

.empty-state svg {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-state p {
    font-size: 18px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 0;
    }
} 