:root {
  --bg: #000000;
  --red: #ff1a1a;          /* merah neon utama */
  --red2: #ff4040;         /* varian lebih terang */
  --red-dark: #cc0000;     /* untuk gradient gelap */
  --red-glow: #ff1a1a;     /* glow utama */
  --panel: #0a0a0a;
  --line: rgba(255, 26, 26, 0.55);   /* merah transparan */
  --text: #f5f5f5;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: radial-gradient(circle at top, #111111 0%, var(--bg) 60%);
  color: var(--text);
  background: #000000 url(https://i.imgur.com/f7eXdz4.jpeg) center center no-repeat;
  background-attachment: fixed;
  background-position: top;
  background-size: cover;
}

a { color: inherit; text-decoration: none; }

.container { max-width: 980px; margin: 0 auto; padding: 18px; }

.top-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0 16px;
}

.pill {
  background: linear-gradient(to bottom, #ff4040 0%, #ff1a1a 100%);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: bold;
  box-shadow: inset 0 0 6px 3px #990000, inset 0 2px 0 0 #ff6666, inset 0 0 0 2px #660000, 3px 3px 6px 1px rgba(0,0,0,0.5);
  border: 1px solid #ff4040;
}

.hero {
  border: 2px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #000;
}

.hero img { width: 100%; display: block; }

.panel {
  margin-top: 16px;
  border: 2px solid rgba(255, 26, 26, 0.4);
  border-radius: 14px;
  background: linear-gradient(45deg, #ff4040, #ff1a1a);
  padding: 16px;
}

.h1 {
  text-align: center;
  font-size: 26px;
  letter-spacing: 1px;
  margin: 0 0 10px;
  color: #000;
  text-transform: uppercase;
  font-family: sans-serif;
  font-weight: bold;
}

.sub {
  text-align: center;
  color: #000000;
  font-size: 13px;
  margin: 6px 0 14px;
  font-weight: bold;
}

.tabs {
  border-radius: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 8px 0 14px;
  box-shadow: 0px 0px 8px #ff1a1a;
  background: #000;
  padding: 15px;
}

.tab {
  padding: 10px 18px;
  border-radius: 10px;
  background: linear-gradient(270deg, #990000 0%, #ff1a1a 21%, #ff4040 33%, #ff1a1a 44%, #cc0000 60%, #ff6666 73%, #ff4040 85%, #990000 100%);
  font-weight: bold;
  animation: gradient 6s ease infinite;
  background-size: 400% 400%;
  border: 2px solid #ff4040;
  color: white;
  cursor: pointer;
  box-shadow: 0px 0px 8px #ff1a1a;
}

.tab.active {
  background: linear-gradient(180deg, #ff4040, #ff1a1a);
  color: #fff;
}

.table-wrap { overflow: auto; border-radius: 12px; border: 1px solid var(--line); background: #000; }

table { width: 100%; border-collapse: collapse; min-width: 740px; background: rgba(0,0,0,0.65); }

th, td { padding: 10px 12px; border: 1px solid rgba(255,26,26,0.35); text-align: center; }

th {
  background: linear-gradient(45deg, #ff4040, #ff1a1a);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: #fff;
}

td { font-size: 13px; border: 1px solid rgba(255,26,26,0.25); }

td.left { text-align: left; }

.btn {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-weight: bold;
}

.btn-claim {
  background: linear-gradient(to bottom, #ff6666 0%, #ff1a1a 30%);
  color: #fff;
  border: 2px solid #ff4040;
  box-shadow: 0px 0px 8px #ff1a1a;
}

.btn-dark {
  background: rgba(0,0,0,0.7);
}

button.btn.btn-dark {
  background: rgb(140 0 0);
  color: #fff;
  border: 1px solid #ff1a1a;
}

a.btn.btn-dark {
  background: linear-gradient(270deg, rgb(140 0 0) 0%, rgb(255 26 26) 21%, rgb(255 64 64) 33%, rgb(200 0 0) 44%, rgb(255 26 26) 60%, rgb(255 102 102) 73%, rgb(200 0 0) 85%, rgb(140 0 0) 100%);
  box-shadow: 0 5px 10px 2px rgba(0,0,0,0.6);
  color: #ffffff;
  border: 2px solid #990000;
}

.footer-note {
  text-align: center;
  color: #aaa;
  font-size: 12px;
  margin: 14px 0 0;
}

.accordion-content.wcover.slide2.color-agent {
  background: #000;
  padding: 10px;
  border-radius: 15px;
}

/* admin simple */
.admin-wrap { max-width: 980px; margin: 0 auto; padding: 18px; }
.admin-card { border: 1px solid #333; border-radius: 12px; padding: 16px; background: #0f0f0f; }
.admin-top { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; }

input, select, textarea {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #333;
  background: #ffffff;
  color: #000000;
}

label { font-size: 12px; color: #000000; }

.grid { display: grid; gap: 12px; grid-template-columns: repeat(2, minmax(0, 1fr)); }

@media (max-width: 720px) {
  .grid { grid-template-columns: 1fr; }
  table { min-width: 700px; }
}

.small { font-size: 12px; color: #bbb; }

/* MOBILE RESPONSIVE FIX */
@media (max-width: 560px) {
  .container { padding: 12px; }
  .top-actions { gap: 12px; margin: 8px 0 12px; }
  .pill { padding: 8px 12px; font-size: 12px; }
  .panel { padding: 12px; }
  .h1 { font-size: 20px; }
  .sub { font-size: 12px; }
  .tabs { padding: 10px; gap: 8px; }
  .tab { padding: 8px 12px; font-size: 12px; }
  .table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  table { width: 100%; min-width: 0 !important; table-layout: fixed; }
  th, td { padding: 8px 6px; font-size: 12px; }
  th:nth-child(1), td:nth-child(1) { width: 56px; }
  th:nth-child(2), td:nth-child(2) { width: 110px; }
  th:nth-child(4), td:nth-child(4) { width: 90px; }
  td:nth-child(3) { white-space: normal; word-break: break-word; }
  .btn { padding: 6px 10px; font-size: 12px; border-radius: 9px; }
}

/* BUTTON BUKTI (HOME) */
.proofbar {
  margin-top: 14px;
  background: #000;
  border: 2px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0px 0px 8px #ff1a1a;
}

.btn-wide {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 16px;
  text-transform: uppercase;
  letter-spacing: .8px;
}

/* GALLERY BUKTI */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.gallery a {
  display: block;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 560px) {
  .proofbar { padding: 10px; }
  .btn-wide { padding: 10px 12px; font-size: 12px; }
  .gallery img { height: 160px; }
}

/* BUKTI: POSTER SLIDER */
.proof-poster-wrap {
  margin-top: 14px;
  border: 2px solid var(--line);
  border-radius: 16px;
  background: radial-gradient(circle at top, #111111 0%, #000000 65%);
  padding: 14px;
  box-shadow: 0 10px 40px rgba(255, 26, 26, 0.3);
}

.proof-poster-head {
  text-align: center;
  margin-bottom: 12px;
}

.proof-poster-head .t1 {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 18px;
  color: #fff;
}

.proof-poster-head .t2 {
  font-weight: 800;
  font-size: 12px;
  opacity: .9;
  color: #fff;
  margin-top: 4px;
}

.proof-slider.proof-poster-slider {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid rgba(255, 26, 26, 0.4);
  padding: 12px 12px 54px;
}

.proof-poster-slide a {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid rgba(255, 26, 26, 0.5);
  background: #000;
}

.proof-poster-slide img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  display: block;
  background: #000;
}

.proof-nav {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.proof-arrows { display: flex; gap: 10px; }

.proof-arrow {
  border: 1px solid rgba(255, 26, 26, 0.6);
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  width: 56px;
  height: 38px;
  border-radius: 10px;
  cursor: pointer;
}

.proof-arrow:hover { background: rgba(0, 0, 0, 0.85); }

.proof-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex: 1;
}

.proof-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 26, 26, 0.4);
  border: 1px solid rgba(255, 26, 26, 0.6);
  cursor: pointer;
}

.proof-dot.is-active {
  background: rgba(255, 26, 26, 0.95);
}

@media (max-width: 560px) {
  .proof-poster-wrap { padding: 10px; }
  .proof-poster-head .t1 { font-size: 14px; }
  .proof-slider.proof-poster-slider { padding: 10px 10px 54px; }
  .proof-poster-slide img { max-height: 420px; }
  .proof-arrow { width: 52px; font-size: 13px; }
}

/* Container styling */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}


.btn-done {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 26, 26, 0.4);
  background: rgba(0, 0, 0, 0.55);
  color: #bbb;
  font-weight: bold;
  pointer-events: none;
  cursor: not-allowed;
  opacity: .85;
}