/* Welcome Experience Styles */
.welcome-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                url('/images/mystical-background.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
}

.welcome-container {
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    background-color: rgba(25, 20, 33, 0.9);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    overflow: auto;
    position: relative;
    padding: 2.5rem 2rem 3.5rem 2rem; /* Increased bottom padding for skip button */
    color: #fff;
    border: 1px solid rgba(123, 61, 144, 0.3);
}

.welcome-content {
    min-height: 350px; /* Reduced from 400px */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.welcome-step {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.welcome-step.active {
    display: block;
}

.welcome-step h2 {
    color: #ad7cca;
    font-size: 28px;
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.welcome-step p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 2rem;
    color: #e0d0f0;
}

.concern-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 12px;
    margin-bottom: 1.5rem;
}

.concern-btn {
    background-color: rgba(93, 63, 106, 0.6);
    border: 1px solid rgba(173, 124, 202, 0.3);
    border-radius: 10px;
    padding: 12px;
    color: #e0d0f0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.concern-btn i {
    font-size: 24px;
    margin-bottom: 10px;
    color: #ad7cca;
}

.concern-btn span {
    font-size: 16px;
}

.concern-btn:hover {
    background-color: rgba(123, 81, 136, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.welcome-message {
    background-color: rgba(93, 63, 106, 0.4);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 2rem;
}

.concern-feedback {
    font-style: italic;
    color: #ad7cca;
    font-size: 18px;
}

.welcome-message ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.welcome-message ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.welcome-message ul li i {
    color: #ffc857;
    margin-right: 10px;
}

.confidentiality-note {
    font-size: 16px;
    color: #e0d0f0;
    text-align: center;
    margin-top: 1rem;
}

.confidentiality-note i {
    color: #ad7cca;
    margin-right: 5px;
}

.welcome-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.primary-btn {
    background: linear-gradient(135deg, #7b3d90, #5d3fd3);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(123, 61, 144, 0.3);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(123, 61, 144, 0.5);
}

.secondary-btn {
    background-color: transparent;
    color: #e0d0f0;
    border: 1px solid #ad7cca;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background-color: rgba(173, 124, 202, 0.2);
    transform: translateY(-3px);
}

.skip-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(93, 63, 106, 0.4);
    border: 1px solid rgba(123, 61, 144, 0.3);
    color: #e0d0f0;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 20px;
}

.skip-btn:hover {
    background: rgba(123, 61, 144, 0.6);
}

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

/* Mobile adjustments */
@media (max-width: 767px) {
    .welcome-container {
        padding: 1.5rem 1rem 3.5rem 1rem;
        width: 95%;
        max-height: 85vh;
    }
    
    .welcome-content {
        min-height: 300px;
    }
    
    .welcome-step h2 {
        font-size: 22px;
    }
    
    .welcome-step p {
        font-size: 16px;
        margin-bottom: 1.5rem;
    }
    
    .concern-options {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .concern-btn {
        padding: 10px;
    }
    
    .concern-btn i {
        font-size: 20px;
    }
    
    .welcome-buttons {
        flex-direction: column;
    }
    
    .primary-btn, .secondary-btn {
        width: 100%;
    }
}