* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    height: 100vh;
    background: linear-gradient(135deg, #0b1f3a, #123d6b);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: white;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.05), transparent 70%);
    z-index: 0;
}

.container {
    text-align: center;
    z-index: 1;
    animation: fadeIn 1.5s ease-in-out;
}

.logo {
    max-width: 420px;
    width: 90%;
    margin-bottom: 40px;
    animation: float 4s ease-in-out infinite;
}

h1 {
    font-size: 42px;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 15px;
}

p {
    font-size: 18px;
    font-weight: 300;
    opacity: 0.8;
}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(20px);}
    to {opacity: 1; transform: translateY(0);}
}

@keyframes float {
    0% {transform: translateY(0px);}
    50% {transform: translateY(-10px);}
    100% {transform: translateY(0px);}
}
