
body {
    min-height: 100vh;
  min-width: 100vw;
  background-image: url("https://images.rbxcdn.com/782b7fc18a24ee997efd9a7f02fa4bf9-bg_08072019.jpg");
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  margin: 0px;
  padding: 0px;
}
.vignette {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.3)
  ); /* Efek vignette */
  pointer-events: none; /* Agar tidak mengganggu interaksi */
}
.container {
  max-width: 400px;
  height: 100%;
  background: white;
  border: 1px solid black;
  position: relative;
  margin: 0;
  overflow-y: auto;
}
.nav {
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between; /* ini bikin ujung kiri & kanan */
  background: white;
  padding: 0 8px;
  box-sizing: border-box;
}

.nav img {
  width: 45px;
  filter: invert(1);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sign-up{
  background-color: #335FFF;
  width: 66px;
  height: 29px;
  text-align: center;
  color: white;
  border-radius: 10px;
  padding: 6 9px;
  cursor: pointer;
}
.log{
  background-color: white;
  width: 66px;
  height: 29px;
  text-align: center;
  color: #6A6F81;
  border-radius: 10px;
  border: 1px solid #6A6F81;
  cursor: pointer;
}
.search {
  background-color: white;
  padding: 8px 12px;
  margin-right: -19px;
  cursor: pointer;
  user-select: none;
}

.search {
  display: flex;
  align-items: center;
}

.rbxnav {
  width: 100%;
  height: 29px;
  background-color: white;
}

.rbxnav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 24px;
  margin: 0;
  list-style: none;
}

.rbxnav li {
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
}


.top-header{
  text-align: center;
}
.robux-page-content{
  width: 95%;
  height: auto;
  border: 1px solid #eee;
  border-radius: 10px;
  margin: 10px auto;
}
.robux-std{
  width: 95%;
  margin: 6px auto;
}
.robux-header-unit-container{
  border-bottom: 1px solid #eee ;
}
.robux-list {
  width: 100%;
  padding: 0;
  margin: 0;
}

.robux-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding: 18px 8px 12px 8px;
}

.robux-harga {
  font-size: 18px;
  font-weight: 500;
  color: #23272d;
  min-width: 110px;
}

.robux-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.robux-value {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1.5px solid #eee;
  border-radius: 8px;
  padding: 3px 16px 3px 8px;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 2px;
  cursor: pointer;
  transition: box-shadow 0.12s, border-color 0.12s, background 0.12s;
  outline: none;
  font-family: inherit;
}
.robux-value:hover, .robux-value:focus {
  background: #f0f6ff;
  border-color: #335FFF;
  box-shadow: 0 0 0 2px #b2d4ff;
}
.robux-icon {
  display: flex;
  align-items: center;
  color: #23272d;
}

.robux-jumlah {
  border: none;
  background: transparent;
  font-size: 19px;
  font-weight: 700;
  color: #23272d;
  outline: none;
  padding: 0 2px;
  margin: 0;
  cursor: pointer;
  font-family: inherit;
  /* biar tidak muncul border/outline waktu klik di beberapa browser */
}

.robux-jumlah:hover,
.robux-jumlah:focus {
  background: #f0f6ff;
  /* efek hover/active biar user tahu bisa diklik */
}

.robux-note {
  font-size: 13px;
  color: #6a6f81;
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: 1px;
}

.robux-icon-small {
  margin-left: 2px;
  margin-right: 2px;
  color: #23272d;
  display: flex;
  align-items: center;
  font-size: 12px;
}
.robux-icon img,
.robux-icon-small img {
  filter: grayscale(1) brightness(0.1);
}

.robux-jumlah-diskon {
  color: #6a6f81;
  font-size: 13px;
  margin-left: 2px;
}
.robux-jumlah-diskon s {
  color: #6a6f81;
}


/* footer */
.robux-footer {
  margin-top: 40px;
  font-family: Arial, sans-serif;
}

.robux-footer-desc {
  font-size: 13px;
  color: #393b3d;
  text-align: center;
  max-width: 90%;
  margin: 0 auto 26px auto;
  line-height: 1.5;
}

.robux-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px 28px; /* jarak antar link */
  font-size: 17px;
  color: #23272d;
  text-align: center;
  margin-bottom: 12px;
}

