/* ============================================
   PROFESSIONAL GAME LOBBY - UNO WEB GAME
   ============================================ */

/* Start Screen - Full Page Layout */
#start-screen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    /* background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%); */ /* Removido para permitir fundo dinâmico */
    position: relative;
    overflow: hidden;
}

/* Animated Background Effects */
#start-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(72, 187, 120, 0.1) 0%, transparent 50%);
    animation: bgPulse 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes bgPulse {
    0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.8; transform: scale(1.1) rotate(5deg); }
}

/* Floating Particles */
#start-screen::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.15), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(255, 255, 255, 0.15), transparent),
        radial-gradient(2px 2px at 90% 60%, rgba(255, 255, 255, 0.1), transparent);
    background-size: 200% 200%;
    animation: sparkle 15s linear infinite;
    pointer-events: none;
}

@keyframes sparkle {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

/* Main Lobby Container */
.game-lobby-container {
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 1;
    animation: fadeInScale 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* ============================================
   LOBBY HEADER - Logo and Title
   ============================================ */

.lobby-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: slideDown 0.8s ease 0.2s both;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.game-logo {
    display: inline-block;
    position: relative;
}

.logo-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(102, 126, 234, 0.5));
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.game-title {
    font-size: 4rem;
    font-weight: 900;
    color: #E0E0E0; /* Cor mais clara para garantir visibilidade */
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(102, 126, 234, 0.5);
    position: relative;
}

.game-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #667eea, #764ba2, transparent);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.8);
}

.game-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
}

/* ============================================
   PLAYER INFO BADGE
   ============================================ */

.player-info-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border: 2px solid rgba(102, 126, 234, 0.4);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    margin: 0 auto 3rem;
    max-width: 500px;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: slideUp 0.8s ease 0.4s both;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 4px 10px rgba(102, 126, 234, 0.5));
}

.badge-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.badge-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8); /* Cor mais clara para garantir visibilidade */
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.badge-id {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 
        0 6px 20px rgba(102, 126, 234, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    display: inline-block;
}

/* ============================================
   ACTION CARDS GRID
   ============================================ */

.action-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    animation: fadeIn 0.8s ease 0.6s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.action-card {
    background: linear-gradient(145deg, rgba(30, 30, 46, 0.95), rgba(22, 33, 62, 0.98));
    backdrop-filter: blur(30px);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2, #667eea);
    background-size: 200% 100%;
    animation: borderFlow 3s linear infinite;
}

@keyframes borderFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.action-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 30px 80px rgba(102, 126, 234, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(102, 126, 234, 0.6);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 8px 20px rgba(102, 126, 234, 0.5));
}

.card-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #FFFFFF !important; /* Cor branca para destaque */
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 2px 10px rgba(0, 0, 0, 0.9); /* Sombra forte para destaque */
}

.card-description {
    font-size: 1rem;
    color: #FFFFFF !important; /* Cor branca para destaque */
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6), 0 2px 8px rgba(0, 0, 0, 0.8); /* Sombra forte para destaque */
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

/* ============================================
   MODERN INPUT GROUPS
   ============================================ */

.input-group-modern {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 16px;
    padding: 0.75rem 1.25rem;
    transition: all 0.3s ease;
}

.input-group-modern:focus-within {
    background: rgba(255, 255, 255, 0.08);
    border-color: #667eea;
    box-shadow: 
        0 0 0 4px rgba(102, 126, 234, 0.15),
        0 8px 30px rgba(102, 126, 234, 0.3);
    transform: translateY(-2px);
}

.input-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px rgba(102, 126, 234, 0.5));
}

.modern-input,
.modern-select {
    flex: 1;
    background: transparent;
    border: none;
    color: #E0E0E0; /* Cor mais clara para garantir visibilidade */
    font-size: 1rem;
    font-weight: 500;
    outline: none;
    padding: 0.5rem 0;
}

.modern-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.modern-select {
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="rgba(102,126,234,1)" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 1.5rem;
    padding-right: 2rem;
}

.modern-select option {
    background: #1a1a2e;
    color: #E0E0E0; /* Cor mais clara para garantir visibilidade */
}

