body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}
/*
.background {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    background: url('https://www.transparenttextures.com/patterns/stardust.png');
    opacity: 0.2;
}
*/
.welcome-container {
    position: relative;
    z-index: 1;
    max-width: 400px;
    margin: 10vh auto 0 auto;
    background: rgba(255,255,255,0.15);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    padding: 40px 30px;
    text-align: center;
    color: #fff;
}

.welcome-container h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.welcome-container p {
    font-size: 1.2rem;
    margin-bottom: 32px;
}

.explore-btn {
    display: inline-block;
    padding: 12px 32px;
    background: #fff;
    color: #764ba2;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 4px 16px rgba(118, 75, 162, 0.2);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    position: relative; /* Add this for JS movement */
    cursor: pointer;
}

.explore-btn:hover {
    background: #764ba2;
    color: #fff;
    transform: translateY(-2px) scale(1.05);
}