body {
    background: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.card-header {
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
    padding: 1.5rem;
}

.card-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
}

.form-control {
    border-radius: 8px;
    padding: 0.75rem;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(78, 115, 223, 0.25);
    border-color: #4e73df;
}

.btn-primary {
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
    border: none;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 115, 223, 0.3);
}

.content-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
}

.content-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.content-info {
    color: #6c757d;
    font-size: 0.9rem;
}

.provider-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin: 0.25rem;
    background: #e9ecef;
    color: #495057;
}

.network-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin: 0.25rem;
    background: #4e73df;
    color: white;
}

/* Estilos do Poster e Overlay */
.poster-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.poster-container img {
    transition: transform 0.3s ease;
}

.poster-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.poster-container:hover .poster-overlay {
    opacity: 1;
}

.poster-container:hover img {
    transform: scale(1.05);
}

.view-details {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 2px solid white;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.5);
}

/* Estilos do Modal */
.content-details-modal .swal2-popup {
    padding: 2rem;
}

.content-details-modal .swal2-title {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.modal-content-details {
    text-align: left;
}

.modal-content-details img {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.modal-content-details .badge {
    font-size: 1rem;
    padding: 0.5rem 1rem;
}

@media (max-width: 768px) {
    .card-header h2 {
        font-size: 1.5rem;
    }
    
    .content-title {
        font-size: 1.2rem;
    }
    
    .btn-primary {
        width: 100%;
    }

    .modal-content-details .col-md-4 {
        margin-bottom: 1.5rem;
    }
} 