body {
    margin: 0;
    height: 100vh;
    background-image: url("../assets/backgrounds/Copilot_2.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    font-family: sans-serif;
    color: #222;
    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* Кнопка */
.wish-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    transition: 0.2s;
    margin-top: 20px;
}

.wish-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.05);
}

.wish-btn .jp {
    font-size: 14px;
    opacity: 0.8;
}

/* Форма пожеланий */
.wish-form {
    display: none;
    /* скрыта по умолчанию */
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.wish-input {
    width: 260px;
    height: 100px;
    padding: 10px;
    border-radius: 8px;
    border: none;
    resize: none;
    font-size: 16px;
}

.send-btn {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    transition: 0.2s;
}

.send-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.05);
}