body {
    margin: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(145deg, #e0e0e0, #d1d1d1);
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #1c1c1c;
    letter-spacing: 0.05em;
    transition: background 0.5s ease;
}

.splash-container {
    text-align: center;
    padding: 40px 60px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    animation: floatIn 1s ease-out forwards;
}

.animated-title {
    font-size: 4.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    background: linear-gradient(90deg, #000, #0077ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s infinite ease-in-out;
}

.teaser-message {
    font-size: 1.4rem;
    color: #444;
    opacity: 0.85;
    animation: fadeUp 1.8s ease-out 0.3s forwards;
    transform: translateY(20px);
}

@keyframes shimmer {
    0% {
        background-position: -500px 0;
    }
    100% {
        background-position: 500px 0;
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatIn {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}