body {
    font-family: 'Outfit', sans-serif;
    background-color: #fce7f3;
}

.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 10px 40px -10px rgba(236, 72, 153, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 300px;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(236, 72, 153, 0.25);
}

.bg-icon-overlay {
    position: absolute;
    bottom: -10px;
    right: -10px;
    opacity: 0.08;
    transform: rotate(-10deg);
    pointer-events: none;
    z-index: 0;
}

.bg-icon-overlay svg {
    width: 120px;
    height: 120px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.1;
    max-width: 70%;
}

.badge {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 99px;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.badge-pink {
    background: #fbcfe8;
    color: #be185d;
}

.badge-rose {
    background: #fda4af;
    color: #9f1239;
}

.badge-violet {
    background: #ddd6fe;
    color: #6d28d9;
}

.countdown-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    position: relative;
    z-index: 10;
    margin-bottom: 2rem;
}

.time-box {
    background: #fff;
    border-radius: 1rem;
    padding: 0.75rem 0.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    min-width: 0;
}

.time-val {
    font-size: 1.5rem;
    font-weight: 800;
    color: #334155;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.time-label {
    font-size: 0.6rem;
    font-weight: 700;
    color: #db2777;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-footer-text {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #94a3b8;
    position: relative;
    z-index: 10;
}

.border-accent {
    border-bottom: 4px solid #f43f5e;
}

.border-accent .time-val {
    color: #e11d48;
}

@media (max-width: 768px) {
    .countdown-wrapper {
        gap: 0.5rem;
    }

    .time-val {
        font-size: 1.25rem;
    }
}