:root {
    --bg: #070707;
    --panel: #111;
    --panel-soft: #181818;
    --text: #f5f5f5;
    --muted: #b7b7b7;
    --line: rgba(255,255,255,.12);
    --accent: #ffd900;
    --accent-dark: #c9aa00;
    --danger: #ff4242;
    --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
}
a { color: inherit; }

.hero {
    position: relative;
    min-height: 70vh;
    display: grid;
    place-items: end center;
    overflow: hidden;
    isolation: isolate;
    background: #000;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background: var(--hero-image) center/cover no-repeat;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.4) 45%, #070707 100%);
}
.hero__content {
    width: min(1100px, calc(100% - 32px));
    padding: 80px 0 54px;
    text-align: center;
}
.eyebrow {
    margin: 0 0 12px;
    color: var(--accent);
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}
h1 {
    margin: 0;
    font-size: clamp(2.2rem, 8vw, 6rem);
    line-height: .95;
    text-transform: uppercase;
    text-shadow: 0 4px 28px rgba(0,0,0,.8);
}
.hero__meta {
    margin: 20px auto 0;
    max-width: 760px;
    color: #fff;
    font-size: clamp(1rem, 2.6vw, 1.35rem);
    font-weight: 700;
}

.page {
    width: min(1100px, calc(100% - 32px));
    margin: 0 auto;
    padding: 26px 0 80px;
}
.announcement,
.intro,
.empty-state {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(145deg, var(--panel-soft), var(--panel));
    box-shadow: 0 22px 70px rgba(0,0,0,.3);
}
.announcement {
    padding: 26px;
    text-align: center;
    border-color: rgba(255,217,0,.45);
}
.announcement strong {
    display: block;
    margin-bottom: 8px;
    color: var(--accent);
    font-size: clamp(1.45rem, 4vw, 2.4rem);
    text-transform: uppercase;
}
.announcement p,
.intro p,
.empty-state p { color: var(--muted); line-height: 1.65; }

.intro {
    margin-top: 22px;
    padding: clamp(24px, 5vw, 46px);
    text-align: center;
}
.intro h2,
.feed-heading h2 {
    margin: 0 0 12px;
    font-size: clamp(1.8rem, 5vw, 3rem);
    text-transform: uppercase;
}
.intro p { max-width: 760px; margin: 0 auto; }
.actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    background: var(--accent);
    color: #080808;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
}
.button:hover { background: #fff; }
.button--secondary {
    background: transparent;
    color: #fff;
    border: 1px solid var(--line);
}

.feed-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin: 48px 0 18px;
}
.feed-heading p { margin: 0; color: var(--muted); }

.feed {
    columns: 3 280px;
    column-gap: 18px;
}
.post {
    break-inside: avoid;
    margin: 0 0 18px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
}
.post__media {
    display: block;
    width: 100%;
    max-height: 650px;
    object-fit: cover;
    background: #000;
}
.post__body { padding: 18px; }
.post__name { margin: 0; font-weight: 900; }
.post__message {
    margin: 10px 0 0;
    color: #e5e5e5;
    line-height: 1.55;
    white-space: pre-wrap;
}
.post__date {
    display: block;
    margin-top: 14px;
    color: #8c8c8c;
    font-size: .82rem;
}
.featured {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--accent);
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.empty-state { padding: 42px 24px; text-align: center; }
.footer {
    border-top: 1px solid var(--line);
    padding: 26px 16px;
    color: #888;
    text-align: center;
    font-size: .86rem;
}

@media (max-width: 700px) {
    .hero { min-height: 58vh; }
    .feed-heading { display: block; }
    .feed-heading p { margin-top: 8px; }
    .feed { columns: 1; }
}