.robux-footer-links a {
  text-decoration: none;
  color: #23272d;
  margin: 4px 0;
  transition: color 0.15s;
}
.robux-footer-links a:hover {
  text-decoration: underline;
  color: #335FFF;
}

.robux-footer-separator {
  border: none;
  border-top: 1px solid #b7b7b7;
  margin: 18px auto 10px auto;
  width: 95%;
}

.robux-footer-credit {
  font-size: 12px;
  color: #6a6f81;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.5;
}

.robux-footer-links input[type="checkbox"] {
  accent-color: #1976d2; /* biru, opsional biar kayak roblox */
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-left: 4px;
  cursor: pointer;
}

/* pop up */
.popup-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  overflow-y: auto;
}
.popup {
  display: none;
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
}
.popup-content {
  position: relative;
  background: #26292f;
  margin: 50px auto;
  width: 90%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  animation: fadeIn 0.3s;
}
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(-20px);}
  to {opacity: 1; transform: translateY(0);}
}

.popup-content {
    width: 100%;
    max-width: 350px;
}

.roblox-login {
  position: relative; /* agar .close-btn bisa absolute terhadap ini */
  background: #26292f;
  color: #fff;
  max-width: 350px;
  margin: 40px auto;
  padding: 32px 22px 22px 22px;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.15);
  font-family: 'Segoe UI', Arial, sans-serif;
}

.close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  z-index: 10;
  background: none;
  border: none;
  line-height: 1;
  transition: color 0.14s;
}
.close-btn:hover {
  color: #1976d2;
}


   .roblox-login {
  background: #26292f;
  color: #fff;
  max-width: 350px;
  margin: 40px auto;
  padding: 32px 22px 22px 22px;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.15);
  font-family: 'Segoe UI', Arial, sans-serif;
}

.roblox-login h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 24px;
}

.login-input {
  width: 100%;
  background: #393c42;
  border: 1.5px solid #555;
  border-radius: 7px;
  color: #fff;
  font-size: 1.04rem;
  padding: 12px 14px;
  margin-bottom: 16px;
  outline: none;
  box-sizing: border-box;
  transition: border 0.15s;
}
.login-input:focus {
  border: 1.5px solid #0984e3;
}

.login-btn {
  width: 100%;
  padding: 11px 0;
  background: transparent;
  color: #fff;
  font-size: 1.11rem;
  font-weight: bold;
  border: 1.7px solid #fff;
  border-radius: 7px;
  margin-bottom: 18px;
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
}
.login-btn:hover {
  background: #fff;
  color: #26292f;
}

.login-forgot {
  color: #fff;
  font-weight: 600;
  text-align: center;
  margin-bottom: 16px;
  margin-top: 4px;
  font-size: 1rem;
  cursor: pointer;
}

.login-divider {
  border: none;
  border-top: 1px solid #43464a;
  margin: 22px 0 18px 0;
}

.login-secondary-btn {
  width: 100%;
  background: #393c42;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  padding: 12px 0;
  margin-bottom: 11px;
  cursor: pointer;
  transition: background 0.14s;
}
.login-secondary-btn:hover {
  background: #44474e;
}

.login-register {
  text-align: center;
  color: #fff;
  margin-top: 10px;
  font-size: 0.98rem;
}
.login-register a {
  color: #fff;
  text-decoration: underline;
  margin-left: 2px;
}
.login-register a:hover {
  color: #1976d2;
}

.popup {
  color: white;
  position: fixed;
  z-index: 999;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.33);
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-box-wrapper {
  background: #23272d;
  border-radius: 12px;
  box-shadow: 0 4px 28px rgba(0,0,0,0.18);
  min-width: 300px;
  max-width: 90vw;
  padding: 0 0 20px 0;
}

.popup-box-navbar {
  background: #30343b;
  border-radius: 12px 12px 0 0;
  padding: 12px 22px;
}

.popup-box-navbar-title {
  font-size: 1.13rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-align: center;
}

.popup-box-bg, .popup-box-alert3, .popup-box-alert4, .popup-box-alert0 {
  text-align: center;
  font-size: 1rem;
  padding: 18px 18px 10px 18px;
}

.popup-box-form-footer {
  text-align: center;
  margin-top: 6px;
}
.popup-box-form-footer button {
  padding: 7px 32px;
  border: none;
  background: #1976d2;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  margin-top: 12px;
}

