:root{
  --bg0:#07070A;
  --bg1:#0B0B10;
  --card:#1f1225;
  --text:#F3F1EA;
  --muted:#B8B3A7;
  --line:rgba(255,255,255,.08);

  --gold:#C9A24A;
  --gold2:#E2C77A;
  --goldLine:rgba(201,162,74,.35);

  --radius:20px;
  --shadow:0 20px 50px rgba(0,0,0,.6);

  --serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  --sans: system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family:var(--sans);
  color:var(--text);
  background:
    radial-gradient(900px 500px at 20% -10%, rgba(201,162,74,.12), transparent 60%),
    linear-gradient(180deg,var(--bg0),var(--bg1));
}

a{color:inherit;text-decoration:none}
.wrap{max-width:980px;margin:0 auto;padding:28px 16px 70px}

header{
  position:sticky;top:0;z-index:10;
  background:rgba(7,7,10,.75);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  max-width:980px;margin:0 auto;
  padding:14px 16px;
  display:flex;justify-content:space-between;align-items:center;
}
.brand small{
  display:block;font-size:11px;letter-spacing:.22em;
  text-transform:uppercase;color:var(--muted)
}
.brand strong{
  font-family:var(--serif);
  font-size:20px;
}

.card{
  background:linear-gradient(180deg,rgba(255,255,255,.03),transparent 60%),var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:22px;
}

h1{
  font-family:var(--serif);
  font-size:42px;
  line-height:1.08;
  margin:12px 0 10px;
}
.subtitle{
  color:var(--muted);
  line-height:1.7;
}

.pill{
  display:inline-flex;align-items:center;gap:8px;
  border:1px solid var(--goldLine);
  color:var(--gold2);
  padding:8px 14px;
  border-radius:999px;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
}

ul{margin:18px 0 0;padding:0;list-style:none}
li{display:flex;gap:10px;margin:10px 0}
li:before{
  content:"";
  width:7px;height:7px;border-radius:50%;
  background:var(--gold);
  margin-top:7px;
}

.price{
  font-size:22px;
  font-weight:600;
  color:var(--gold2);
}

label{display:block;margin:14px 0 6px;font-size:13px}
input,textarea,select{
  width:100%;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:var(--text);
  padding:12px;
  font:inherit;
}
textarea{min-height:120px}

.btn{
  margin-top:16px;
  width:100%;
  padding:14px;
  border-radius:14px;
  border:1px solid rgba(201,162,74,.6);
  background:linear-gradient(180deg,rgba(201,162,74,.25),rgba(201,162,74,.1));
  color:var(--text);
  font-size:14px;
  cursor:pointer;
}

.note{
  font-size:12px;
  color:var(--muted);
  line-height:1.6;
  margin-top:10px;
}

.site-footer{
  margin-top:80px;
  padding:24px 16px 36px;
  border-top:1px solid rgba(255,255,255,0.12);
  background:linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.03));
}

.footer-inner{
  max-width:1000px;
  margin:0 auto;
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  justify-content:space-between;
  align-items:center;
}

.footer-left{
  font-size:12.5px;
  color:rgba(255,255,255,0.6);
}

.footer-right{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:12.5px;
}

.footer-right a{
  color:rgba(255,255,255,0.6);
  text-decoration:none;
}

.footer-right a:hover{
  color:#e6d08a;
}

.footer-right .dot{
  color:rgba(255,255,255,0.25);
}
/* ===== Video Thumbnail / Play Overlay ===== */

.video-thumb{
  position:relative;
  overflow:hidden;
}

.play-overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(
    180deg,
    rgba(0,0,0,.25),
    rgba(0,0,0,.45)
  );
  transition:background .25s ease;
}

.video-thumb:hover .play-overlay{
  background:linear-gradient(
    180deg,
    rgba(0,0,0,.35),
    rgba(0,0,0,.60)
  );
}

.play-ring{
  width:72px;
  height:72px;
  border-radius:50%;
  border:1px solid rgba(201,162,74,.55);
  background:rgba(15,16,22,.75);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 0 0 6px rgba(201,162,74,.15);
}

.play-triangle{
  width:0;
  height:0;
  margin-left:3px;
  border-top:10px solid transparent;
  border-bottom:10px solid transparent;
  border-left:16px solid var(--gold2);
}
/* Video-Container muss Höhe behalten, auch wenn das Bild entfernt wird */
.video-thumb{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 16px;
}

/* Thumbnail füllt den Container sauber */
.video-thumb img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.js-hide-on-play.is-hidden{
  opacity:0;
  transition: opacity .25s ease;
}
/* =========================
   Audio Player – Abschied
   ========================= */

audio{
  width:100%;
  height:40px;
  border-radius:10px;
  background:rgba(0,0,0,.35);
  border:1px solid rgba(201,162,74,.35);
  padding:4px;
}

/* WebKit (Chrome, Safari, Edge) */
audio::-webkit-media-controls-panel{
  background:rgba(0,0,0,.55);
  border-radius:8px;
}

audio::-webkit-media-controls-play-button,
audio::-webkit-media-controls-mute-button{
  filter: invert(90%);
}

audio::-webkit-media-controls-current-time-display,
audio::-webkit-media-controls-time-remaining-display{
  color:#e6d08a;
  font-size:12px;
}

audio::-webkit-media-controls-timeline{
  filter: invert(85%);
}

/* Firefox */
audio::-moz-range-track{
  background:rgba(201,162,74,.35);
}

audio::-moz-range-thumb{
  background:#e6d08a;
  border:none;
}

/* Fokus & Hover ruhig halten */
audio:focus{
  outline:none;
}

/* Confirm.php: Einklappbare Änderungssektion */
.edit-details {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  padding: 0;
}

.edit-details summary {
  cursor: pointer;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.edit-details summary::-webkit-details-marker {
  display: none;
}

.edit-details summary::after {
  content: "▾";
  margin-left: auto;
  color: #e6d08a;
  font-size: 14px;
  transform: translateY(-1px);
}

.edit-details[open] summary::after {
  content: "▴";
}

.edit-details[open] summary {
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.edit-content {
  padding: 16px;
}
