body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background: black;
    font-family: 'Arial', sans-serif;
    text-align: center;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
    font-size: 2.5em;
    font-family: 'Pacifico', cursive;
}

.buttons-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

#yesButton {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 20px 40px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 24px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#noButton {
    background-color: #ff4444;
    color: white;
    border: none;
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#yesButton:hover, #noButton:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.fullscreen {
    position: fixed!important;
    top: 0!important;
    left: 0!important;
    width: 100%!important;
    height: 100%!important;
    font-size: 2em!important;
    z-index: 9999;
    transform: none!important;
    border-radius: 0!important;
}

@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(5px); }
    50% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
    100% { transform: translateX(0); }
}

/* Стили для страницы с ответом */
#valentineResponse {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

#valentineResponse h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

#valentineResponse img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    margin-top: 20px;
}


/* Анимация */
.gif {
    width: 200px;
    margin-top: 10px;
}
