html{
    overflow-y:scroll;
    color:#fff;
}
h1,h2{
    font-family: Arial, sans-serif;
    color: #fff;
    margin-bottom: 50px;
    font-size: 26px;
    position: relative;
}
h2{
    font-size: 20px;
}
.mt30{
    margin-top:30px;
}
h1::after,h2::after{
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    backdrop-filter: saturate(100%) brightness(150%); /* для яскравості скла */
    /* Об’єм через тіні */
    box-shadow:
            -4px -4px 15px rgba(255, 255, 255, 0.5); /* блик зверху/зліва */
    background: linear-gradient(
            135deg,
            #00d4ff,
            #7a00ff,
            #ff2fa1
    );
    filter: blur(15px);
    opacity: 1;
}
.payment-info{
    position: relative;
    color: #000;
    margin-bottom: 20px;
    width: 100%;
    min-height: 50px;
    display: flex;
    justify-content: space-between; /* Назва ліворуч, кнопка праворуч */
    align-items: center; /* Вирівняти по центру вертикально */
    flex-direction: row; /* виправлено з column на row */
    gap: 10px; /* Відстань між текстом і кнопкою */
    font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
    background: #f0f0f0;
    padding: 10px 15px;
    border-radius: 5px;
}

.payment-text {
    display: flex;
    flex-direction: column; /* Назва і значення один під одним */
    gap: 3px;
}

.payment-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a202c;
}

.payment-value {
    font-size: 14px;
    font-weight: 600;
    color: #718096;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.payment-value:hover {
    color: #3182ce;
}

.copy-button {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    height: 45px;
    width: 45px;
}
.copy-button img {
    width: 100%;
    height: 100%;
    opacity: 0.5;
}