html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}
body {
    min-height: 100vh;
    min-width: 100vw;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #e0e7ff 0%, #f0fdfa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.home-container {
    background: rgba(255,255,255,0.85);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border-radius: 2rem;
    padding: 3.5rem 2.5rem 3rem 2.5rem;
    max-width: 480px;
    width: 100%;
    text-align: center;
    position: relative;
}
.home-container h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}
.home-container p {
    color: #475569;
    font-size: 1.18rem;
    margin-bottom: 2.2rem;
}
.cta-btn {
    display: inline-block;
    background: linear-gradient(90deg, #405189 0%, #8f9cc6 100%);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 4px 16px rgba(37,99,235,0.13);
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    margin-bottom: 1.5rem;
}
.cta-btn:hover {
    background: linear-gradient(90deg, #405189 0%, #8f9cc6 100%);
    transform: translateY(-2px) scale(1.03);
}
.icon-bg {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #405189 60%, #8f9cc6 100%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(37,99,235,0.18);
}
.icon-bg i {
    color: #fff;
    font-size: 2.5rem;
}
.bubbles {
    position: fixed;
    z-index: 0;
    left: 0; top: 0; width: 100vw; height: 100vh;
    pointer-events: none;
}
.bubble {
    position: absolute;
    border-radius: 50%;
    opacity: 0.18;
    background: linear-gradient(135deg, #405189 60%, #8f9cc6 100%);
    animation: float 12s infinite ease-in-out;
}
.bubble1 { width: 120px; height: 120px; left: 10vw; top: 70vh; animation-delay: 0s; }
.bubble2 { width: 80px; height: 80px; left: 80vw; top: 20vh; animation-delay: 2s; }
.bubble3 { width: 60px; height: 60px; left: 60vw; top: 80vh; animation-delay: 4s; }
.bubble4 { width: 100px; height: 100px; left: 20vw; top: 10vh; animation-delay: 6s; }
.bubble5 { width: 50px; height: 50px; left: 70vw; top: 60vh; animation-delay: 8s; }
@keyframes float {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-40px) scale(1.08); }
    100% { transform: translateY(0) scale(1); }
}
@media (max-width: 600px) {
    .home-container { padding: 2rem 0.5rem; }
    .home-container h1 { font-size: 2rem; }
    .icon-bg { width: 60px; height: 60px; top: -30px; }
    .icon-bg i { font-size: 2rem; }
}
