/* What to Watch Page Styles */

.watch-content {
    margin-top: 20px;
}

.watch-description {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 25px;
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.5;
}

.watch-description p {
    margin: 0;
}

.watch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.watch-item {
    background: #111;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.watch-item:hover {
    border-color: #00ffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.1);
}

.watch-header {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333;
}

.watch-title-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.watch-title {
    font-size: 1.3rem;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

.watch-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
}

.watch-year {
    color: #00ffff;
    background: rgba(0, 255, 255, 0.1);
    padding: 3px 10px;
    border-radius: 12px;
    font-weight: bold;
}

.watch-category {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
}

.watch-category i {
    font-size: 0.8rem;
}

.watch-summary {
    color: #aaa;
    line-height: 1.6;
    font-size: 0.95rem;
    flex-grow: 1;
}

.loading-watch {
    text-align: center;
    padding: 40px 20px;
    grid-column: 1 / -1;
}

.loading-watch .loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0, 255, 255, 0.1);
    border-top-color: #00ffff;
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

.loading-watch p {
    color: #888;
    font-size: 0.9rem;
}

/* Filter buttons for watch items (if needed in future) */
.watch-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.watch-filter-btn {
    background: #111;
    border: 1px solid #333;
    color: #888;
    padding: 8px 15px;
    border-radius: 5px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.watch-filter-btn:hover {
    border-color: #00ffff;
    color: #fff;
}

.watch-filter-btn.active {
    border-color: #00ffff;
    background: rgba(0, 255, 255, 0.1);
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .watch-grid {
        grid-template-columns: 1fr;
    }
    
    .watch-item {
        padding: 15px;
    }
    
    .watch-title {
        font-size: 1.2rem;
    }
    
    .watch-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}