body {
    margin: 0;
    padding: 0;
    background: #05060a;
    color: #f5f7ff;
    font-family: system-ui, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.splash-container {
    text-align: center;
    animation: fadeIn 1.2s ease-out forwards;
}

.banner {
    max-width: 80%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0,0,0,0.6);
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 12px;
    letter-spacing: 1px;
    color: #9aa0b8;
}

.insta {
    color: #4f8cff;
    text-decoration: none;
    font-size: 1rem;
}

.insta:hover {
    text-decoration: underline;
}

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