/* ============================================================
   CROSSOVER X — bounty-board.css
   Fantasy Western Tavern Aesthetic
   FIX: Board-Position, Padding, Schriftgröße, Münzen
   ============================================================ */

/* ============================================================
   PAGE BASE
   ============================================================ */
.page {
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
    background: #1a0f08;
}

/* ============================================================
   HINTERGRUND
   ============================================================ */
.bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.bg-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: fill;
}
.bg-img--desktop { display: block; }
.bg-img--mobile  { display: none; }
@media (max-width: 768px) {
    .bg-img--desktop { display: none; }
    .bg-img--mobile  { display: block; }
}

/* ============================================================
   BOARD SECTION — FIX 1: Content unter den WANTED-Postern
   Poster nehmen ca. obere 45vw ein → Content startet erst danach
   ============================================================ */
.board-section {
    position: relative;
    z-index: 10;
    min-height: 80vw;
    display: flex;
    align-items: flex-end;           /* FIX: flex-end statt flex-start */
    justify-content: center;
    padding: 0 clamp(20px, 5vw, 80px) clamp(30px, 4vw, 60px);
}
@media (max-width: 768px) {
    .board-section {
        min-height: auto;
        padding-top: 140vw;          /* weiter nach unten */
        padding-bottom: 24px;
        align-items: flex-start;
    }
}

/* Board Content */
.board-content {
    text-align: center;
    max-width: 700px;
    padding: clamp(24px, 3vw, 44px) clamp(24px, 4vw, 48px);
    background: rgba(0, 0, 0, 0.50);
    border: 1px solid rgba(180, 130, 60, 0.35);
    border-radius: 4px;
    backdrop-filter: blur(3px);
}

.board-title {
    font-family: 'Bangers', sans-serif;
    font-size: clamp(52px, 9vw, 100px);
    letter-spacing: 0.08em;
    color: #c8a84b;
    text-shadow:
        0 0 20px rgba(200, 168, 75, 0.6),
        2px 2px 0 rgba(0,0,0,0.8);
    margin: 0 0 8px;
    line-height: 1;
}

.board-subtitle {
    font-family: 'Bangers', sans-serif;
    font-size: clamp(16px, 2.5vw, 24px);
    letter-spacing: 0.15em;
    color: #e8d4a0;
    margin: 0 0 16px;
    opacity: 0.9;
}

.board-intro {
    font-family: 'Inter', sans-serif;
    font-size: clamp(14px, 1.5vw, 17px);   /* FIX 6: größer */
    line-height: 1.7;
    color: rgba(232, 212, 160, 0.85);
    margin: 0 0 32px;
}

/* Scroll-Aufforderung */
.scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    animation: bbScrollBounce 2s ease-in-out infinite;
    transition: opacity 0.5s;
}
.scroll-hint.hidden { opacity: 0; pointer-events: none; }

.scroll-arrow {
    font-size: 28px;
    color: #c8a84b;
    text-shadow: 0 0 10px rgba(200, 168, 75, 0.6);
}

.scroll-text {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(200, 168, 75, 0.8);
}

@keyframes bbScrollBounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(8px); }
}

/* ============================================================
   SCROLL SECTION — Schriftrolle + Formular
   ============================================================ */
