:root {
    --primary-pink: #ffc2d1;
    --soft-pink: #ffe5ec;
    --deep-pink: #fb6f92;
    --baby-blue: #e0f2fe;
    --cream: #fffaf0;
    --text-color: #4a4a4a;
    --accent-red: #ff4d6d;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--soft-pink) 0%, var(--baby-blue) 100%);
    color: var(--text-color);
    min-height: 100 vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
}

.background-decorations {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.heart, .bow, .star {
    position: absolute;
    animation: float 6s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.h1 { top: 10%; left: 10%; font-size: 2rem; }
.h2 { bottom: 20%; right: 15%; font-size: 1.5rem; animation-delay: 1s; }
.b1 { top: 30%; right: 10%; font-size: 2.5rem; animation-delay: 2s; }
.s1 { top: 70%; left: 5%; font-size: 1.2rem; animation-delay: 1.5s; }
.s2 { bottom: 30%; left: 20%; font-size: 1.8rem; animation-delay: 0.5s; }

.container {
    max-width: 600px;
    width: 90%;
    text-align: center;
    padding: 2rem;
    z-index: 1;
}

header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--deep-pink);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

header .subtitle {
    display: block;
    font-size: 1.5rem;
    font-weight: 300;
    font-style: italic;
    color: var(--accent-red);
}

header p {
    font-weight: 300;
    margin-bottom: 2rem;
}

.countdown-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 3rem 2rem;
    box-shadow: 0 8px 32px rgba(255, 105, 180, 0.15);
    margin-bottom: 2rem;
}

.countdown-timer {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    margin-bottom: 2rem;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--deep-pink);
}

.label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--accent-red);
}

.progress-container {
    margin-top: 1rem;
}

.progress-container p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: var(--soft-pink);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-pink), var(--deep-pink));
    transition: width 0.5s ease-out;
}

.info-section {
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.holidays-list {
    margin-top: 0.5rem;
    color: var(--deep-pink);
    font-style: italic;
}

footer {
    font-size: 0.8rem;
    opacity: 0.7;
}

@media (max-width: 480px) {
    header h1 { font-size: 2.2rem; }
    .number { font-size: 2rem; }
}
