/* supportme.css — minimal, zen-style donation page */

:root {
    --orange1: #E2602E;
    --orange2: #7B3921;
    --dark1: #373535;
    --dark2: #45443F;
    --dark3: #595957;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Source Code Pro', monospace;
    background: linear-gradient(var(--dark1), var(--dark2));
    color: #ccc;
    font-size: clamp(14px, 1vw + 13px, 20px);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

a {
    color: var(--orange1);
    text-decoration: none;
}

a:hover {
    color: #f8f8f2;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--dark1); }
::-webkit-scrollbar-thumb { background: var(--orange1); border-radius: 6px; }

/* ── Page Container ── */
.support-page {
    width: 100%;
    max-width: 720px;
    padding: 80px 24px 100px;
}

/* ── Hero ── */
.hero {
    text-align: center;
    margin-bottom: 12px;
}

.hero-title {
    font-size: 2rem;
    color: var(--orange1);
    font-weight: bold;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1rem;
    color: #8F7368;
    margin-top: 4px;
}

/* ── Decorative Divider ── */
.deco-bar {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--dark3), transparent);
    margin: 36px 0;
}

/* ── Thank You ── */
.thank-you {
    text-align: center;
    margin-bottom: 8px;
}

.thank-you p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ── Bilingual text pairs ── */
.line-en { color: #ddd; }
.line-cn { color: #999; font-size: 0.95em; }

/* ── Link List ── */
.link-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 8px;
}

.link-list a {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 12px 16px;
    border-left: 2px solid var(--dark3);
    transition: border-color 0.2s, background-color 0.2s;
}

.link-list a:hover {
    border-left-color: var(--orange1);
    background-color: rgba(226, 96, 46, 0.06);
}

.link-label {
    color: var(--orange1);
    font-size: 1.1rem;
    min-width: 90px;
    font-weight: bold;
}

.link-desc {
    color: #87877d;
    font-size: 0.9rem;
}

/* ── Donate Section ── */
.section-title {
    text-align: center;
    font-size: 1.3rem;
    color: var(--orange1);
    margin-bottom: 28px;
}

.donate-message {
    background-color: var(--dark1);
    border: 1px solid var(--dark3);
    border-radius: 4px;
    padding: 28px 32px;
    line-height: 1.9;
}

.donate-message p {
    margin-bottom: 10px;
}

.donate-message p:nth-last-child(1) {
    margin-bottom: 0;
}

.fee-note {
    color: #777;
    font-size: 0.85rem;
    margin-top: 16px;
}

/* ── CTA Button ── */
.donate-cta {
    text-align: center;
    margin-top: 32px;
}

.cta-button {
    display: inline-block;
    background-color: #FEF1E4;
    color: var(--orange2);
    font-family: 'Source Code Pro', monospace;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 14px 36px;
    border: 3px solid var(--orange1);
    border-style: dashed;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    transform: translate(-5px, 5px);
    box-shadow: 10px -10px 0 var(--orange1), 0 0 20px rgba(226, 96, 46, 0.15);
}

.cta-button .arrow {
    display: inline-block;
    transition: transform 0.2s;
}

.cta-button:hover .arrow {
    transform: translateX(4px);
}

/* ── Footer ── */
.page-footer {
    text-align: center;
    margin-top: 72px;
    font-size: 1.2rem;
    color: #8F7368;
}

.blink-cursor {
    display: inline-block;
    width: 0.6em;
    height: 1.1em;
    background-color: #a6e22e;
    vertical-align: text-bottom;
    animation: blink 0.7s step-end infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ── Entrance Animations ── */
.fade-in {
    opacity: 0;
    transform: translateY(16px);
    animation: fadeSlideIn 0.5s ease forwards;
}

@keyframes fadeSlideIn {
    to { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ── */
@media (max-width: 600px) {
    .support-page { padding: 48px 16px 72px; }
    .hero-title { font-size: 1.5rem; }
    .link-list a { flex-direction: column; gap: 2px; }
    .link-label { min-width: auto; }
    .donate-message { padding: 20px 16px; }
    .cta-button { font-size: 1rem; padding: 12px 24px; }
}