.scroll-section {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    padding: clamp(40px, 6vh, 80px) clamp(20px, 5vw, 40px) clamp(80px, 10vh, 140px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

/* ============================================================
   DOLCH ANIMATION — groß und sichtbar, pinnt die Schriftrolle
   ============================================================ */
.dagger-wrap {
    position: absolute;
    top: -320px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    pointer-events: none;
    opacity: 0;
}

.dagger-wrap.triggered {
    animation: bbDaggerFly 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.dagger {
    width: clamp(180px, 26vw, 340px);   /* 10x größer — richtig sichtbar */
    height: auto;
    filter: drop-shadow(0 6px 24px rgba(0,0,0,0.75));
}

@keyframes bbDaggerFly {
    0%   { top: -320px; opacity: 1; transform: translateX(-50%) rotate(-50deg); }
    55%  { top: 40px; transform: translateX(-50%) rotate(6deg); }
    75%  { top: 28px; transform: translateX(-50%) rotate(-4deg); }
    100% { top: 34px; opacity: 1; transform: translateX(-50%) rotate(0deg); }
}

/* ============================================================
   SCHRIFTROLLE
   ============================================================ */
.parchment-wrap {
    position: relative;
    width: min(1000px, 97vw);   /* FIX 5: etwas breiter */
    flex-shrink: 0;
    margin: 0 auto;
}

.parchment {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
}

.parchment--blank {
    position: relative;
    z-index: 1;
}

.parchment--deco {
    position: absolute;
    top: 0; left: 0;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.parchment--deco.visible { opacity: 1; }

/* FIX 5: Mehr Padding auf der Schriftrolle */
.form-wrap {
    position: absolute;
    top: 16%;
    left: 18%;          /* FIX 5: mehr Abstand vom Rand */
    right: 18%;
    bottom: 14%;
    z-index: 5;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(200, 168, 75, 0.4) transparent;
    padding: clamp(12px, 2vw, 24px) clamp(16px, 2.5vw, 32px);  /* FIX 5: echtes Padding */
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s ease 0.5s, transform 0.7s ease 0.5s;
    pointer-events: none;
}
.form-wrap.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* ============================================================
   FORMULAR TYPOGRAFIE — FIX 6: Schriftgrößen erhöht
   ============================================================ */
.form-header {
    text-align: center;
    margin-bottom: clamp(18px, 2.5vw, 30px);
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(139, 100, 40, 0.3);
}

.form-title {
    font-family: 'Bangers', sans-serif;
    font-size: clamp(28px, 4.5vw, 46px);   /* FIX 6 */
    letter-spacing: 0.1em;
    color: #5c3a1a;
    margin: 0 0 4px;
    text-shadow: 1px 1px 0 rgba(255,255,255,0.2);
}

.form-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(11px, 1.3vw, 14px);   /* FIX 6 */
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(92, 58, 26, 0.7);
    margin: 0 0 12px;
}

.mandatory-hint {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(92, 58, 26, 0.6);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}

.mandatory-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #8b1a1a;
    border-radius: 2px;
    flex-shrink: 0;
}

/* ============================================================
   FORMULAR FELDER — FIX 6: Schriften größer
   ============================================================ */
.field-block {
    margin-bottom: clamp(18px, 2.5vw, 26px);
    padding-bottom: clamp(16px, 2vw, 22px);
    border-bottom: 1px solid rgba(139, 100, 40, 0.15);
}
.field-block:last-of-type { border-bottom: none; }

.field-label {
    font-family: 'Inter', sans-serif;
    font-size: clamp(13px, 1.5vw, 16px);   /* FIX 6 */
    font-weight: 700;
    color: #5c3a1a;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.field-desc {
    font-family: 'Inter', sans-serif;
    font-size: clamp(12px, 1.2vw, 14px);   /* FIX 6 */
    color: rgba(92, 58, 26, 0.78);
    line-height: 1.65;
    margin: 0 0 10px;
}

.input {
    width: 100%;
    background: rgba(255, 248, 220, 0.65);
    border: 1px solid rgba(139, 100, 40, 0.35);
    border-radius: 3px;
    padding: 9px 13px;
    font-family: 'Inter', sans-serif;
    font-size: clamp(13px, 1.3vw, 15px);   /* FIX 6 */
    color: #3a2000;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    box-sizing: border-box;
}
.input:focus {
    border-color: rgba(200, 168, 75, 0.6);
    background: rgba(255, 248, 220, 0.88);
}

.textarea { resize: vertical; min-height: 80px; }

/* ============================================================
   ICON KATEGORIEN
   ============================================================ */
.icon-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.icon-cat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    width: clamp(64px, 10vw, 88px);    /* FIX: größer */
    cursor: pointer;
    padding: 10px 6px;
    border: 2px solid rgba(139, 100, 40, 0.2);
    border-radius: 4px;
    background: rgba(255, 248, 220, 0.4);
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
    user-select: none;
    box-sizing: border-box;
    overflow: hidden;                   /* FIX: kein Text-Overflow */
}
.icon-cat:hover {
    border-color: rgba(200, 168, 75, 0.7);
    background: rgba(255, 248, 220, 0.7);
    transform: scale(1.06);
}
.icon-cat.selected {
    border-color: #7a4800;              /* FIX: dunklerer aktiver State */
    background: rgba(139, 80, 0, 0.28);
    box-shadow: 0 0 10px rgba(139, 80, 0, 0.45), inset 0 0 6px rgba(139, 80, 0, 0.2);
}
.icon-cat img {
    width: clamp(42px, 7vw, 60px);     /* FIX: größer */
    height: clamp(42px, 7vw, 60px);
    object-fit: contain;
    flex-shrink: 0;
}
.icon-cat span {
    font-family: 'Inter', sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5c3a1a;
    text-align: center;
    width: 100%;
    word-break: break-word;            /* FIX: kein Overflow */
    line-height: 1.2;
}

.selected-cats {
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: rgba(92, 58, 26, 0.7);
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.selected-label { font-weight: 700; }

/* ============================================================
   ZUSTAND AUSWAHL
   ============================================================ */
.condition-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.condition-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    padding: 9px 13px;
    border: 2px solid rgba(139, 100, 40, 0.2);
    border-radius: 4px;
    background: rgba(255, 248, 220, 0.4);
    transition: all 0.2s;
    user-select: none;
}
.condition-item:hover { border-color: rgba(200, 168, 75, 0.6); transform: scale(1.05); }
.condition-item.selected {
    border-color: #7a4800;
    background: rgba(139, 80, 0, 0.28);
    box-shadow: 0 0 10px rgba(139, 80, 0, 0.4), inset 0 0 5px rgba(139, 80, 0, 0.15);
}
.condition-item img { width: 38px; height: 38px; object-fit: contain; }
.condition-item span {
    font-family: 'Inter', sans-serif;
    font-size: 9px;        /* FIX 6 */
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #5c3a1a;
}

/* ============================================================
   UPLOAD ZONE
   ============================================================ */
.upload-zone {
    border: 2px dashed rgba(139, 100, 40, 0.35);
    border-radius: 4px;
    padding: 22px;
    text-align: center;
    background: rgba(255, 248, 220, 0.3);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.upload-zone:hover {
    border-color: rgba(200, 168, 75, 0.6);
    background: rgba(255, 248, 220, 0.5);
}
.upload-zone.has-files {
    border-color: rgba(200, 168, 75, 0.7);
    background: rgba(200, 168, 75, 0.08);
}
.upload-icon { width: 42px; height: 42px; object-fit: contain; opacity: 0.7; }
.upload-text {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: rgba(92, 58, 26, 0.7);
}
.upload-sub {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: rgba(92, 58, 26, 0.45);
}

/* Datei-Vorschau unter der Upload-Zone */
.upload-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}
.upload-preview-item {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid rgba(139, 100, 40, 0.3);
    background: rgba(255, 248, 220, 0.4);
}
.upload-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.upload-preview-item .remove-file {
    position: absolute;
    top: 2px; right: 2px;
    width: 16px; height: 16px;
    background: rgba(139, 20, 20, 0.85);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 9px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* ============================================================
   INPUT MIT MÜNZ-ICON
   ============================================================ */
.input-with-icon { position: relative; }
.field-coin {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    object-fit: contain;
    pointer-events: none;
}
.input-with-icon .input { padding-left: 42px; }

/* ============================================================
   KONTAKT GRID
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
}
.contact-field--full { grid-column: 1 / -1; }

.label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(92, 58, 26, 0.7);
    margin-bottom: 4px;
}

@media (max-width: 500px) {
    .contact-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CHECKBOX
   ============================================================ */
.checkbox-wrap {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    margin-top: 8px;
}
.checkbox-wrap input[type="checkbox"] { display: none; }

.checkbox-custom {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border: 2px solid rgba(139, 100, 40, 0.35);
    border-radius: 3px;
    background: rgba(255, 248, 220, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.check-icon { width: 20px; height: 20px; object-fit: contain; opacity: 0; transition: opacity 0.2s; }
.checkbox-wrap input:checked ~ .checkbox-custom { border-color: #c8a84b; background: rgba(200, 168, 75, 0.2); }
.checkbox-wrap input:checked ~ .checkbox-custom .check-icon { opacity: 1; }

.checkbox-text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;        /* FIX 6 */
    color: rgba(92, 58, 26, 0.78);
    line-height: 1.5;
    padding-top: 4px;
}
.checkbox-text a { color: #8b4513; text-decoration: underline; }

/* ============================================================
   TRENNLINIE
   ============================================================ */
.divider {
    height: 1px;
    background: rgba(139, 100, 40, 0.25);
    margin: 20px 0;
}

/* ============================================================
   SUBMIT BUTTON
   ============================================================ */
.submit-wrap {
    text-align: center;
    margin: 24px 0 16px;
}

.submit-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: rgba(92, 58, 26, 0.88);
    border: 2px solid rgba(200, 168, 75, 0.6);
    border-radius: 4px;
    padding: 16px 36px 12px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    overflow: visible;
}
.submit-btn:hover {
    background: rgba(92, 58, 26, 1);
    border-color: #c8a84b;
    transform: scale(1.03);
    box-shadow: 0 0 20px rgba(200, 168, 75, 0.3);
}
.submit-btn:active { transform: scale(0.97); }

.submit-stamp {
    width: 52px;
    height: 52px;
    object-fit: contain;
    transition: transform 0.3s;
}
.submit-btn:hover .submit-stamp { transform: rotate(-10deg) scale(1.1); }
.submit-stamp.stamping {
    animation: bbStamp 0.4s ease forwards;
}
@keyframes bbStamp {
    0%   { transform: translateY(-20px) scale(1.3); }
    60%  { transform: translateY(4px) scale(0.95); }
    100% { transform: translateY(0) scale(1); }
}

.submit-text {
    font-family: 'Bangers', sans-serif;
    font-size: clamp(20px, 2.8vw, 26px);
    letter-spacing: 0.12em;
    color: #c8a84b;
    line-height: 1;
}
.submit-sub {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(200, 168, 75, 0.6);
}

/* ============================================================
   FORMULAR HINWEIS
   ============================================================ */
.form-notice {
    font-family: 'Inter', sans-serif;
    font-size: clamp(11px, 1.1vw, 13px);   /* FIX 6 */
    color: rgba(92, 58, 26, 0.65);
    line-height: 1.65;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(139, 100, 40, 0.15);
}
.form-notice-quote {
    font-style: italic;
    margin-top: 10px;
    color: rgba(92, 58, 26, 0.5);
}

/* ============================================================
   MERCHANT CHARACTER
   ============================================================ */
.merchant-wrap {
    position: fixed;
    top: 50%;
    right: clamp(14px, 2vw, 28px);
    transform: translateY(-50%);
    z-index: 30;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
}
.merchant-wrap.visible {
    opacity: 1;
    pointer-events: auto;
}

.merchant-img {
    width: clamp(110px, 13vw, 175px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.6));
    animation: MerchantBob 3s ease-in-out infinite;
}
@keyframes MerchantBob {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

.speech-bubble {
    position: relative;
    background: rgba(255, 248, 220, 0.97);
    border: 2px solid rgba(139, 100, 40, 0.5);
    border-radius: 8px;
    padding: 14px 18px;
    max-width: 220px;
    box-shadow: 0 3px 16px rgba(0,0,0,0.4);
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}
.speech-bubble.show {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}
.speech-bubble::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: rgba(255, 248, 220, 0.97);
}
.speech-bubble::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -13px;
    transform: translateY(-50%);
    border: 9px solid transparent;
    border-left-color: rgba(139, 100, 40, 0.5);
}

#speech-text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #5c3a1a;
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

@media (max-width: 768px) {
    #speech-text {
        font-size: 10px;
        line-height: 1.35;
    }
    .merchant-wrap {
        position: fixed;
        top: auto;
        bottom: 120px;
        right: 8px;
        transform: none;
        width: 100px;
    }
    .merchant-img { width: 90px; }
    .speech-bubble {
        max-width: 150px;
        padding: 8px 10px;
    }
    .speech-bubble::after,
    .speech-bubble::before { display: none; }
}

/* Mobile icon-categories: genug Platz damit Text nicht übersteht */
@media (max-width: 600px) {
    .icon-categories { gap: 8px; }
    .icon-cat { width: clamp(58px, 17vw, 72px); }
    .icon-cat img {
        width: clamp(36px, 11vw, 48px);
        height: clamp(36px, 11vw, 48px);
    }
}

/* ============================================================
   FALLENDE MÜNZEN — FIX 7: deutlich größer
   ============================================================ */
.coins-overlay {
    position: fixed;
    inset: 0;
    z-index: 25;
    pointer-events: none;
    overflow: hidden;
}

.coin {
    position: absolute;
    top: -80px;
    width: clamp(56px, 7vw, 90px);   /* FIX 7: war 24–40px, jetzt 56–90px */
    height: auto;
    animation: bbCoinFall linear forwards;
    opacity: 0.92;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}

@keyframes bbCoinFall {
    0%   { top: -80px; opacity: 0.92; transform: rotate(0deg) scale(1); }
    20%  { transform: rotate(90deg) scale(1.05); }
    60%  { transform: rotate(240deg) scale(0.97); opacity: 0.92; }
    100% { top: 110vh; opacity: 0; transform: rotate(400deg) scale(0.9); }
}

/* ============================================================
   DANKE-OVERLAY — erscheint nach erfolgreichem Submit
   Ersetzt die Schriftrolle, Banner links + rechts
   ============================================================ */
#thankyou-overlay {
    position: relative;
    width: min(800px, 96vw);
    margin: 40px auto;
    background: rgba(20, 10, 3, 0.92);
    border: 2px solid rgba(200, 168, 75, 0.5);
    border-radius: 6px;
    padding: clamp(40px, 6vw, 70px) clamp(30px, 6vw, 80px);
    text-align: center;
    box-shadow: 0 0 60px rgba(200, 168, 75, 0.15), 0 0 120px rgba(0,0,0,0.8);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
#thankyou-overlay.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Banner links + rechts */
.ty-banner {
    position: absolute;
    top: -10px;
    width: clamp(32px, 4vw, 52px);
    height: auto;
    opacity: 0.9;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.6));
    animation: tyBannerDrop 0.6s ease 0.3s both;
}
.ty-banner--left  { left: clamp(10px, 2vw, 24px); }
.ty-banner--right { right: clamp(10px, 2vw, 24px); transform: scaleX(-1); }

