* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'YS Text', Arial, sans-serif;
}

body {
    background: linear-gradient(135deg, #f9f0ff, #e6f7ff);
    min-height: 100vh;
    color: #333;
    overflow-x: hidden;
}

#app {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    text-align: center;
    padding: 40px 0;
    position: relative;
}

.title {
    font-size: 3.5rem;
    font-weight: 300;
    color: #fc3f7e;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.subtitle {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 30px;
}

.hearts {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.heart {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #fc3f7e;
    transform: rotate(45deg);
    opacity: 0;
}

.heart:before, .heart:after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #fc3f7e;
    border-radius: 50%;
}

.heart:before {
    top: -10px;
    left: 0;
}

.heart:after {
    top: 0;
    left: -10px;
}

.content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.card {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-5px);
}

.card-title {
    font-size: 1.5rem;
    color: #fc3f7e;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-content {
    font-size: 1.2rem;
    line-height: 1.6;
}

.countdown {
    background: linear-gradient(135deg, #fc3f7e, #ff6b9c);
    color: white;
    text-align: center;
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 50px;
    box-shadow: 0 4px 20px rgba(252, 63, 126, 0.3);
}

.countdown-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.timer-item {
    background: rgba(255,255,255,0.2);
    padding: 15px;
    border-radius: 10px;
    min-width: 100px;
}

.timer-value {
    font-size: 2.5rem;
    font-weight: bold;
}

.timer-label {
    font-size: 1rem;
    margin-top: 5px;
}

.footer {
    text-align: center;
    padding: 30px 0;
    color: #666;
    font-size: 1.1rem;
}

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

.floating-element {
    position: absolute;
    opacity: 0.1;
    animation: float 15s infinite linear;
}

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

.rings {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.ring {
    width: 80px;
    height: 80px;
    border: 3px solid #fc3f7e;
    border-radius: 50%;
    position: relative;
    animation: pulse 2s infinite;
}

.ring:before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid #ff6b9c;
    border-radius: 50%;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }

    .card {
        min-width: 100%;
    }

    .timer {
        gap: 10px;
    }

    .timer-item {
        min-width: 70px;
        padding: 10px;
    }

    .timer-value {
        font-size: 2rem;
    }
}

a {
    color: #333;
    text-decoration: none;
}