.welcome-body {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(120deg, #6366f1 0%, #60a5fa 50%, #fbbf24 100%);
    color: #222;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome-container {
    background: rgba(255,255,255,0.97);
    box-shadow: 0 12px 48px rgba(60,72,100,0.18);
    border-radius: 36px;
    padding: 24px 32px;
    max-width: 700px;
    width: 98vw;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1.2s cubic-bezier(.39,.575,.56,1) both;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(60px) scale(0.98); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.welcome-container::before, .welcome-container::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}
.welcome-container::before {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, #6366f1 0%, #60a5fa 80%, transparent 100%);
    top: -120px;
    left: -120px;
    opacity: 0.18;
}
.welcome-container::after {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, #fbbf24 0%, #fbbf24cc 80%, transparent 100%);
    bottom: -80px;
    right: -80px;
    opacity: 0.13;
}

.welcome-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.welcome-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
    gap: 0.75rem;
}

.welcome-title {
    font-size: 2.56rem;
    font-weight: bold;
    line-height: 1.01;
    font-family: 'Noto Sans', 'Montserrat', sans-serif;
    color: #141414;
    margin: 0;
}

.welcome-subtitle {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.15px;
    text-align: center;
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
}

.welcome-desc {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.5px;
    text-align: center;
    font-family: 'Roboto', 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
}

.welcome-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 6px 16px;
    border-radius: 8px;
    background: #1E2533;
    box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.14),0px 2px 1px 0px rgba(0,0,0,0.12),0px 1px 3px 0px rgba(0,0,0,0.20);
    color: #fff;
    font-weight: 500;
    margin-top: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.2s, transform 0.18s, box-shadow 0.2s;
}

.welcome-button:hover {
    background: #232b3a;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 32px rgba(60,72,100,0.18);
}

@media (max-width: 900px) {
    .welcome-container {
        padding: 2.2rem 0.7rem;
        max-width: 99vw;
    }
    .welcome-title {
        font-size: 2.1rem;
    }
}
