/* =========================
   Страница Підтримай нас
========================= */
.page-support {
    position: relative;
    max-width: 1300px;
    width: 100%;
    box-sizing: border-box;
    margin: 24px auto;
    padding: 30px 20px 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    overflow: hidden;
}

.page-support .page-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    color: #1a1a1a;
}

.page-support .page-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0057b7, #ffd700);
    margin: 8px auto 0;
    border-radius: 2px;
}

.page-support p {
    font-size: 16px;
    color: #333;
    margin-bottom: 18px;
}

.page-support ul.support-features {
    list-style: none;
    padding: 0;
    margin: 24px 0 32px;
}

.page-support ul.support-features li {
    font-size: 15px;
    color: #555;
    margin-bottom: 12px;
    position: relative;
    padding-left: 24px;
}

.page-support ul.support-features li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #5a2b7a;
    font-weight: bold;
}

/* --------------------------
   Карточки
--------------------------- */
.support-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.crypto-row,
.classic-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.support-card {
    flex: 1 1 280px;
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.support-card h3 {
    font-size: 18px;
    margin: 10px 0;
}

.support-card p {
    font-size: 14px;
    margin-bottom: 16px;
}

/* --------------------------
   Кнопки
--------------------------- */
.support-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

/* --------------------------
   Крипта
--------------------------- */
.support-card.crypto-card {
    color: #fff;
}

.support-card.crypto-card.btc { background: linear-gradient(135deg, #f7931a 0%, #ffb347 100%); }
.support-card.crypto-card.usdt { background: linear-gradient(135deg, #26a17b 0%, #4cd964 100%); }
.support-card.crypto-card.eth { background: linear-gradient(135deg, #627eea 0%, #9a9cff 100%); }

.wallet-copy {
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 14px 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    color: #fff;
}

.wallet-copy:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }

.wallet-label { display: block; font-size: 13px; opacity: 0.85; margin-bottom: 6px; }
.wallet-address { display: block; font-size: 13px; font-weight: 600; word-break: break-all; }
.wallet-hint { display: block; font-size: 12px; margin-top: 6px; opacity: 0.7; }

.wallet-copy.copied { background: rgba(0,0,0,0.25); }
.wallet-copy.copied .wallet-hint { opacity: 1; font-weight: 600; }

/* --------------------------
   Классические способы
--------------------------- */
.support-card.classic-card {
    background: #f0f0f0;
    color: #333;
}

.support-card.classic-card .support-btn {
    background: #5a2b7a;
    color: #fff;
}

.support-card.classic-card .support-btn:hover {
    background: #ffd700;
    color: #333;
}

/* --------------------------
   Подпись благодарности
--------------------------- */
.page-support .support-thanks {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
}

/* --------------------------
   Адаптивность
--------------------------- */
@media (max-width: 1024px) {
    .page-support { max-width: 90%; padding: 25px 15px 35px; }
    .page-support .page-title { font-size: 28px; }
}

@media (max-width: 768px) {
    .page-support { max-width: 100%; padding: 20px 15px 30px; }
    .page-support .page-title { font-size: 26px; }
    .page-support p { font-size: 15px; }
}

@media (max-width: 480px) {
    .page-support .page-title { font-size: 22px; }
    .page-support p { font-size: 14px; }
}
