body {
    background-color: #000;
    color: #fff;
}

h1 {
    color: #00ff7f;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

.card {
    background-color: #111;
    border: 1px solid #00ff7f;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 255, 127, 0.4);
}

.card-title {
    color: #00ff7f;
    font-weight: bold;
}

.card-text {
    color: #ccc;
}

.card-text a {
    color: #00ff7f;
    text-decoration: underline;
}

.text-muted {
    color: #888 !important;
}

.card-img-top {
    max-height: 200px;
    object-fit: cover;
}

/* Modal estilos */
.modal-content {
    background-color: #111;
    color: white;
    border: 1px solid #00ff7f;
    border-radius: 15px;
}

.modal-header {
    border-bottom: 1px solid #00ff7f;
}

.modal-footer {
    border-top: 1px solid #00ff7f;
}

.aspectIndep{
    background: #000;
}

.cursor-pointer {
    cursor: pointer;
    transition: transform 0.15s ease-in-out;
}
.cursor-pointer:hover {
    transform: scale(1.03);
    box-shadow: 0 0.5rem 1rem rgba(0, 255, 127, 0.4);
}