   body {
        -webkit-animation: -amp-start 8s steps(1, end) 0s 1 normal both;
        -moz-animation: -amp-start 8s steps(1, end) 0s 1 normal both;
        -ms-animation: -amp-start 8s steps(1, end) 0s 1 normal both;
        animation: -amp-start 8s steps(1, end) 0s 1 normal both;
      }

      @-webkit-keyframes -amp-start {
        from {
          visibility: hidden;
        }

        to {
          visibility: visible;
        }
      }

      @-moz-keyframes -amp-start {
        from {
          visibility: hidden;
        }

        to {
          visibility: visible;
        }
      }

      @-ms-keyframes -amp-start {
        from {
          visibility: hidden;
        }

        to {
          visibility: visible;
        }
      }

      @-o-keyframes -amp-start {
        from {
          visibility: hidden;
        }

        to {
          visibility: visible;
        }
      }

      @keyframes -amp-start {
        from {
          visibility: hidden;
        }

        to {
          visibility: visible;
        }
      }
       * {
        box-sizing: border-box;
      }

      body {
        font-family: 'Orbitron', monospace;
        position: relative;
        background: #0a0a0a;
        background-image: radial-gradient(circle at 10% 20%, rgba(255, 216, 0, 0.15) 2%, transparent 2.5%), 
                          radial-gradient(circle at 80% 70%, rgba(255, 200, 0, 0.1) 1.5%, transparent 2%);
        background-size: 40px 40px, 30px 30px;
        background-attachment: fixed;
      }

      .container {
        max-width: 450px;
        height: 100vh;
        margin: 0 auto;
        padding: 15px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        overflow: hidden;
      }

      .welcome {
        margin-top: 20rpx;
        max-width: 350px;
        margin: 0 auto;
        text-align: center;
      }

      .welcome h3 {
        font-size: 14px;
        color: #b700ff;
        overflow: hidden;
        border-right: 0.15em solid #b700ff;
        white-space: nowrap;
        letter-spacing: 0.09em;
        animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
        text-shadow: 0 0 5px #b700ff;
      }

      @keyframes typing {
        from {
          width: 0;
        }

        to {
          width: 100%;
        }
      }

      @keyframes blink-caret {

        from,
        to {
          border-color: transparent;
        }

        50% {
          border-color: #b700ff;
        }
      }

      .banner {
         width: 100%;
        margin-top: 20px;
        border-radius: 10px;
        box-shadow: 0 0 20px #b700ff;
        transition: transform 0.3s ease;
      }

      .banner:hover {
       
        transform: scale(1.02);
        box-shadow: 0 0 30px #b700ff;
      }

      .btn-login,
      .btn-daftar {
        padding: 15px;
        font-size: 18px;
        font-weight: bold;
        text-decoration: none;
        text-align: center;
        margin-top: 20px;
        border-radius: 50px;
        transition: all 0.3s ease;
      }

      .btn-login {
        background: linear-gradient(135deg, #b700ff, #b700ff);
        color: #000;
        box-shadow: 0 5px 15px rgba(255, 216, 0, 0.4);
      }

      .btn-login:hover {
        background: linear-gradient(135deg, #b700ff, #b700ff);
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(255, 216, 0, 0.6);
      }

      .btn-daftar {
        background: linear-gradient(135deg, #222, #111);
        color: #b700ff;
        border: 1px solid #b700ff;
        box-shadow: 0 0 10px #b700ff;
      }

      .btn-daftar:hover {
        background: linear-gradient(135deg, #333, #222);
        transform: translateY(-3px);
        box-shadow: 0 0 20px #b700ff;
      }

      .copyright {
        text-align: center;
        color: #888;
        font-size: 11px;
        margin-top: 20px;
      }

      .karlota {
        position: fixed;
        z-index: 1;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        pointer-events: none;
      }

      .glow-on-hover {
        border: none;
        outline: none;
        color: #b700ff;
        background: #111;
        cursor: pointer;
        position: relative;
        z-index: 0;
        border-radius: 50px;
        font-weight: bold;
        transition: all 0.3s ease;
      }

      .glow-on-hover:before {
        content: '';
        background: linear-gradient(88deg, #b700ff, #ffaa00, #b700ff, #ff6600, #b700ff, #ffaa00, #b700ff, #ff6600);
        position: absolute;
        top: -2px;
        left: -2px;
        background-size: 400%;
        z-index: -1;
        filter: blur(8px);
        width: calc(100% + 4px);
        height: calc(100% + 4px);
        animation: glowing 20s linear infinite;
        opacity: 0;
        transition: opacity .3s ease-in-out;
        border-radius: 50px;
      }

      .glow-on-hover:before {
        opacity: 1;
      }
      .animated{
        width: 100%;
      }

      .glow-on-hover:after {
        z-index: -1;
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
        left: 0;
        top: 0;
        border-radius: 50px;
      }

      .glow-on-hover:hover {
        transform: scale(1.05);
        color: #fff;
      }

      @keyframes glowing {
        0% {
          background-position: 0 0;
        }

        50% {
          background-position: 400% 0;
        }

        100% {
          background-position: 0 0;
        }
      }

      /* Tambahan efek slot machine */
      @keyframes slotFlash {
        0% { opacity: 0.5; }
        100% { opacity: 1; }
      }

      .slot-effect {
        animation: slotFlash 0.5s ease infinite alternate;
      }
         body {
          -webkit-animation: none;
          -moz-animation: none;
          -ms-animation: none;
          animation: none;
        }


          .modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    color: #fff;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  }
  .modal-content {
    background: #000;
    width: 350px;
    margin: 50% auto;
    padding: 20px;
    border-radius: 8px;
    animation: pop .3s ease;
  }
  h4{
    text-align: center;
  }
  @keyframes pop {
    from {transform: scale(0.7); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
  }
  .close {
    float: right;
    cursor: pointer;
    font-size: 18px;
  }
  .btn {
    padding: 10px 15px;
    background: #7a301b;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    margin: auto;
    width: 260px;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  }

  .nosubmit{
        border: none;
   width: 100%;
   height: 100%;
  padding-left: 10px;
     background-color: #fff;
     border-radius: 32px;
   flex: 1;
  
       outline: 0;
  }
  .enroll{
    display: flex;
     height: 36px;
    width: 100%;
padding: 3px 0;
     background-color: #fff;
       border-radius: 32px;
  }
  .enroll_flex{
    width: 60px;
    text-align: center;
    line-height: 30px;
   
      color: #000;
      outline: 0;
  border-radius: 32px;
   height: 100%;
  }
  .box{
    margin-top: 20px;
    text-align: center;
  }
  .nosubmit1{
     height: 36px;
 width: 100%;
    border-radius: 32px;
       outline: 0;
    margin-top: 20px;
     padding-left: 10px;
  }


.modal {display:none; position:fixed; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.7); z-index:999;}
.modal-content1 {background:#1a1a1a; width:350px; margin:50% auto; padding:20px; border-radius:8px; position:relative;}
.close1 {position:absolute; top:10px; right:10px; cursor:pointer; font-size:18px;}
input {width:100%; padding:10px; border-radius:4px; border:none; margin-bottom:10px;}
.country-list {max-height:250px; overflow-y:auto; border:1px solid #333; border-radius:4px;}
.country-item {padding:8px 12px; display:flex; justify-content:space-between; cursor:pointer;}
.country-item:hover {background:#333;}
.flag {width:20px; height:14px; margin-right:8px;}
.cart{
    display: none;
}

  #loadingOverlay {
      display: none; /* 默认隐藏 */
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.5);
      z-index: 9999;
      display: flex;
      justify-content: center;
      align-items: center;
      font-family: Arial, sans-serif;
    }

    /* 加载框 */
    #loadingBox {
  
      padding: 20px 40px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0,0,0,0.3);
      font-size: 18px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    /* 转圈动画 */
    .spinner {
      border: 4px solid #f3f3f3; /* 浅灰色 */
      border-top: 4px solid #3498db; /* 蓝色 */
      border-radius: 50%;
      width: 40px;
      height: 40px;
      animation: spin 1s linear infinite;
      margin-bottom: 10px;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }
      .digit-container {
    display: flex;
    gap: 8px; /* 方框间距 */
  }

  .digit-box {
    width: 50px;
    height: 70px;
    border: 2px solid #ff0000; /* 红色边框 */
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    color: #ff0000; /* 红色字体 */
    background-color: #000; /* 黑色背景 */
    box-shadow: 0 0 8px #ff0000; /* 光晕效果 */
  }
  .box-text{
    text-align: center;
    margin-bottom: 30px;
  }
h5{
    text-align: center;
}
   @media (min-width: 768px) {
 .modal-content {
  
    margin: 10% auto;
  
  }
   .modal-content1 {
  
    margin: 10% auto;
  
  }
   }