body {
    background-color: #0a0a0a;
    color: #ffffff;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    margin: 0;
    text-align: center;
    padding: 20px;
}

.app-wrapper {
    opacity: 0;
    transition: opacity 0.5s ease-out;
}

.app-icon {
    width: 150px;
    height: auto;
    margin-bottom: 10px;
    border-radius: 20%;
    margin-bottom: 6px;
}

.app-label {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #dddddd;
    margin-bottom: 30px;
}

.app-icon, .app-label {
    opacity: 0;
}

.app-icon.loaded, .app-label.loaded {
    animation: fadeUp 0.6s ease-out forwards;
}

.app-label.loaded {
    animation-delay: 0.2s;
}

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

.app-icon, .app-label {
    opacity: 0;
    animation: fadeUp 0.6s ease-out forwards;
}

.app-label {
    animation-delay: 0.2s; /* Label fades in slightly after the icon */
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

p {
    font-size: 1.2em;
    color: #bbbbbb;
    max-width: 600px;
}

.footer {
    font-size: 0.9em;
    color: #555;
}