/* ============================================
   ACTION BUTTONS
   ============================================ */

.action-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.25rem 2rem;
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.action-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.action-button:hover::before {
    width: 400px;
    height: 400px;
}

.primary-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 
        0 10px 30px rgba(102, 126, 234, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 40px rgba(102, 126, 234, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.secondary-button {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    box-shadow: 
        0 10px 30px rgba(72, 187, 120, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.secondary-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 40px rgba(72, 187, 120, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.action-button:active {
    transform: translateY(-1px) scale(0.98);
}

.button-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.button-text {
    position: relative;
    z-index: 1;
}

/* ============================================
   QUICK ACCESS SECTION
   ============================================ */

.quick-access-section {
    animation: fadeIn 0.8s ease 0.8s both;
}

.section-divider {
    position: relative;
    text-align: center;
    margin: 3rem 0 2rem;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(102, 126, 234, 0.5), 
        rgba(118, 75, 162, 0.5), 
        transparent);
}

.divider-text {
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    color: rgba(255, 255, 255, 0.8); /* Cor mais clara para garantir visibilidade */
    padding: 0 2rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.quick-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 18px;
    padding: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.quick-link:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border-color: rgba(102, 126, 234, 0.6);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.link-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 12px rgba(102, 126, 234, 0.5));
}

.link-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.link-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #E0E0E0; /* Cor mais clara para garantir visibilidade */
}

.link-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8); /* Cor mais clara para garantir visibilidade */
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 992px) {
    .action-cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .game-title {
        font-size: 3rem;
        letter-spacing: 0.3rem;
    }
    
    .logo-icon {
        font-size: 4rem;
    }
    
    .action-card {
        padding: 2rem;
    }
    
    .card-title {
        font-size: 1.5rem;
    }
    
    .player-info-badge {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    #start-screen {
        padding: 1rem;
    }
    
    .game-title {
        font-size: 2.5rem;
        letter-spacing: 0.2rem;
    }
    
    .logo-icon {
        font-size: 3rem;
    }
    
    .action-cards-grid {
        gap: 1.5rem;
    }
    
    .action-card {
        padding: 1.5rem;
    }
    
    .quick-links {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   LOADING STATES
   ============================================ */

.action-button.loading {
    pointer-events: none;
    opacity: 0.7;
}

.action-button.loading::after {
    content: '';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.2rem;
    height: 1.2rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: buttonSpin 0.8s linear infinite;
}

@keyframes buttonSpin {
    to { transform: translateY(-50%) rotate(360deg); }
}



/* --- Estilos para a Seção de Últimos Ganhadores --- */
.latest-winners-section {
    margin-top: 30px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.8s ease 1s both;
}

.winners-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 300px; /* Limitar altura para visualização */
    overflow-y: auto;
    padding-right: 10px; /* Espaço para a barra de rolagem */
}

.winner-item {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 10px 15px;
    border-radius: 8px;
    border-left: 5px solid #ffc107; /* Cor de destaque para o vencedor */
    transition: background-color 0.3s, transform 0.3s;
}

.winner-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.winner-profile-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid #17a2b8;
}

.winner-info {
    display: flex;
    flex-direction: column;
}

.winner-name {
    font-weight: bold;
    color: #f8f9fa; /* Branco */
    font-size: 1.1rem;
}

.winner-date-time {
    font-size: 0.85rem;
    color: #adb5bd; /* Cinza claro */
    margin-top: 2px;
}

.no-winners-message {
    text-align: center;
    color: #adb5bd;
    font-style: italic;
    padding: 20px;
}

/* ============================================
   SEÇÃO DE ÚLTIMOS GANHADORES
   ============================================ */

.latest-winners-section {
    margin-top: 50px;
    padding: 25px;
    background: linear-gradient(145deg, rgba(30, 30, 46, 0.95), rgba(22, 33, 62, 0.98));
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.latest-winners-section .section-divider {
    margin-bottom: 25px;
}

.latest-winners-section .section-divider .divider-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 0 15px #667eea;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.winner-item {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: background 0.3s ease, transform 0.3s ease;
    border-left: 5px solid #ffc107; /* Destaque de vencedor */
}

