:root {
    --bg-color: #fcf9f2;
    --card-bg: rgba(255, 253, 245, 0.7);
    --card-border: rgba(139, 168, 136, 0.3);
    --text-primary: #3e4a3d;
    --text-secondary: #6e7a6b;
    --accent: #d4a373;
    --accent-glow: rgba(212, 163, 115, 0.4);
    --leaf-green: #8ba888;
    --flower-pink: #e0b0b6;
    --sunlight: #fefae0;
}

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

body {
    font-family: 'Lora', serif;
    background: linear-gradient(135deg, #e3eedd 0%, #fdfbf7 50%, #f7e8d3 100%);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.background-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    filter: blur(100px);
    z-index: 0;
    animation: gentleSway 15s infinite alternate ease-in-out;
}

@keyframes gentleSway {
    0% { transform: translate(-55%, -45%) scale(1); opacity: 0.6; }
    50% { transform: translate(-45%, -55%) scale(1.1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(0.95); opacity: 0.7; }
}

.container {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 500px;
}

.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: 32px;
    padding: 3.5rem 2.5rem;
    text-align: center;
    box-shadow: 0 30px 60px -15px rgba(110, 122, 107, 0.2), 0 0 40px rgba(254, 250, 224, 0.4) inset;
    animation: floatUp 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.icon-container {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: rgba(254, 250, 224, 0.8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--card-border);
    color: var(--leaf-green);
    box-shadow: 0 10px 25px -5px rgba(139, 168, 136, 0.3);
}

.leaf-icon {
    animation: gentleWiggle 6s ease-in-out infinite;
}

@keyframes gentleWiggle {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.subtitle {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.progress-container {
    width: 100%;
    height: 8px;
    background: rgba(139, 168, 136, 0.15);
    border-radius: 9999px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--leaf-green), var(--flower-pink), var(--accent));
    background-size: 200% 200%;
    border-radius: 9999px;
    transition: width 0.5s ease-out;
    animation: shimmer 3s infinite linear;
}

@keyframes shimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.status {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 400;
    min-height: 1.5rem;
}
