/* ══════════════════════════════════════════
   Venue Guide – Public Styles
   Akzentfarbe: Rot (#C0202A)
   ══════════════════════════════════════════ */

:root {
    --vg-red:        #C0202A;
    --vg-red2:       #E8303C;
    --vg-red-light:  rgba(192, 32, 42, 0.08);
    --vg-cream:      #FAF8F8;
    --vg-warm:       #F5EFEF;
    --vg-dark:       #1A0F0F;
    --vg-text:       #211010;
    --vg-muted:      #8A7070;
    --vg-border:     #E8DCDC;
    --vg-white:      #FFFFFF;
}

.vg-guide * {
    box-sizing: border-box;
}

.vg-guide {
    font-family: -apple-system, 'Helvetica Neue', Arial, sans-serif;
    color: var(--vg-text);
    background: var(--vg-cream);
    max-width: 600px;
    margin: 0 auto;
    padding-bottom: 32px;
}

/* ── HERO ── */
.vg-hero {
    background: linear-gradient(155deg, #1A0000 0%, #2D0808 55%, #160505 100%);
    padding: 36px 22px 32px;
    position: relative;
    overflow: hidden;
}
.vg-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 75% 30%, rgba(192,32,42,0.2) 0%, transparent 65%);
    pointer-events: none;
}
.vg-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(192,32,42,0.15);
    border: 1px solid rgba(192,32,42,0.35);
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 11px;
    color: #F08088;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 14px;
    position: relative;
}
.vg-hero-title {
    font-size: 28px;
    font-weight: 300;
    color: #FAF0F0;
    line-height: 1.25;
    margin: 0 0 8px;
    position: relative;
}
.vg-hero-title em {
    color: var(--vg-red2);
    font-style: normal;
    font-weight: 500;
}
.vg-hero-sub {
    font-size: 13px;
    color: rgba(250,240,240,0.5);
    font-weight: 300;
    line-height: 1.5;
    position: relative;
    margin: 0 0 20px;
}
.vg-hero-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    position: relative;
}
.vg-hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 12px;
    color: rgba(250,240,240,0.65);
}
.vg-hero-badge strong {
    color: #FAF0F0;
    font-weight: 600;
    display: block;
}

/* ── QUICK ACTIONS ── */
.vg-quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 18px 14px 6px;
}
.vg-qa {
    background: var(--vg-white);
    border: 1px solid var(--vg-border);
    border-radius: 16px;
    padding: 15px 14px;
    cursor: pointer;
    transition: all .18s;
    text-decoration: none;
    display: block;
    -webkit-tap-highlight-color: transparent;
}
.vg-qa:hover,
.vg-qa:focus {
    border-color: var(--vg-red);
    box-shadow: 0 2px 12px rgba(192,32,42,0.1);
    outline: none;
}
.vg-qa:active { transform: scale(.97); }
.vg-qa-alert {
    border-color: rgba(192,32,42,0.3);
    background: rgba(192,32,42,0.04);
}
.vg-qa-ico  { font-size: 22px; margin-bottom: 7px; display: block; }
.vg-qa-lbl  { font-size: 13px; font-weight: 600; color: var(--vg-text); display: block; margin-bottom: 2px; }
.vg-qa-sub  { font-size: 11px; color: var(--vg-muted); }
.vg-qa-alert .vg-qa-lbl { color: var(--vg-red); }

/* ── SECTION HEADERS ── */
.vg-sec-head {
    padding: 22px 14px 8px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}
.vg-sec-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--vg-text);
}
.vg-sec-count {
    font-size: 12px;
    color: var(--vg-muted);
}

/* ── CHAPTERS ── */
.vg-chapters {
    padding: 0 14px 6px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.vg-chapter {
    background: var(--vg-white);
    border: 1px solid var(--vg-border);
    border-radius: 16px;
    overflow: hidden;
}
.vg-ch-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 14px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}
.vg-ch-ico {
    width: 42px; height: 42px;
    background: var(--vg-warm);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 21px;
    flex-shrink: 0;
    transition: background .2s;
}
.vg-open .vg-ch-ico { background: var(--vg-red-light); }
.vg-ch-info { flex: 1; }
.vg-ch-name { font-size: 14.5px; font-weight: 600; color: var(--vg-text); margin-bottom: 3px; }
.vg-ch-meta {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11.5px;
    color: var(--vg-muted);
}
.vg-ch-dot { width: 3px; height: 3px; background: var(--vg-border); border-radius: 50%; }
.vg-ch-arr {
    color: var(--vg-muted);
    font-size: 20px;
    line-height: 1;
    transition: transform .2s, color .2s;
    flex-shrink: 0;
}
.vg-open .vg-ch-arr { transform: rotate(90deg); color: var(--vg-red); }