.winner-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.winner-profile-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 20px;
    border: 4px solid #ffc107; 
    object-fit: cover;
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.5);
}

.winner-info {
    display: flex;
    flex-direction: column;
    color: #fff;
    flex-grow: 1;
}

.winner-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffc107; /* Cor de destaque para o nome */
    margin-bottom: 5px;
}

.winner-name i {
    color: #ffc107;
    margin-right: 8px;
    font-size: 1.3rem;
}

.winner-win-count {
    font-size: 1rem;
    color: #17a2b8; /* Cor para a contagem de vitórias */
    margin-bottom: 5px;
    font-weight: 500;
}

.winner-win-count i {
    color: #17a2b8;
    margin-right: 8px;
}

.winner-date-time {
    font-size: 0.9rem;
    color: #adb5bd; /* Cor para a data */
}

.winner-date-time i {
    color: #adb5bd;
    margin-right: 8px;
}

/* Responsividade */
@media (max-width: 768px) {
    .latest-winners-section {
        margin-top: 30px;
        padding: 15px;
    }
    
    .winner-profile-photo {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }
    
    .winner-name {
        font-size: 1.1rem;
    }
    
    .winner-win-count, .winner-date-time {
        font-size: 0.85rem;
    }
}

/* ============================================
   HOW TO PLAY MODAL STYLES
   ============================================ */

.modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #1e2a4a 100%);
    color: #f8f9fa;
    border: 1px solid #343a40;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.modal-header {
    border-bottom: 1px solid #343a40;
    background-color: #1a1a2e;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.modal-title {
    color: #667eea;
    font-weight: 700;
}

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

.how-to-play-card {
    border: 1px solid rgba(102, 126, 234, 0.3);
    background-color: rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
    padding: 15px;
}

.how-to-play-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.how-to-play-card .card-title {
    color: #667eea;
}

.how-to-play-card .card-text {
    color: #ccc;
}

.how-to-play-card img {
    border-radius: 5px;
    border: 1px solid #667eea;
}

/* Responsividade para o modal */
@media (max-width: 768px) {
    .modal-dialog {
        margin: 0.5rem;
    }
}

/* Aprimoramento do Modal Como Jogar */
.how-to-play-card {
    border: 1px solid rgba(102, 126, 234, 0.5);
    background: linear-gradient(145deg, rgba(30, 30, 46, 0.9), rgba(22, 33, 62, 0.95));
    transition: all 0.4s ease;
    border-radius: 15px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.how-to-play-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.5);
    border-color: #667eea;
}

.how-to-play-card .card-title {
    color: #ffc107; /* Amarelo para destaque */
    font-size: 1.2rem;
    margin-top: 10px;
}

.how-to-play-card .card-text {
    color: #e0e0e0;
    font-size: 0.95rem;
}

.icon-wrapper {
    position: relative;
    display: inline-block;
}

.how-to-play-icon {
    color: #667eea; /* Cor principal para ícones */
    filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.7));
    transition: color 0.3s ease;
}

.how-to-play-card:hover .how-to-play-icon {
    color: #ffc107; /* Mudar cor no hover */
}

.how-to-play-image {
    max-height: 120px !important;
    width: auto;
    border-radius: 8px;
    border: 3px solid #667eea;
    box-shadow: 0 0 15px rgba(102, 126, 234, 0.5);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #dc3545; /* Cor de destaque (vermelho UNO) */
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* Modal Header/Footer */
.modal-header {
    background-color: #0f0c29;
    border-bottom: 3px solid #667eea;
}

.modal-title i {
    color: #ffc107;
    margin-right: 10px;
}

/* Garantir que o corpo do modal use a cor de fundo do modal-content */
.modal-body {
    background-color: transparent !important; /* Para garantir que o gradiente do modal-content apareça */
}

/* Forçar cor de fundo escura para modais que não estão usando o estilo profissional */
.modal-content {
    background-color: #1a1a2e !important;
}
