
<!DOCTYPE html>
<html lang="id">
<head>
  <meta charset="UTF-8">
  <title>Blacklanternstudios Maintenance</title>
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="shortcut icon" href="https://kilat.digital/images/2024/10/18/81d2b0cdb3e799978a00d241e40d5514.png" />
<meta name="google-site-verification" content="0OYK7iUTIAqcxJKCZLhCtCTsyCKOLz38i5dUCFq-n1o" />

  <style>
    body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background: linear-gradient(135deg, #818181, #000000, #818181);
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      overflow: hidden;
      text-align: center;
      color: #fff;
    }

    .container {
      position: relative;
      max-width: 600px;
      padding: 40px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.2);
      z-index: 2;
      backdrop-filter: blur(10px);
    }

    h1 {
      font-size: 2.8em;
      margin-bottom: 10px;
      animation: bounceIn 0.5s ease;
    }

    p {
      font-size: 1.2em;
      margin-bottom: 20px;
      animation: fadeIn 1.5s ease;
    }

    .countdown {
      font-size: 2em;
      font-weight: bold;
      color: #ffefcf;
      animation: pulse 1s infinite;
    }

    @keyframes bounceIn {
      from { transform: scale(0.5); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes pulse {
      0% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.05); opacity: 0.9; }
      100% { transform: scale(1); opacity: 1; }
    }

    .floating {
      position: absolute;
      border-radius: 50%;
      background-color: rgba(0, 218, 233, 0.2);
      animation: floatAnim 2s infinite ease-in-out;
    }

    .floating:nth-child(1) {
      width: 120px; height: 120px;
      top: 10%; left: -60px;
    }

    .floating:nth-child(2) {
      width: 80px; height: 80px;
      bottom: 10%; right: -40px;
    }

    .floating:nth-child(3) {
      width: 60px; height: 60px;
      top: 50%; right: -30px;
    }

    @keyframes floatAnim {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-30px); }
      100% { transform: translateY(0px); }
    }

    .logo {
      width: 120px;
      margin-bottom: 20px;
    }

    .rainbow-text {
      background: linear-gradient(90deg, #00ffff, #e1f52a, #00ff95, #e1f52a, #00ffff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      font-weight: 900;
    }
  </style>
</head>
<body>

  <!-- Floating background bubbles -->
  <div class="floating"></div>
  <div class="floating"></div>
  <div class="floating"></div>

  <div class="container">
    <h1 class="rainbow-text">Blacklanternstudios is Under Maintenance</h1>
    <p>We're currently upgrading our system to give you a better and faster gaming experience.</p>
    <p>The site will be back online in:</p>
    <div class="countdown" id="countdown">01:00:00</div>
    <p>Thank you for your patience and support!</p>
  </div>

  <script>
    // Countdown timer (1 hour)
    const countdownElement = document.getElementById("countdown");
    let timeLeft = 60 * 60; // 1 hour in seconds

    function updateCountdown() {
      const hours = String(Math.floor(timeLeft / 3600)).padStart(2, '0');
      const minutes = String(Math.floor((timeLeft % 3600) / 60)).padStart(2, '0');
      const seconds = String(timeLeft % 60).padStart(2, '0');
      countdownElement.textContent = `${hours}:${minutes}:${seconds}`;
      if (timeLeft > 0) {
        timeLeft--;
        setTimeout(updateCountdown, 1000);
      } else {
        countdownElement.textContent = "Segera kembali!";
      }
    }

    updateCountdown();
  </script>
</body>
</html>