{"id":566,"date":"2026-06-11T17:36:32","date_gmt":"2026-06-11T17:36:32","guid":{"rendered":"https:\/\/echtjetzt.digital\/?p=566"},"modified":"2026-06-16T09:57:36","modified_gmt":"2026-06-16T09:57:36","slug":"hollywood","status":"publish","type":"post","link":"https:\/\/echtjetzt.digital\/index.php\/2026\/06\/11\/hollywood\/","title":{"rendered":"Hollywood"},"content":{"rendered":"\n\n<section class=\"starlit-section\">\n\n  <div class=\"starlit-bg-text\">\n    Was wir sind, erhalten wir nicht durch Schl\u00e4ge,<br>\n    sondern durch Liebe.\n  <\/div>\n\n  <div class=\"starlit-player-wrap\">\n\n    <div class=\"starlit-timer\" id=\"starlitTimer\">15<\/div>\n\n    <button class=\"starlit-fullscreen\" onclick=\"openStarlitFullscreen()\" aria-label=\"Video vergr\u00f6\u00dfern\">\n      \u26f6\n    <\/button>\n\n    <video id=\"starlitVideo\" class=\"starlit-video\" poster=\"https:\/\/echtjetzt.digital\/media\/starlit\/starlit.jpeg\" playsinline=\"\" controls=\"\" preload=\"metadata\">\n      <source src=\"https:\/\/echtjetzt.digital\/media\/starlit\/starlit.mp4\" type=\"video\/mp4\">\n    <\/video>\n\n  <\/div>\n\n<\/section>\n\n<style>\n  .starlit-section {\n    position: relative;\n    width: 100%;\n    min-height: 100vh;\n    padding: 5vh 4vw;\n    box-sizing: border-box;\n    overflow: hidden;\n    background:\n      radial-gradient(circle at center, rgba(255,255,255,0.10), transparent 35%),\n      linear-gradient(180deg, #05070d 0%, #10131c 55%, #05070d 100%);\n    display: flex;\n    align-items: center;\n    justify-content: center;\n  }\n\n  .starlit-bg-text {\n    position: absolute;\n    top: 6%;\n    left: 50%;\n    transform: translateX(-50%);\n    width: 90%;\n    text-align: center;\n    font-family: Georgia, \"Times New Roman\", serif;\n    font-size: clamp(1.4rem, 3vw, 3.2rem);\n    line-height: 1.25;\n    color: rgba(255,255,255,0.16);\n    letter-spacing: 0.03em;\n    pointer-events: none;\n    z-index: 1;\n  }\n\n  .starlit-player-wrap {\n    position: relative;\n    z-index: 2;\n    width: min(1100px, 94vw);\n    aspect-ratio: 16 \/ 9;\n    border-radius: 22px;\n    overflow: hidden;\n    background-image: url(\"https:\/\/echtjetzt.digital\/media\/starlit\/starlit.jpeg\");\n    background-size: cover;\n    background-position: center;\n    box-shadow:\n      0 30px 80px rgba(0,0,0,0.65),\n      0 0 0 1px rgba(255,255,255,0.12);\n  }\n\n  .starlit-video {\n    width: 100%;\n    height: 100%;\n    display: block;\n    object-fit: cover;\n    background: transparent;\n  }\n\n  .starlit-timer {\n    position: absolute;\n    top: 14px;\n    left: 14px;\n    z-index: 5;\n    min-width: 42px;\n    height: 42px;\n    border-radius: 50%;\n    background: rgba(0,0,0,0.55);\n    color: #fff;\n    font-family: Arial, sans-serif;\n    font-size: 0.95rem;\n    display: flex;\n    align-items: center;\n    justify-content: center;\n    backdrop-filter: blur(8px);\n    border: 1px solid rgba(255,255,255,0.25);\n  }\n\n  .starlit-fullscreen {\n    position: absolute;\n    top: 14px;\n    right: 14px;\n    z-index: 5;\n    width: 42px;\n    height: 42px;\n    border-radius: 50%;\n    border: 1px solid rgba(255,255,255,0.25);\n    background: rgba(0,0,0,0.55);\n    color: white;\n    font-size: 1.15rem;\n    cursor: pointer;\n    backdrop-filter: blur(8px);\n  }\n\n  .starlit-fullscreen:hover {\n    background: rgba(255,255,255,0.18);\n  }\n\n  @media (max-width: 700px) {\n    .starlit-section {\n      min-height: 100svh;\n      padding: 3vh 3vw;\n    }\n\n    .starlit-bg-text {\n      top: 7%;\n      font-size: clamp(1.15rem, 6vw, 2rem);\n      color: rgba(255,255,255,0.18);\n    }\n\n    .starlit-player-wrap {\n      width: 96vw;\n      border-radius: 16px;\n      aspect-ratio: 9 \/ 16;\n    }\n\n    .starlit-video {\n      object-fit: cover;\n    }\n\n    .starlit-timer,\n    .starlit-fullscreen {\n      width: 38px;\n      height: 38px;\n      min-width: 38px;\n      top: 10px;\n    }\n\n    .starlit-timer {\n      left: 10px;\n    }\n\n    .starlit-fullscreen {\n      right: 10px;\n    }\n  }\n<\/style>\n\n<script>\n  const starlitVideo = document.getElementById(\"starlitVideo\");\n  const starlitTimer = document.getElementById(\"starlitTimer\");\n\n  function updateStarlitTimer() {\n    if (!starlitVideo || !starlitTimer) return;\n\n    const totalDuration = 15;\n    const current = starlitVideo.currentTime || 0;\n    const remaining = Math.max(0, Math.ceil(totalDuration - current));\n\n    starlitTimer.textContent = remaining;\n  }\n\n  if (starlitVideo) {\n    starlitVideo.addEventListener(\"timeupdate\", updateStarlitTimer);\n\n    starlitVideo.addEventListener(\"play\", function () {\n      starlitTimer.textContent = \"15\";\n    });\n\n    starlitVideo.addEventListener(\"ended\", function () {\n      starlitTimer.textContent = \"0\";\n    });\n\n    starlitVideo.addEventListener(\"loadedmetadata\", function () {\n      starlitTimer.textContent = \"15\";\n    });\n  }\n\n  function openStarlitFullscreen() {\n    const player = document.querySelector(\".starlit-player-wrap\");\n\n    if (!player) return;\n\n    if (player.requestFullscreen) {\n      player.requestFullscreen();\n    } else if (player.webkitRequestFullscreen) {\n      player.webkitRequestFullscreen();\n    } else if (player.msRequestFullscreen) {\n      player.msRequestFullscreen();\n    }\n  }\n<\/script>\n&#8222;`\n","protected":false},"excerpt":{"rendered":"<p>Was wir sind, erhalten wir nicht durch Schl\u00e4ge, sondern durch Liebe. 15 \u26f6 &#8222;`<\/p>\n","protected":false},"author":1,"featured_media":569,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[37],"tags":[41,46,48,47],"class_list":["post-566","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-movies","tag-15-sekunden-film","tag-hollywood","tag-liebe-statt-gewalt","tag-nacht"],"_links":{"self":[{"href":"https:\/\/echtjetzt.digital\/index.php\/wp-json\/wp\/v2\/posts\/566","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/echtjetzt.digital\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/echtjetzt.digital\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/echtjetzt.digital\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/echtjetzt.digital\/index.php\/wp-json\/wp\/v2\/comments?post=566"}],"version-history":[{"count":3,"href":"https:\/\/echtjetzt.digital\/index.php\/wp-json\/wp\/v2\/posts\/566\/revisions"}],"predecessor-version":[{"id":572,"href":"https:\/\/echtjetzt.digital\/index.php\/wp-json\/wp\/v2\/posts\/566\/revisions\/572"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/echtjetzt.digital\/index.php\/wp-json\/wp\/v2\/media\/569"}],"wp:attachment":[{"href":"https:\/\/echtjetzt.digital\/index.php\/wp-json\/wp\/v2\/media?parent=566"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/echtjetzt.digital\/index.php\/wp-json\/wp\/v2\/categories?post=566"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/echtjetzt.digital\/index.php\/wp-json\/wp\/v2\/tags?post=566"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}