header { background: rgba(10, 8, 8, 0.767); border-bottom: none; }

.tab { display: none; }
.tab.active { display: block; animation: rise 0.45s cubic-bezier(0.16, 1, 0.3, 1); }
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

h2 { font-size: 1.6rem; font-weight: 700; }
h3 { font-size: 1.05rem; font-weight: 600; }
p { color: #b2acac; line-height: 1.7; font-size: 0.95rem; }
.accent { color: var(--red); }
.hero h1 { font-family: 'Unbounded', sans-serif; }

.hero {
    text-align: center;
    padding: 90px 24px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero .tagline {
    border: 1px solid var(--line-red);
    background: rgba(192, 57, 43, 0.08);
}
.hero .tagline [data-lucide] { width: 14px; height: 14px; }
.hero h1 { font-size: clamp(2.6rem, 7vw, 4.6rem); font-weight: 800; line-height: 1; margin-bottom: 22px; }
.hero-lead {
    max-width: 600px;
    margin: 0 auto 12px;
    font-size: 1.05rem;
    color: #b2acac;
    line-height: 1.7;
}
.online-line {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 auto 36px;
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1;
}
.online-line strong {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    font-variant-numeric: tabular-nums;
}
.online-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #5a5a5a;
    flex-shrink: 0;
}
.online-dot.live { background: #4caf50; }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 0; }
.btn { font-size: 1.12rem; }

.ipbar { display: flex; justify-content: center; margin-top: 40px; }
.ipbox {
    display: flex; align-items: center; gap: 16px;
    border-radius: 7px; padding: 14px 14px 14px 18px;
    backdrop-filter: blur(10px);
}
.ip-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    border-radius: 6px; background: rgba(192, 57, 43, 0.16); color: var(--red);
}
.ip-icon [data-lucide] { width: 20px; height: 20px; }
.ip-label { font-size: 0.66rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 2px; }
.ip-value { font-size: 1.1rem; font-weight: 700; color: #fff; letter-spacing: -0.3px; }

.copy-btn {
    display: inline-flex; align-items: center; gap: 7px;
    font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 1rem;
    background: var(--red); color: #fff; border: none;
    border-radius: 4px; padding: 11px 18px; cursor: pointer;
}
.copy-btn:hover { background: #d6483a; }
.copy-btn.copied { background: #2f7d36; }
.copy-btn [data-lucide] { width: 16px; height: 16px; }

.section-head { text-align: center; margin: 64px 0 30px; }
.section-head h2 { margin-bottom: 8px; }
.section-head p { color: var(--muted); }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 7px; padding: 26px 28px;
    backdrop-filter: blur(14px);
    transition: transform 0.3s, background 0.3s;
}
.feature:hover { transform: scale(1.04); background: rgba(255, 255, 255, 0.06); }
.feature h3 { color: #fff; margin-bottom: 9px; }
.feature p { font-size: 0.89rem; }

.join-grid { display: grid; grid-template-columns: 1.7fr 1fr; gap: 24px; align-items: start; }
.timeline { display: flex; flex-direction: column; gap: 14px; }
.tstep {
    display: flex; gap: 18px; align-items: center;
    background: #00000023; border-radius: 7px; padding: 20px 24px;
    backdrop-filter: blur(10px);
    transition: transform 0.25s, border-color 0.25s;
}
.tstep:hover { transform: translateX(5px); border-color: var(--line-red); }
.tstep .dot {
    width: 40px; height: 40px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    border-radius: 6px; background: rgba(192, 57, 43, 0.16);
    color: var(--red); font-family: 'Unbounded', sans-serif; font-weight: 700;
}
.tstep:hover .dot { background: var(--red); color: #fff; }
.tstep h3 { color: #fff; margin-bottom: 4px; font-size: 1rem; }
.tstep p { font-size: 0.88rem; }
.inline-code {
    border-radius: 7px; padding: 2px 8px;
    font-family: monospace; color: #fff; font-size: 0.88em;
}
.join-side { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 16px; }
.panel {
    background: #0000002c; border-radius: 7px; padding: 26px;
    backdrop-filter: blur(10px);
}
.panel h3 { color: #fff; margin-bottom: 16px; }
.req-list { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.req-list li { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; color: #c2bcbc; }
.req-list li [data-lucide] { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; }
.join-ip {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    background: rgba(0, 0, 0, 0.205); border-radius: 7px; padding: 14px 16px; margin-top: 18px;
}
.join-ip .copy-btn { padding: 9px 12px; }

.donate-layout { display: grid; grid-template-columns: 1fr 400px; gap: 26px; align-items: start; }
.donate-info { display: flex; flex-direction: column; gap: 16px; }
.card {
    background: #00000023; border-radius: 6px; padding: 30px;
    backdrop-filter: blur(10px);
}
.card h2 { margin-bottom: 14px; }
.product-info ul { list-style: none; margin-top: 14px; display: flex; flex-direction: column; gap: 12px; }
.product-info li { display: flex; align-items: center; gap: 11px; font-size: 0.92rem; color: #c2bcbc; }
.product-info li [data-lucide] { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; }
.field { margin-bottom: 20px; }
.field label {
    display: block; font-size: 0.72rem; color: var(--muted);
    text-transform: uppercase; margin-bottom: 9px; letter-spacing: 1.2px;
}
.field input {
    width: 100%; padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04); border-radius: 6px;
    border: none; color: #fff;
    font-family: 'Manrope', sans-serif; font-size: 1rem; outline: none;
}
.field input:focus { border-color: var(--line-red); }
.pay-btn {
    width: 100%; padding: 16px; background: var(--red); border: none;
    font-family: 'Manrope', sans-serif; border-radius: 6px; color: #fff;
    font-size: 1.2rem; font-weight: 700; cursor: pointer;
}
.pay-btn:hover { background: #d6483a; box-shadow: 0 8px 22px rgba(192, 57, 43, 0.4); }
.pay-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.status { padding: 13px 15px; border-radius: 11px; margin-bottom: 18px; font-size: 0.9rem; display: none; }
.status.error { display: block; font-weight: 600; color: #ff7b6b; background: rgba(255, 77, 77, 0.08); border: 1px solid rgba(255, 77, 77, 0.22); }
.custom-select { position: relative; width: 100%; }
.select-selected {
    background: rgba(255, 255, 255, 0.04); color: #fff; padding: 14px 16px;
    border-radius: 6px; cursor: pointer; user-select: none; font-size: 0.92rem;
}
.select-selected::after {
    position: absolute; content: ""; top: 21px; right: 16px;
    border: 6px solid transparent; border-color: #fff transparent transparent transparent;
}
.select-items {
    position: absolute; background: #0a0a0a; top: 100%; left: 0; right: 0;
    z-index: 99; border-radius: 6px; margin-top: 6px; overflow: hidden;
}
.select-items div { padding: 13px 16px; cursor: pointer; color: #ccc; font-size: 0.9rem; }
.select-items div:hover { background: rgba(192, 57, 43, 0.6); color: #fff; }
.select-hide { display: none; }
.faq-item { padding: 15px 0; border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: none; }
.faq-item b { color: #fff; display: block; margin-bottom: 5px; font-weight: 600; }
.faq-item span { color: var(--muted); font-size: 0.9rem; }

@media (max-width: 880px) {
    .donate-layout, .join-grid { grid-template-columns: 1fr; }
    .join-side { position: static; }
}
@media (max-width: 760px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .grid { grid-template-columns: 1fr; } }
