/* Alapbeállítások és cuki pasztell háttér */
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #ffe5ec 0%, #ffc2d1 50%, #b5e2fa 100%);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* A központi fehér kártya modern árnyékkal és lekerekítéssel */
.card {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    max-width: 400px;
    width: 90%;
    backdrop-filter: blur(10px);
    border: 4px solid #fff;
    animation: floatCard 4s ease-in-out infinite;
}

/* Lebegő és pulzáló avatar rész */
.avatar-container {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.cute-avatar {
    font-size: 4rem;
    animation: bounce 3s ease-in-out infinite;
}

.heart {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 1.5rem;
    animation: pulse 1.5s ease-in-out infinite;
}

/* Tipográfia */
h1 {
    color: #fb6f92;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 25px;
}

/* Aranyos, animált folyamatjelző sáv */
.progress-bar-container {
    background-color: #f0f0f0;
    border-radius: 20px;
    height: 12px;
    width: 100%;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-bar {
    background: linear-gradient(90deg, #ff8fab, #ffb3c6);
    height: 100%;
    width: 85%;
    border-radius: 20px;
    animation: progressLoading 2s ease-out;
}

.status-text {
    font-size: 0.85rem;
    color: #a3a3a3;
    font-weight: bold;
}

/* --- Animációk (Keyframes) --- */

/* Az egész kártya finom lebegése */
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Az emoji pattogása */
@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1) rotate(3deg); }
}

/* A szív pulzálása */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

/* A betöltősáv kezdeti animációja */
@keyframes progressLoading {
    from { width: 0%; }
    to { width: 85%; }
}
