*, html {
    margin: 0;
    padding: 0;
}

body {
    background-color: rgb(0, 0, 0);
}

.atas {
    background-color:rgb(14, 3, 2) ;
}

.atas img {
}

.buka {
    display: flex;
    justify-content:center;
    font-size: 30px;
    font-family: algerian;
    font-weight: bold;
    gap: 10px;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

nav ul {
    justify-content:right;
    display:flex;
    align-items: center;
    height: 40px;
}

nav ul a {
    list-style-type: none;
    padding: 2px;
    margin: 10px;
    text-decoration: none;
color: aliceblue;
}

.login {
    max-height: 40px;
    width: auto;
}

.logint {
    max-height: 35px;
    width: auto;
}

.nap a:hover {
background-color: rgb(226, 150, 8);
transition: .5s ease-in-out;
transition-delay: .3s;
border-radius: 8px;
}

.bh {
    display: flex;
    justify-content:space-between;
    align-items: center;
    height: 100px;
}

.ratu {
    max-height: 140px;
    width: auto;
    margin: 20px;
    padding-top: 10px;
}

.ratukk {
    max-width: 110px;
    height: auto;
    margin: 20px;
    padding-top: 10px;
}

.ratuk {
    max-width: 200px;
    height: auto;
}



.isi {
    display: flex;
}


.banner {
    display: flex;
    max-width: 100%;
    height: auto;
    margin: 10px;
}

.gif {
    height: 90px;
    margin-left: 30%;
}

.isi p {
    margin-left: 20px;
    text-align: left;
    padding: 10px;
}

.ban {
    max-width: 100%;
    height: auto;
    margin: 10px;
}

.penjelasan {
    margin: 10px;
    color: rgb(255, 255, 255);
    max-width: 100%;
    height: auto;
}

.babi {
    background-color: rgb(126, 22, 22);
    justify-content: center;
    text-align: center;
}

.babi h1 {
    color: aliceblue;
    font-weight: bold;
}

.babi h2 {
    color: aliceblue;
    font-weight: bold;
}

.bun {
 display: flex;
 justify-content: center;
}

.agt {
max-width: 300px;
height: auto;
}

.agt:hover {
 border-radius: 30px;
background-color: rgb(95, 86, 32);
transition: .5s;
transition-delay: .5s;
}


.popup {
    display: none; /* Sembunyikan popup secara default */
    position: fixed;
    left: 0;
    top: 0;
    max-width: 100%;
    height: auto;
    background-color: transparent; /* Latar belakang semi-transparan */
    justify-content: center;
    align-items: center;
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background: transparent;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    text-align: center;
    color: gold;
}

.popup-content img {
max-width: 100%;
height: auto;
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}

.close:hover {
    color: red;
}

  
  .form-container img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  
  .input-field,
  .select-field {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    box-sizing: border-box;
  }
  
  .submit-btn {
    padding: 10px 20px;
    background-color: gold;
    color: #000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .progress-container {
    display: none;
    margin-top: 20px;
  }
  
  .progress-bar {
    width: 100%;
    padding: 10px;
    background-color: white;
    border: none;
    border-radius: 5px;
    cursor: not-allowed;
    position: relative;
    overflow: hidden;
  }
  
  .progress-bar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background: repeating-linear-gradient(45deg, #fa2c2c, #f1f515 10px, transparent 10px, transparent 20px);
    background-size: 28px 28px; /* Sesuaikan ukuran garis strip sesuai keinginan */
    animation: progressAnimation 2s linear infinite;
  }
  
  .progress-text {
    color: gold;
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .progress-info {
    color: rgb(0, 0, 0);
    font-size: 14px;
  }
  
  @keyframes progressAnimation {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 28px 0;
    }
  }


  #blockbar {
    visibility: hidden;
    min-width: 280px;
    margin-left: -120px;
    background-color: #ed1e1a;
    color: white;
    text-align: center;
    border-radius: 10px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
        padding-bottom: 10px;
    text-shadow: 1px 1px 5px rgb(0,0,0);
    position: fixed;
    z-index: 1;
    bottom: 65px;
    left: 180px;
    font-size: 14px;
        font-weight: bolder;
    border: 1px solid white;
      
    }
      
    #blockbar img{
    max-width: 30px;
    }
      
    #blockbar.vision {
    visibility: visible;
    animation-fill-mode: both;
    transform: translateY(-50%);
    -webkit-animation: fadeInBottom 1500ms ease infinite alternate ;
    -moz-animation: fadeInBottom 1500ms ease infinite alternate ;
    -o-animation: fadeInBottom 1500ms ease infinite alternate ;
    animation: fadeInBottom 1500ms ease infinite alternate ;
    }
      
    @keyframes fadeInBottom {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to { opacity: 1 }
    }

.haj {
    display: flex;
    margin-top: 30px;
}

.menang {
    display:grid;
    width: 200px;
    height: 50px;
    border: 2px solid gold;
    background-color: white;
    margin:auto;
}

.jack {
    display: flex;
    justify-content: center;
    color: rgb(255, 255, 255);
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    background-color: #bb0c0c;
}

.number-display {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: bold;
    color: red;
    text-align: center;
  }


