

<!DOCTYPE html>

<html lang="en">
<head><meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1.0" /><title>
	iCast Shutdown Notice
</title>
    <style>
        body {
            background-image: url('Images/shutdownBack.jpg'); 
            background-size: cover;
            background-position: center;
            font-family: Arial, sans-serif;
            color: white;
            text-align: center;
            padding: 50px;
            position: relative;
            min-height: 82vh;
        }
        .content {
            background-color: rgba(0, 0, 0, 0.5);
            padding: 20px;
            border-radius: 10px;
            display: inline-block;
            text-align: right;
        }
        a {
            color: #ffcc00;
            text-decoration: underline;
        }
        .countdown {
              font-size: 20px;
              margin-top: 20px;
              text-align: center;
              color: black;
          }

        .icon {
             position: absolute;
             bottom: 0;
             left: 160px;
             padding: 10px;
         }
        @media (max-width: 768px) {
            .icon {
                left: 20px;
                bottom: 0px;
                width: 50px;
                height: 50px;
            }
        }
        @media (min-width: 769px) {
            .icon {
                left: 160px;
                bottom: 0px;
            }
        }
    </style>
  <script type="text/javascript">
      var countdown = 30;
      function updateCountdown() {
          document.getElementById('countdown').innerText = countdown;
          if (countdown === 0) {
              window.location.href = 'https://www.storytel.com';
          } else {
              countdown--;
              setTimeout(updateCountdown, 1000);
          }
      }
      window.onload = function () {
          updateCountdown();
      };
  </script>
</head>
<body>
    <div class="content" dir="rtl">
        <h1>לקוחות יקרים,</h1>
        <p>אנו רוצים לעדכן אתכם שאתר iCast נסגר.</p>
        <p>אבל אל דאגה! תוכלו להמשיך ליהנות מכל עולם הספרים המוקלטים אצלנו ב-Storytel.</p>
        <p>ב-Storytel מחכה לכם חוויית האזנה מרגשת, עם מגוון עצום של ספרים מוקלטים בכל הז'אנרים האהובים עליכם – בעברית, באנגלית ועוד.</p>
        <p>אנחנו כאן כדי להפוך כל רגע בחיים שלכם למלא השראה, דמיון והנאה.</p>
        <p><a href="https://www.storytel.com">לחצו כאן והתחילו להקשיב עכשיו: להצטרפות ל-Storytel</a></p>
        <p>לכל שאלה אנא פנו לשירות הלקוחות במייל <a href="mailto:support.il@storytel.com">support.il@storytel.com</a></p>
        <p>תודה שבחרתם בספרים מוקלטים, נתראה ב-Storytel!</p>
        <p>בהמון הערכה,</p>
        <p>צוות Storytel ישראל</p>
    </div>
    <br />
        <div class="countdown" dir="rtl">
             <p>תועברו אוטומטית לאתר <a href="https://www.storytel.com" style="color:black">Storytel</a> בעוד <span id="countdown">30</span> שניות...</p>
        </div>
     <div class="icon">
     <img src="Images/StoryTel_Logo.png" alt="Icon" />
        </div>
</body>
</html>
