/* Single Show Page Styles */

.show-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.show-poster {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.show-poster:hover {
    transform: scale(1.02);
}

.status-badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.watch-status-dropdown {
    border-radius: 25px;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid;
    min-width: 180px;
}

.watch-status-dropdown:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.dropdown-menu {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: none;
    padding: 0.5rem 0;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    transform: translateX(5px);
}

.dropdown-item.text-danger:hover {
    background-color: #f8d7da;
}

.cast-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.cast-card:hover {
    transform: translateY(-5px);
}

.cast-photo {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    border: 3px solid #f8f9fa;
    margin-bottom: 0.5rem;
    background: #fff;
}

.info-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
}

.rating-display {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    color: #333;
    font-weight: bold;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.show-poster-landscape {
    width: 100px;
    min-width: 100px;
    aspect-ratio: 16/9;
    background: #f6f7fb;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 0.7rem;
    margin-right: 1rem;
}
.show-poster-landscape img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.platform-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0.25rem;
    background: #f8f9fa;
    border-radius: 20px;
    text-decoration: none;
    color: #495057;
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
}

.platform-link:hover {
    background: #007bff;
    color: white;
    transform: translateY(-2px);
}

/* Alert styles */
.alert {
    border-radius: 10px;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .show-hero {
        padding: 2rem 0;
    }
    
    .watch-status-dropdown {
        min-width: 160px;
        padding: 0.6rem 1.2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cast-photo {
        width: 60px;
        height: 60px;
    }
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, #ffe066, #ffd700);
    color: #333;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 20px;
    padding: 0.25rem 0.75rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    margin-left: 0.25rem;
    margin-right: 0.25rem;
    line-height: 1.2;
}
.rating-badge i {
    color: #ffc107;
    font-size: 1.1em;
    margin-right: 0.2em;
}
.rating-badge small {
    font-weight: 400;
    color: #888;
    margin-left: 0.3em;
}

@media (max-width: 600px) {
    .rating-badge {
        font-size: 0.95rem;
        padding: 0.18rem 0.5rem;
    }
}

.rating-badge-lg, .watch-status-dropdown-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    padding: 0.55rem 1.5rem;
    border-radius: 2rem;
    min-width: 160px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: box-shadow 0.2s;
    height: 48px;
}
.rating-badge-lg {
    background: linear-gradient(45deg, #ffe066 60%, #ffd700 100%);
    color: #333;
    border: none;
    margin-right: 0.5rem;
}
.rating-badge-lg i {
    color: #ffc107;
    font-size: 1.3em;
    margin-right: 0.5em;
}
.rating-badge-lg small {
    font-weight: 400;
    color: #888;
    margin-left: 0.3em;
}
.watch-status-dropdown-lg {
    background: #fff;
    border: 2px solid #eee;
    color: #333;
    margin-left: 0.5rem;
}

/* Active state colors for watch status dropdown */
.watch-status-dropdown-lg[data-status] {
    --status-color: #6c757d;
    --status-hover: #5a6268;
    background: var(--status-color) !important;
    border-color: var(--status-color) !important;
    color: white !important;
}

.watch-status-dropdown-lg[data-status="watching"] {
    --status-color: #28a745;
    --status-hover: #218838;
}

.watch-status-dropdown-lg[data-status="watched"] {
    --status-color: #17a2b8;
    --status-hover: #138496;
}

.watch-status-dropdown-lg[data-status="want_to_watch"] {
    --status-color: #dc3545;
    --status-hover: #c82333;
}

.watch-status-dropdown-lg[data-status="dropped"] {
    --status-color: #6c757d;
    --status-hover: #5a6268;
}

.watch-status-dropdown-lg[data-status]:hover,
.watch-status-dropdown-lg[data-status]:focus,
.watch-status-dropdown-lg[data-status]:active,
.watch-status-dropdown-lg[data-status].active {
    background: var(--status-hover) !important;
    border-color: var(--status-hover) !important;
    color: white !important;
}

.watch-status-dropdown-lg:focus, .watch-status-dropdown-lg:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.13);
    border-color: #ffd700;
}

@media (max-width: 600px) {
    .rating-badge-lg, .watch-status-dropdown-lg {
        font-size: 1.05rem;
        padding: 0.32rem 0.8rem;
        min-width: 110px;
        height: 38px;
    }
}

.show-hero .badge.bg-secondary {
    font-size: 0.95rem;
    padding: 0.5em 1.1em;
    border-radius: 1.2em;
    font-weight: 600;
    letter-spacing: 0.01em;
    margin-bottom: 0.2em;
}

@media (max-width: 600px) {
    .show-hero .badge.bg-secondary {
        font-size: 0.98rem;
        padding: 0.38em 0.8em;
    }
}

.stat-item {
    background: linear-gradient(135deg, #f6f7fb 60%, #e9eafc 100%);
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(127,83,172,0.07);
    padding: 1.2rem 1rem 1rem 1rem;
    text-align: center;
    transition: box-shadow 0.18s, transform 0.18s;
    border-left: 5px solid #7f53ac;
    position: relative;
}
.stat-item:hover {
    box-shadow: 0 6px 24px rgba(101,124,237,0.13);
    transform: translateY(-2px) scale(1.03);
    z-index: 2;
}
.stat-number {
    font-size: 2.1rem;
    font-weight: 700;
    color: #7f53ac;
    margin-bottom: 0.2rem;
    letter-spacing: 0.01em;
}
.stat-label {
    font-size: 1.05rem;
    color: #888ab0;
    font-weight: 500;
    letter-spacing: 0.01em;
    margin-top: 0.2rem;
}
@media (max-width: 768px) {
    .stat-item {
        padding: 0.8rem 0.5rem 0.7rem 0.7rem;
        border-radius: 0.7rem;
    }
    .stat-number {
        font-size: 1.3rem;
    }
    .stat-label {
        font-size: 0.95rem;
    }
} 