* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: #000;
  font-family: Arial, sans-serif;
  color: white;
  text-align: center;
}

body {
  min-height: 100vh;
  padding-bottom: 80px;
}


h1 {
  margin: 20px;
  letter-spacing: 2px;
}


.countdown-box {
  background: #1a1a1a;
  padding: 15px;
  margin: 15px;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 200, 255, 0.2);
}

#timer {
  font-size: 22px;
  font-weight: bold;
  margin-top: 5px;
  color: #00c8ff;
}


.card {
  background: #1a1a1a;
  padding: 25px 20px;
  margin: 20px auto;
  border-radius: 20px;
  width: 90%;
  max-width: 380px;
  min-height: 200px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0, 200, 255, 0.4);
}


.operator-box {
  width: 120px;
  height: 120px;
  background: #222;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
}

.operator-box:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(0, 200, 255, 0.4);
}

.operator-box img {
  width: 85%;
  height: 85%;
  object-fit: contain;
}


.udp-box img,
.indosat-box img {
  width: 95%;
  height: 95%;
  object-fit: contain;
  filter: brightness(1.3) contrast(1.1);
}

.udp-box,
.indosat-box {
  background: #2b2b2b;
}


.btn-list {
  display: none;
  margin-top: 15px;
}


.btn-link {
  background: #222;
  color: white;
  border: none;
  padding: 12px;
  margin: 8px;
  border-radius: 15px;
  cursor: pointer;
  width: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: 0.3s ease;
  font-size: 14px;
}

.btn-link:hover {
  background: #00c8ff;
  color: black;
}

.btn-link img {
  width: 40px;
}

.sub {
  display: none;
  margin-top: 10px;
}

.sub a {
  display: block;
  background: orange;
  margin: 5px auto;
  padding: 8px;
  width: 150px;
  border-radius: 12px;
  text-decoration: none;
  color: black;
  font-weight: bold;
  transition: 0.3s;
}

.sub a:hover {
  background: #ffb84d;
}

.top-menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 15px;
  background: #000;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.top-menu a {
  text-decoration: none;
  background: #222;
  color: white;
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 14px;
  transition: 0.3s;
}

.top-menu a:hover {
  background: #00c8ff;
  color: black;
}


.top-btn {
  background: #1e1e1e;
  color: #fff;
  border: none;
  padding: 12px 18px;
  margin: 8px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px;
  display: inline-block;
  transition: 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 200, 255, 0.2);
}

.top-btn:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(0, 200, 255, 0.5);
}

.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  font-size: 26px;
  padding: 15px 18px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  z-index: 999;
  transition: 0.3s;
}

.wa-float:hover {
  transform: scale(1.1);
}


.navbar {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
}


.menu-toggle {
  background: #1a1a1a;
  color: #00c8ff;
  border: 1px solid #00c8ff;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 200, 255, 0.4);
}

.menu-toggle:hover {
  background: #00c8ff;
  color: #000;
  box-shadow: 0 0 25px rgba(0, 200, 255, 0.8);
}

.menu-content {
  position: absolute;
  top: 55px;
  right: 0;
  width: 260px;
  background: #1a1a1a;
  border-radius: 20px;
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 0 25px rgba(0, 200, 255, 0.4);
  animation: slideDown 0.25s ease;
}

.menu-content a {
  text-decoration: none;
  color: #ccc;
  font-size: 14px;
  padding: 10px;
  border-radius: 10px;
  transition: 0.3s ease;
}

.menu-content a:hover {
  background: #222;
  color: #00c8ff;
  padding-left: 15px;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#loadingScreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  flex-direction: column;
}

.loader-box {
  text-align: center;
  color: white;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 5px solid #333;
  border-top: 5px solid #00eaff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

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