body {
    background: linear-gradient(to bottom, #f5f5f5, #ede3ec) fixed no-repeat;
    background-size: cover;
    background-attachment: fixed;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
}

button {
    background-color: #701e5e;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: block;
    font-size: 18px;
    margin: 20px auto;
    cursor: pointer;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

button:hover {
    background-color: #45a049;
    transform: translateY(-2px);
}

textarea {
    width: 90%;
    height: 100px;
    padding: 10px;
    font-size: 18px;
    border-radius: 10px;
    border: 2px solid #701e5e;
    margin: 0 auto;
    display: block;
    resize: vertical;
    background-color: rgba(255, 255, 255, 0.8);
}

textarea:focus {
    outline: none;
    border-color: #45a049;
}

.copy-button {
    background-color: #701e5e;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: block;
    font-size: 18px;
    margin: 20px auto;
    cursor: pointer;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}

.copy-button:active::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    animation: ripple 1s linear;
}

.copy-button:hover {
    background-color: #45a049;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.help-content {
    display: none;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    width: 80%;
    font-size: 16px;
    line-height: 1.6;
}

input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #701e5e;
    border-radius: 4px;
    margin-right: 10px;
    cursor: pointer;
    outline: none;
    position: relative;
    vertical-align: middle;
    transition: all 0.2s ease;
}

input[type="checkbox"]:checked {
    background-color: #45a049;
    border-color: #45a049;
}

input[type="checkbox"]:checked::before {
    content: '\2713';
    font-size: 16px;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

input[type="checkbox"]:hover {
    border-color: #45a049;

}