﻿:root {
    --bg-deep: #0c1f17;
    --bg-mid: #143126;
    --bg-lite: #1d3c2f;
    --card: rgba(255, 255, 255, 0.06);
    --card-active: rgba(255, 255, 255, 0.12);
    --accent: #a8f7c6;
    --accent-2: #f4ffb5;
    --text: #f1fff8;
    --muted: #cfe9dc;
}

body {
    font-family: "Indie Flower", cursive;
    background:
    radial-gradient(1200px 500px at 10% -10%, #1f4c3a 0%, transparent 60%),
    radial-gradient(900px 400px at 100% 0%, #1a3c2e 0%, transparent 55%),
    linear-gradient(160deg, var(--bg-deep), var(--bg-mid) 45%, var(--bg-lite));
    color: var(--text);
    min-height: 100vh;
}

header {
    padding: 2.5rem 1rem 1.5rem;
    text-align: center;
}

header h1 {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    letter-spacing: 0.04em;
}

header p {
    margin: 0.4rem 0 0;
    color: var(--muted);
}

.vz-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.5rem 1rem 1.5rem;
}

.vz-nav button {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--muted);
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    transition: all 0.2s ease;
}

.vz-nav button:hover,
.vz-nav button.is-active {
    color: var(--text);
    border-color: var(--accent);
    background: rgba(168, 247, 198, 0.15);
    box-shadow: 0 0 0 2px rgba(168, 247, 198, 0.08);
}

main {
    padding-bottom: 2.5rem;
}

.vz-shell {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.vz-layout {
    display: flex;
    gap: 1.4rem;
    align-items: flex-start;
    position: relative;
}

.vz-filters {
    width: 220px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1rem 1rem 1.2rem;
    box-shadow: 0 18px 30px rgba(6, 18, 13, 0.25);
}

.filters-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--muted);
    margin-bottom: 0.6rem;
}

.filters-toggle {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--muted);
    border-radius: 999px;
    width: 28px;
    height: 28px;
    line-height: 1;
}

.filters-body {
    display: grid;
    gap: 0.35rem;
}

.filter-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
    font-size: 0.98rem;
}

.filter-item input {
    accent-color: var(--accent);
}

.filter-empty {
    color: var(--muted);
    font-size: 0.95rem;
}

.filters-fab {
    position: absolute;
    left: 0.2rem;
    top: 0.2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(12, 31, 23, 0.8);
    color: var(--text);
    border-radius: 10px;
    width: 34px;
    height: 34px;
    display: none;
    align-items: center;
    justify-content: center;
}

.vz-content {
    flex: 1;
}

.vz-layout.filters-hidden .vz-filters {
    display: none;
}

.vz-layout.filters-hidden .filters-fab {
    display: inline-flex;
}

.vz-section {
    display: none;
    background: var(--card);
    border-radius: 18px;
    padding: 1.6rem 1.4rem;
    text-align: left;
    box-shadow: 0 18px 30px rgba(6, 18, 13, 0.35);
}

.vz-section.is-active {
    display: block;
    background: var(--card-active);
}

.vz-section h2 {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.vz-section p {
    margin: 0;
    color: var(--muted);
}

.section-content {
    margin-top: 0.9rem;
    padding: 0.7rem 0.9rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    min-height: 2.2rem;
}

.section-content.is-muted {
    color: var(--muted);
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.9rem;
}

.tag {
    font-size: 0.95rem;
    padding: 0.1rem 0.6rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-2);
}

.donation-bar {
    margin-top: 1.6rem;
    padding: 1rem 1.2rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.donation-label {
    color: var(--muted);
    font-size: 1.05rem;
}

.donation-buttons {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.donation-btn {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 0.25rem 0.9rem;
    transition: all 0.2s ease;
}

.donation-btn:hover {
    border-color: var(--accent);
    background: rgba(168, 247, 198, 0.16);
}

footer {
    text-align: center;
    padding: 1.5rem 1rem 2rem;
    color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 900px) {
    .vz-layout {
        flex-direction: column;
    }

    .vz-filters {
        width: 100%;
    }
}