.vg-ch-body {
    display: none;
    border-top: 1px solid var(--vg-border);
    animation: vgSlideDown .22s ease;
}
.vg-open .vg-ch-body { display: block; }

@keyframes vgSlideDown {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: none; }
}

/* ── VIDEO ── */
.vg-video-wrap {
    background: #0D0404;
    position: relative;
}
.vg-video {
    width: 100%;
    display: block;
    max-height: 240px;
    object-fit: contain;
    background: #0D0404;
}

/* Style native video controls with red accent where possible */
.vg-video::-webkit-media-controls-play-button { background-color: var(--vg-red); }

/* ── STEPS ── */
.vg-steps {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.vg-step-row {
    display: flex;
    gap: 11px;
    align-items: flex-start;
}
.vg-snum {
    width: 26px; height: 26px;
    background: var(--vg-warm);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--vg-red);
    flex-shrink: 0;
    margin-top: 1px;
}
.vg-stxt {
    font-size: 14px;
    color: var(--vg-text);
    line-height: 1.55;
    font-weight: 400;
}
.vg-tip {
    background: rgba(192,32,42,0.06);
    border-left: 3px solid var(--vg-red);
    border-radius: 0 8px 8px 0;
    padding: 10px 12px;
    font-size: 13px;
    color: var(--vg-muted);
    line-height: 1.5;
    margin: 2px 0 4px;
}

/* ── CONTACTS ── */
.vg-contacts {
    padding: 0 14px 6px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.vg-contact-card {
    background: var(--vg-white);
    border: 1px solid var(--vg-border);
    border-radius: 14px;
    padding: 14px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.vg-c-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--vg-warm);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.vg-c-name { font-size: 14px; font-weight: 600; color: var(--vg-text); margin-bottom: 2px; }
.vg-c-role { font-size: 12px; color: var(--vg-muted); }
.vg-c-btns { margin-left: auto; display: flex; gap: 7px; }
.vg-c-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid var(--vg-border);
    background: var(--vg-warm);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    text-decoration: none;
    transition: background .15s;
}
.vg-c-btn:hover,
.vg-c-btn:active { background: var(--vg-red); }

/* ── RULES ── */
.vg-rules {
    padding: 0 14px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.vg-rule {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px;
    background: var(--vg-white);
    border: 1px solid var(--vg-border);
    border-radius: 14px;
}
.vg-rule-ico { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.vg-rule-txt { font-size: 13px; color: var(--vg-text); line-height: 1.5; }
.vg-rule-txt strong { font-weight: 600; display: block; margin-bottom: 2px; }
.vg-rule-warn {
    border-color: rgba(192,32,42,0.25);
    background: rgba(192,32,42,0.03);
}
.vg-rule-warn .vg-rule-txt strong { color: var(--vg-red); }

/* ── FOOTER ── */
.vg-footer {
    background: var(--vg-dark);
    padding: 28px 22px;
    text-align: center;
    margin-top: 8px;
}
.vg-footer-logo {
    font-size: 20px;
    font-weight: 300;
    color: var(--vg-red2);
    margin-bottom: 6px;
    letter-spacing: .06em;
}
.vg-footer-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}

/* ── MODAL ── */
.vg-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.vg-modal.vg-modal-open {
    display: flex;
    animation: vgFadeIn .2s ease;
}
@keyframes vgFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.vg-modal-box {
    background: #fff;
    border-radius: 20px;
    padding: 28px 24px;
    max-width: 360px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: vgSlideUp .25s ease;
}
@keyframes vgSlideUp {
    from { transform: translateY(20px); opacity: 0; }
    to   { transform: none; opacity: 1; }
}
.vg-modal-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--vg-text);
}
.vg-modal-body {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--vg-red);
    margin-bottom: 20px;
    word-break: break-all;
    line-height: 1.3;
}
.vg-modal-sub {
    font-size: 13px;
    color: var(--vg-muted);
    margin-bottom: 20px;
    letter-spacing: 0;
    font-weight: 400;
}
.vg-modal-close {
    background: var(--vg-red);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background .15s;
}
.vg-modal-close:hover { background: var(--vg-red2); }

/* ── RESPONSIVE ── */
@media (max-width: 400px) {
    .vg-hero-title { font-size: 24px; }
    .vg-quick-actions { gap: 8px; }
    .vg-qa { padding: 12px 10px; }
}
