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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.counter-display {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    animation: fadeIn 2s ease-in;
}

.counter-label {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    display: block;
    margin-bottom: 5px;
}

.counter-value {
    color: #ff69b4;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    display: block;
    text-align: center;
    transition: transform 0.2s ease;
}

.main-title {
    color: white;
    font-size: 3rem;
    text-align: center;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    padding: 20px;
    animation: fadeIn 2s ease-in;
    max-width: 90%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.heart {
    position: absolute;
    bottom: -50px;
    color: #ff69b4;
    opacity: 0;
    animation: floatUp 10s ease-in infinite;
    filter: drop-shadow(0 0 5px rgba(255, 105, 180, 0.5));
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

.heart-name {
    color: white;
    font-weight: bold;
    font-size: 0.6em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: rgba(255, 105, 180, 0.3);
    padding: 5px 10px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

@keyframes floatUp {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(var(--drift, 0px)) rotate(360deg);
        opacity: 0;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }
    
    .counter-display {
        top: 10px;
        right: 10px;
        padding: 10px 15px;
    }
    
    .counter-label {
        font-size: 0.75rem;
    }
    
    .counter-value {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.5rem;
    }
    
    .counter-display {
        padding: 8px 12px;
    }
    
    .counter-label {
        font-size: 0.7rem;
    }
    
    .counter-value {
        font-size: 1.3rem;
    }
}