.upload-panel {
    margin-top: 22px;
    padding: clamp(24px, 5vw, 46px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(145deg, var(--panel-soft), var(--panel));
    box-shadow: 0 22px 70px rgba(0,0,0,.3);
}
.upload-panel__intro { text-align: center; }
.upload-panel__intro h2 {
    margin: 0 0 12px;
    font-size: clamp(1.8rem, 5vw, 3rem);
    text-transform: uppercase;
}
.upload-panel__intro p { max-width: 760px; margin: 0 auto; color: var(--muted); line-height: 1.65; }
.upload-form { max-width: 820px; margin: 30px auto 0; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.field { display: block; margin-bottom: 18px; }
.field > span { display: block; margin-bottom: 8px; font-weight: 900; }
.field > span small { color: var(--muted); font-weight: 400; }
.field input[type="text"],
.field input[type="email"],
.field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: #090909;
    color: #fff;
    padding: 15px 16px;
    font: inherit;
    outline: none;
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus,
.field textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,217,0,.12); }
.field__hint { display: block; margin-top: 7px; color: #888; text-align: right; }
.field--file {
    position: relative;
    padding: 25px;
    border: 2px dashed rgba(255,217,0,.38);
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    background: rgba(255,217,0,.035);
}
.field--file:hover { border-color: var(--accent); }
.field--file input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.field--file > span { color: var(--accent); text-transform: uppercase; letter-spacing: .08em; }
.field--file strong, .field--file small, .field--file em { display: block; }
.field--file small { margin-top: 8px; color: var(--muted); line-height: 1.45; }
.field--file em { margin-top: 10px; color: #fff; font-style: normal; font-size: .9rem; }
.upload-preview { margin: -4px 0 18px; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: #000; }
.upload-preview img, .upload-preview video { display: block; width: 100%; max-height: 430px; object-fit: contain; }
.consent { display: flex; align-items: flex-start; gap: 11px; color: #ddd; line-height: 1.5; cursor: pointer; }
.consent input { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--accent); flex: 0 0 auto; }
.upload-submit { width: 100%; margin-top: 22px; }
.form-note { margin: 10px 0 0; color: #888; text-align: center; font-size: .86rem; }
.flash { margin: 24px auto 0; max-width: 820px; padding: 15px 17px; border-radius: 13px; font-weight: 800; line-height: 1.45; }
.flash--success { color: #dbffe6; background: rgba(38,180,88,.16); border: 1px solid rgba(38,180,88,.55); }
.flash--error { color: #ffe0e0; background: rgba(255,66,66,.12); border: 1px solid rgba(255,66,66,.55); }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

@media (max-width: 700px) {
    .form-grid { grid-template-columns: 1fr; gap: 0; }
    .upload-panel { padding: 24px 18px; }
}

/* Community V2: officieel album */
.official-album {
    position: relative;
    display: grid;
    grid-template-columns: minmax(230px, .8fr) minmax(0, 1.2fr);
    gap: 0;
    margin-top: 22px;
    overflow: hidden;
    border: 1px solid rgba(255,217,0,.42);
    border-radius: var(--radius);
    background: linear-gradient(135deg, #090909 0%, #171300 55%, #0b0b0b 100%);
    box-shadow: 0 25px 80px rgba(0,0,0,.38);
}
.official-album__visual {
    position: relative;
    min-height: 300px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 48%, rgba(255,217,0,.30), transparent 25%),
        repeating-linear-gradient(135deg, rgba(255,255,255,.035) 0 2px, transparent 2px 15px),
        #050505;
}
.official-album__visual::before,
.official-album__visual::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    box-shadow: 0 0 18px var(--accent);
}
.official-album__visual::before { transform: rotate(24deg); }
.official-album__visual::after { transform: rotate(-24deg); }
.official-album__badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    padding: 8px 11px;
    border: 1px solid rgba(255,217,0,.55);
    border-radius: 999px;
    color: var(--accent);
    background: rgba(0,0,0,.72);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .16em;
}
.official-album__camera {
    position: relative;
    z-index: 2;
    font-size: clamp(4.5rem, 11vw, 7.5rem);
    filter: drop-shadow(0 0 28px rgba(255,217,0,.38));
}
.official-album__glow {
    position: absolute;
    width: 190px;
    height: 190px;
    border: 1px solid rgba(255,217,0,.45);
    border-radius: 50%;
    box-shadow: 0 0 70px rgba(255,217,0,.24), inset 0 0 40px rgba(255,217,0,.12);
}
.official-album__content {
    align-self: center;
    padding: clamp(28px, 6vw, 58px);
}
.official-album__content h2 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 5vw, 4.4rem);
    line-height: .95;
    text-transform: uppercase;
}
.official-album__content p:not(.eyebrow) {
    max-width: 620px;
    margin: 0 0 24px;
    color: var(--muted);
    line-height: 1.65;
}

/* Community V2: reacties */
.comments {
    border-top: 1px solid var(--line);
    background: #0b0b0b;
}
.comments__toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
    border: 0;
    background: transparent;
    color: #fff;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
    text-align: left;
}
.comments__toggle:hover { background: rgba(255,255,255,.035); }
.comments__toggle-label {
    color: var(--accent);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.comments__panel {
    padding: 0 18px 18px;
}
.comments__list {
    display: grid;
    gap: 9px;
    margin-bottom: 14px;
}
.comment {
    padding: 12px 13px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 12px;
    background: #121212;
}
.comment__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
}
.comment__head strong { font-size: .9rem; }
.comment__head time { color: #777; font-size: .7rem; white-space: nowrap; }
.comment p {
    margin: 7px 0 0;
    color: #ddd;
    font-size: .9rem;
    line-height: 1.45;
    white-space: pre-wrap;
}
.comments__empty {
    margin: 0 0 13px;
    color: #858585;
    font-size: .86rem;
}
.comment-form {
    display: grid;
    gap: 10px;
    padding-top: 13px;
    border-top: 1px solid rgba(255,255,255,.08);
}
.comment-form label > span {
    display: block;
    margin-bottom: 6px;
    color: #aaa;
    font-size: .77rem;
    font-weight: 800;
}
.comment-form input,
.comment-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #070707;
    color: #fff;
    padding: 11px 12px;
    font: inherit;
    outline: none;
}
.comment-form textarea { min-height: 80px; resize: vertical; }
.comment-form input:focus,
.comment-form textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255,217,0,.10);
}
.comment-form__submit {
    min-height: 42px;
    width: 100%;
    font-size: .78rem;
}
.comment-form__submit:disabled { opacity: .6; cursor: wait; }

@media (max-width: 760px) {
    .official-album { grid-template-columns: 1fr; }
    .official-album__visual { min-height: 220px; }
    .official-album__content { text-align: center; }
    .official-album__content p:not(.eyebrow) { margin-left: auto; margin-right: auto; }
}