@keyframes tyBannerDrop {
    from { transform: translateY(-30px); opacity: 0; }
    to   { transform: translateY(0);     opacity: 0.9; }
}
.ty-banner--right { animation: tyBannerDropR 0.6s ease 0.3s both; }
@keyframes tyBannerDropR {
    from { transform: scaleX(-1) translateY(-30px); opacity: 0; }
    to   { transform: scaleX(-1) translateY(0);     opacity: 0.9; }
}

/* Wachssiegel oben */
.ty-seal {
    width: clamp(56px, 8vw, 80px);
    height: auto;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 12px rgba(200, 0, 0, 0.5));
    animation: tySealSpin 0.5s ease 0.1s both;
}
@keyframes tySealSpin {
    from { transform: rotate(-15deg) scale(0.6); opacity: 0; }
    to   { transform: rotate(0deg)   scale(1);   opacity: 1; }
}

.ty-inner { position: relative; z-index: 1; }

.ty-title {
    font-family: 'Bangers', sans-serif;
    font-size: clamp(32px, 6vw, 58px);
    letter-spacing: 0.1em;
    color: #c8a84b;
    text-shadow: 0 0 20px rgba(200, 168, 75, 0.5), 2px 2px 0 rgba(0,0,0,0.8);
    margin: 0 0 6px;
    line-height: 1;
}

