/* Welcome Modal Premium Styles */
.welcome-modal {
    max-width: 600px !important;
    background: var(--bg-panel) !important;
    border: 1px solid var(--border-light) !important;
    box-shadow: var(--shadow-heavy) !important;
}

.welcome-hero {
    text-align: center;
    padding: 40px 20px 30px;
}

.vexy-icon {
    margin-bottom: 20px;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.welcome-title {
    font-size: 2.5rem !important;
    font-weight: 900 !important;
    margin-bottom: 10px !important;
    background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700) !important;
    background-size: 200% auto !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.welcome-tagline {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 0;
}

.welcome-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 30px 20px;
}

.feature-card {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.feature-icon {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.85rem;
    color: #aaa;
    line-height: 1.4;
}

.btn-welcome-cta {
    width: calc(100% - 40px);
    margin: 0 20px 30px;
    padding: 18px;
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    color: #000;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.btn-welcome-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.6);
}

/* Confirmation Modal Styles */
.confirm-modal {
    max-width: 450px !important;
    padding: 1rem !important;
}