* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', sans-serif;
      overflow: hidden;
    }

    #gradient-bg {
      position: absolute;
      width: 100%;
      height: 100%;
      background: linear-gradient(270deg, #09122C, #872341, #BE3144, #E17564);
      background-size: 600% 600%;
      animation: gradientAnimation 10s ease infinite;
    }

    @keyframes gradientAnimation {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    #particles-js {
      position: absolute;
      width: 100%;
      height: 100%;
      z-index: 1;
    }

    @keyframes smokeAnimation {
      0% { background-position: 0 0; }
      100% { background-position: 100% 0; }
    }

    .container {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: white;
      z-index: 3;
      width: 90%;
      max-width: 800px;
    }

    h1 {
      font-size: 2rem;
      margin-bottom: 0.2rem;
    }

    .loading-spinner {
      display: inline-block;
      width: 50px;
      height: 50px;
      border: 5px solid rgba(255, 255, 255, 0.3);
      border-top: 5px solid #ffffff;
      border-right: 5px solid #ffffff;
      border-radius: 50%;
      position: relative;
      animation: spin 1.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
      margin: 20px auto;
      box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    }

    .loading-spinner::after {
      content: '';
      position: absolute;
      top: -5px;
      left: -5px;
      right: -5px;
      bottom: -5px;
      border: 5px solid transparent;
      border-radius: 50%;
      border-top-color: rgba(255, 255, 255, 0.2);
      animation: spinReverse 2s linear infinite;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    @keyframes spinReverse {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(-720deg); }
    }
  
  

    #waktu {
      font-size: 2.5rem;
      font-weight: bold;
      margin-bottom: 2rem;
    }
    #info-ip {
      margin-bottom: 2rem;
      font-size: 1.2rem;
      border-radius: 10px;
      padding: 1rem;
      backdrop-filter: blur(10px);
      background: rgba(255, 255, 255, 0.1);
    }

    #footer {
      position: absolute;
      bottom: 0;
      width: 100%;
      text-align: center;
      padding: 1rem;
      color: white;
    }

    #liburan {
      background: rgba(255, 255, 255, 0.1);
      padding: 1.5rem;
      border-radius: 10px;
      backdrop-filter: blur(10px);
    }

    #liburan h2 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }

    #liburan ul {
      list-style: none;
    }

    #liburan li {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.75rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    #liburan li:last-child {
      border-bottom: none;
    }

    #liburan .date {
      font-weight: bold;
      margin-right: 1rem;
    }

    #liburan .name {
      flex-grow: 1;
    }

    #liburan .badge {
      background: #ff4757;
      color: white;
      padding: 0.25rem 0.5rem;
      border-radius: 5px;
      font-size: 0.8rem;
    }

    @media (max-width: 768px) {
      h1 {
        font-size: 1.5rem;
      }

      #waktu {
        font-size: 2rem;
      }

      #info-ip {
        font-size: 1rem;
      }

      #liburan h2 {
        font-size: 1.25rem;
      }

      #liburan li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
      }
    }