.ty-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(10px, 1.3vw, 13px);
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(200, 168, 75, 0.65);
    margin: 0 0 20px;
}

.ty-divider {
    width: 60%;
    height: 1px;
    background: rgba(200, 168, 75, 0.25);
    margin: 0 auto 20px;
}

.ty-text {
    font-family: 'Inter', sans-serif;
    font-size: clamp(13px, 1.5vw, 16px);
    color: rgba(232, 212, 160, 0.82);
    line-height: 1.75;
    margin: 0 0 28px;
}
.ty-text strong { color: #c8a84b; }
.ty-text em {
    display: block;
    margin-top: 16px;
    font-size: 0.88em;
    color: rgba(200, 168, 75, 0.5);
}

.ty-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(92, 58, 26, 0.85);
    border: 2px solid rgba(200, 168, 75, 0.5);
    border-radius: 4px;
    padding: 12px 28px;
    font-family: 'Inter', sans-serif;
    font-size: clamp(11px, 1.2vw, 13px);
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c8a84b;
    text-decoration: none;
    transition: all 0.2s;
}
.ty-btn:hover {
    background: rgba(92, 58, 26, 1);
    border-color: #c8a84b;
    box-shadow: 0 0 16px rgba(200, 168, 75, 0.3);
    transform: translateY(-2px);
}

/* Scroll-Indikator am unteren Rand des Formular-Fensters */
.form-scroll-hint {
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    height: 36px;
    background: linear-gradient(to bottom, transparent, rgba(210, 175, 110, 0.55));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 4px;
    pointer-events: none;
    z-index: 6;
    transition: opacity 0.3s;
}
.form-scroll-hint.hidden { opacity: 0; }
.form-scroll-hint-arrow {
    font-size: 14px;
    color: rgba(92, 58, 26, 0.7);
    animation: formScrollBounce 1.5s ease-in-out infinite;
}
@keyframes formScrollBounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(4px); }
}