.bg-filter {
    background-color: #1c1c1c;
}

#btnVerMas {
    display: none;
}

.card-body {
    background-color: #1c1c1c;
    padding: 1px;
    height: 15%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.fixed-card {
    width: 1200px;
    height: 1200px;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.header {
    text-align: center;
    padding: 20px;
    background-color: #161616;
    color: white;
    border-color: #EDB115;
  }

.mt-200 {
    margin-top: 200px !important;
}

.mb-10 {
    margin-bottom: 6rem !important;
}

.text-gold {
    color: #E3B25A !important;
}

.artisticTalent-card {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.modal-dialog {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.btn-close-white {
    filter: invert(1);
}

.artisticTalents-container {
    padding-left: 40px;
}

.dropdown-menu {
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    background-color: #161616;
    color: white;
}

.option_dropdown {
    color: white !important
}

.card-img-container {
    height: 85%;
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #121212;
}

.card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.text-truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Estilos para modal - URLs y texto largo */
.modal-body p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.modal-body span {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: pre-wrap;
}

.artisticTalent-card:hover .fixed-card {
    box-shadow: 0 0 10px rgba(227, 178, 90, 0.5);
    transition: box-shadow 0.3s ease;
}

/* Responsividad para cards cuadradas */
@media (max-width: 1200px) {
    .fixed-card {
        width: 900px;
        height: 900px;
    }
}

@media (max-width: 992px) {
    .fixed-card {
        width: 700px;
        height: 700px;
    }
}

@media (max-width: 768px) {
    .fixed-card {
        width: 500px;
        height: 500px;
    }
    
    .artisticTalent-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .fixed-card {
        width: 350px;
        height: 350px;
    }
}