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

body {
    font-family: 'Montserrat', sans-serif;
    background: url('ask.JPG') center/cover no-repeat fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 1rem;
    color: white;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.header, .counter-container, .buttons, .love-quote {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 320px;
}

.header h1 {
    font-family: 'Dancing Script', cursive;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.header {
    text-align: center;
    width: 100%;
}

.counter-container {
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.counter-container h2 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: normal;
}

#counter {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    margin: 0.8rem 0;
    color: white;
}

#counter span {
    font-weight: 600;
    color: #ff6b6b;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.counter-labels {
    display: flex;
    justify-content: center;
    gap: 1.8rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
}

.counter-labels span {
    width: 30px;
    text-align: center;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 320px;
    padding: 1rem;
}

button {
    padding: 0.8rem;
    font-size: 0.9rem;
    border: none;
    border-radius: 20px;
    background: rgba(255, 107, 107, 0.9);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

button:hover, button:active {
    background: rgba(255, 135, 135, 0.95);
    transform: scale(0.98);
}

.love-quote {
    font-family: 'Dancing Script', cursive;
    font-size: 1.4rem;
    color: white;
    margin-top: 2rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
    text-align: center;
}

.menu-link {
    position: fixed;
    bottom: 2rem;
    font-size: 2rem;
    text-decoration: none;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.menu-link:hover {
    transform: scale(1.1);
}

.back-btn {
    background: rgba(255, 255, 255, 0.2);
    margin-top: 1rem;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

@media (min-width: 768px) {
    .header, .counter-container, .buttons, .love-quote {
        max-width: 320px;
    }
} 