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

html, body {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

body {
    background: linear-gradient(20deg, #FF463E 10%, #FD5740 25%, #F4C54A 80%, #F2DF4C 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: -apple-system, 'Segoe UI', Roboto, Oxygen, 'Arial', sans-serif;
}

.logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    display: block;
    animation: bounce 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    will-change: transform;
}

@keyframes bounce {
    0%, 85% {
        transform: scale(1);
    }
    90% {
        transform: scale(1.1);
    }
    95% {
        transform: scale(0.995);
    }
    100% {
        transform: scale(1);
    }
}

.launching-text {
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: lowercase;
    white-space: nowrap;
    opacity: 0;
    animation: fadeUp 2s ease-out 0.3s forwards;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}