/* assets/css/welcome-modal.css */

.welcome-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.welcome-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.welcome-modal {
    background: linear-gradient(135deg, #1a2332 0%, #2a3441 100%);
    border-radius: 20px;
    max-width: 400px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transform: scale(0.8) translateY(50px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.welcome-modal-overlay.show .welcome-modal {
    transform: scale(1) translateY(0);
}

.welcome-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.welcome-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.welcome-modal-header {
    text-align: center;
    padding: 25px 25px 10px;
    color: white;
}

.welcome-modal-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.welcome-modal-subtitle {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 20px;
}

.welcome-gift-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF9800 0%, #FFC107 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    box-shadow: 0 10px 30px rgba(255, 152, 0, 0.3);
    animation: gift-pulse 2s infinite;
}

@keyframes gift-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.welcome-modal-content {
    padding: 0 25px 25px;
    text-align: center;
}

.welcome-message {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.welcome-bonus-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 8px;
}

.bonus-description {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 15px;
}

.bonus-highlight {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    border-radius: 12px;
    padding: 15px;
    margin: 15px 0;
}

.bonus-highlight-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.bonus-highlight-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.welcome-claim-button {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    border: none;
    color: white;
    font-size: 16px;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 12px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.welcome-claim-button:hover {
    background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.welcome-claim-button:active {
    transform: translateY(0);
}

/* Efeitos de partículas (opcional) */
.welcome-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(76, 175, 80, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 20%, rgba(244, 67, 54, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Responsive */
@media (max-width: 480px) {
    .welcome-modal {
        margin: 20px;
        width: calc(100% - 40px);
    }
    
    .welcome-modal-header {
        padding: 20px 20px 10px;
    }
    
    .welcome-modal-content {
        padding: 0 20px 20px;
    }
    
    .welcome-gift-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .welcome-modal-title {
        font-size: 18px;
    }
    
    .welcome-message {
        font-size: 16px;
    }
    
    .welcome-claim-button {
        font-size: 14px;
        padding: 12px 24px;
    }
}