
:root{
  --bg1:#000000;
  --bg2:#060606;

  --panel: rgba(0,0,0,.84);
  --panel2: rgba(0,0,0,.70);

  --gold1:#aeffa6;   /* soft gold */
  --gold2:#00ff24;   /* main gold */
  --gold3:#00ff53;   /* deep gold */

  --line:  rgba(255,210,0,.22);
  --line2: rgba(255,210,0,.38);

  --glow1: rgba(255,210,0,.26);
  --glow2: rgba(255,184,0,.20);

  --text:#fff6cf;
  --muted: rgba(255,246,207,.78);

  --shadow:0 18px 45px rgb(20 85 235 / 72%);
  --wrap: 1100px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    color: #cfe0ff;
    padding: 18px 12px 42px;
    overflow-x: hidden;

    /* Background */
    background: 
        radial-gradient(1200px 560px at 50% -15%, rgba(0, 114, 255, 0.55), transparent 62%),
        radial-gradient(980px 560px at 15% 18%, rgba(0, 20, 255, 0.34), transparent 64%),
        radial-gradient(980px 560px at 85% 25%, rgba(0, 67, 255, 0.28), transparent 62%),
        radial-gradient(860px 460px at 50% 110%, rgba(0, 135, 255, 0.22), transparent 60%),
        linear-gradient(180deg, #000000 0%, var(--bg2) 55%, var(--bg1) 100%);
    
    background-repeat: no-repeat;
    background-size: cover; /* Menutupi seluruh layar */
    background-attachment: fixed; /* Opsional, supaya tidak scroll */
}


/* subtle film grain + moving glow (biar mewah) */
body::before{
  content:"";
  position:fixed; inset:0;
  pointer-events:none;
  background:
    radial-gradient(1100px 420px at 50% 0%, rgba(255,210,0,.10), transparent 60%),
    radial-gradient(900px 360px at 20% 20%, rgba(255,184,0,.08), transparent 62%),
    radial-gradient(900px 360px at 80% 30%, rgba(255,210,0,.06), transparent 62%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.018), rgba(255,255,255,.018) 1px, transparent 1px, transparent 3px);
  mix-blend-mode: screen;
  opacity:.65;
  animation: bodyGlow 7.5s ease-in-out infinite;
}
@keyframes bodyGlow{
  0%,100%{ transform: translateY(0); opacity:.55; }
  50%{ transform: translateY(-8px); opacity:.75; }
}

a{ color:inherit; text-decoration:none; }
::selection{ background: rgba(255,210,0,.22); }

.wrap{ width:min(var(--wrap), calc(100% - 14px)); margin: 0 auto; }

.topbar{
  position: sticky;
  top: 10px;
  z-index: 50;
  border-radius: 999px;
  border: 1px solid rgb(41 73 221);
  background: #041159c7;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 34px rgba(0,0,0,.65), 0 0 22px rgba(255,210,0,.10);
  overflow:hidden;
  border-radius: 15px;
}
.topbar::before{
  content:"";
  position:absolute; inset:-2px;
  background:
    radial-gradient(420px 140px at 30% 0%, rgba(0, 52, 255, 0.67), transparent 70%), linear-gradient(90deg, transparent, rgba(255, 242, 166, .16), transparent)
}
.topbar::after{
  content:"";
  position:absolute; inset:-2px;
  background: linear-gradient(120deg, transparent 12%, rgba(255,255,255,.16) 32%, transparent 54%);
  transform: translateX(-120%);
  animation: shineSweep 4.8s ease-in-out infinite;
  pointer-events:none;
  opacity:.85;
}
@keyframes shineSweep{
  0%{ transform: translateX(-120%); }
  45%{ transform: translateX(120%); }
  100%{ transform: translateX(120%); }
}

.topbar-inner{
  position:relative;
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:space-between;
  padding: 10px 12px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
}

.brand-logo{
  width: min(150px, 46vw);
  height:auto;
  display:block;
  border-radius: 12px;
  border: 1px solid var(--line2);
  box-shadow:
    0 10px 22px rgba(0,0,0,.75),
    0 0 22px rgba(255,210,0,.14);
  background:#000;
}

.brand-text{
  display:flex;
  flex-direction:column;
  min-width:0;
}
.brand-text b{
  font-size: 13px;
  letter-spacing:.7px;
  text-transform:uppercase;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.brand-text span{
  font-size: 11.5px;
  color: rgb(255 255 255);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.top-actions{
  display: flex;
  gap: 10px;
  width: 100%;
}

.btn{
  flex: 1;     
  display: flex;
  align-items: center;
  justify-content: center;

  height: 50px;
  padding: 0 20px;

  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;

  border-radius: 8px;
  border: 1px solid transparent;
  box-shadow: 0 12px 22px rgba(0,0,0,.55);

  position: relative;
  overflow: hidden;
  cursor: pointer;
  user-select: none;

  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}

.btn::after{
  content:"";
  position:absolute;
  inset:-2px;
  background: linear-gradient(120deg, transparent 15%, rgba(255,255,255,.24) 32%, transparent 55%);
  transform: translateX(-120%);
  animation: shineBtn 3.9s ease-in-out infinite;
  pointer-events:none;
}

@keyframes shineBtn{
  0%{ transform: translateX(-120%); }
  45%,100%{ transform: translateX(120%); }
}

.btn-primary{
  background: linear-gradient(135deg, #00a1ff 0%, #a2d0ff 45%, #00a1ff 100%);
  color: #010004;
  border-color: rgb(0 86 255 / 62%);
  box-shadow: 0 12px 24px rgba(0,0,0,.6), 0 0 28px rgba(255,210,0,.14);
}

.btn-ghost{
  background: linear-gradient(135deg, #a2d0ff 0%, #00a1ff 45%, #a2d0ff 100%);
  color: #010004;
  border-color: rgb(0 86 255 / 62%);
  box-shadow: 0 12px 24px rgba(0,0,0,.6), 0 0 28px rgba(255,210,0,.14);
}

.btn:hover{
  transform: translateY(-1px);
  filter: saturate(1.08);
}
.btn:active{
  transform: translateY(0);
}

.hero{
  margin-top: 14px;
  border-radius: 24px;
  border: 1px solid rgb(41 73 221);
  background: #041159c7;
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}
.hero::before{
  content:"";
  position:absolute; inset:-2px;
  background: linear-gradient(90deg, transparent, rgba(255, 210, 0, .18), transparent);
  opacity:.85;
  pointer-events:none;
}
.hero::after{
  content:"";
  position:absolute; inset:-2px;
  background: linear-gradient(120deg, transparent 12%, rgba(255,255,255,.10) 32%, transparent 54%);
  transform: translateX(-130%);
  animation: shineSweep 6.2s ease-in-out infinite;
  pointer-events:none;
  opacity:.75;
}

.hero-grid{
  position:relative;
  display:grid;
  gap: 12px;
  grid-template-columns: 1.1fr .9fr;
  padding: 14px;
}
@media (max-width: 860px){
  .hero-grid{ grid-template-columns: 1fr; }
}

.hero-media{
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid var(--line);
  position:relative;
  background:#000;
  box-shadow: 0 16px 40px rgba(0,0,0,.6);
}
.hero-media img{
  width:100%;
  height:auto;
  display:block;
  border: 1px solid rgb(41 73 221);
  object-fit: cover;
}
.hero-media::after{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,.74) 100%),
    radial-gradient(520px 180px at 50% 100%, rgba(255, 210, 0, .24), transparent 65%);
  pointer-events:none;
}

.hero-badges{
  position:absolute;
  left: 12px; right: 12px; bottom: 12px;
  display:flex;
  gap: 8px;
  flex-wrap:wrap;
  z-index:2;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #020a399c;
  border: 1px solid rgb(41 73 221);
  color: #00fdff;
  font-weight: 950;
  font-size: 12px;
  letter-spacing:.4px;
  box-shadow: 0 12px 24px rgba(0,0,0,.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.dot{
  width: 9px; height: 9px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffffff, var(--gold2));
  box-shadow: 0 0 0 3px rgba(255, 210, 0, .18), 0 0 16px rgba(255, 210, 0, .36);
  animation: dotBlink 1.15s ease-in-out infinite;
}
@keyframes dotBlink{
  0%,100%{ opacity:1; transform:scale(1); }
  50%{ opacity:.35; transform:scale(.9); }
}

.hero-side{
  border-radius: 18px;
  border: 1px solid rgb(41 73 221);
  background: #041159c7;
  padding: 14px;
  position:relative;
  overflow:hidden;
  box-shadow: 0 14px 32px rgba(0,0,0,.55);
}
.hero-side::after{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(520px 220px at 70% 0%, rgba(255, 210, 0, .20), transparent 70%);
  pointer-events:none;
}

.hero-title{
  position:relative;
  margin: 0 0 6px;
  font-size: 18px;
  line-height:1.25;
  font-weight: 950;
  letter-spacing:.7px;
  text-transform: uppercase;
}
.hero-sub{
  position:relative;
  margin: 0 0 12px;
  color: rgb(255 255 255);
  font-size: 13px;
  line-height:1.5;
}

.quick-card{
  border-radius: 16px;
  border: 1px solid rgb(41 73 221);
  background: linear-gradient(180deg, rgba(0,0,0,.72), rgba(0,0,0,.45));
  padding: 12px;
  box-shadow: 0 12px 26px rgba(0,0,0,.6), 0 0 18px rgba(255,210,0,.08);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
  position:relative;
  overflow:hidden;
}
.quick-card::after{
  content:"";
  position:absolute; inset:-2px;
  background: linear-gradient(120deg, transparent 18%, rgba(255,255,255,.12) 33%, transparent 55%);
  transform: translateX(-120%);
  animation: shineBtn 5.2s ease-in-out infinite;
  pointer-events:none;
  opacity:.7;
}
.quick-card:hover{
  transform: translateY(-2px);
  border-color: rgba(255,210,0,.34);
  box-shadow: 0 14px 30px rgba(0,0,0,.62), 0 0 28px rgba(255,210,0,.10);
}
.quick-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}
.quick-row b{
  font-size: 13px;
  letter-spacing:.5px;
  text-transform: uppercase;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 7px 10px;
  border-radius: 10px;
  background: #041159c7;
  border: 1px solid rgb(41 73 221);
  font-size: 12px;
  font-weight: 950;
  color: #00fdff;
  white-space: nowrap;
}

.main{
  margin-top: 14px;
  border-radius: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}
.main::before{
  content:"";
  position:absolute; inset:-2px;
  background: linear-gradient(90deg, transparent, rgba(255, 210, 0, .16), transparent);
  opacity:.9;
  pointer-events:none;
}
.main::after{
  content:"";
  position:absolute; inset:-2px;
  background: linear-gradient(120deg, transparent 12%, rgba(255,255,255,.12) 32%, transparent 54%);
  transform: translateX(-130%);
  animation: shineSweep 7.1s ease-in-out infinite;
  pointer-events:none;
  opacity:.7;
}
.main-inner{
  position:relative;
  padding: 16px;
  background: #041159c7;
  border:1px solid #2949dd;
}

.title{
  margin: 6px 0 8px;
  text-align:center;
  font-size: 20px;
  font-weight: 980;
  letter-spacing: .7px;
  text-transform: uppercase;
}
.title span{
  background: linear-gradient(135deg, #ffffff, var(--gold2), var(--gold3));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  text-shadow: 0 0 20px rgba(255,210,0,.12);
}
.date{
  margin: 0 0 14px;
  text-align:center;
  color: rgb(255 255 255);
  font-weight: 850;
  letter-spacing:.3px;
}


#searchBox{
  width: min(720px, 100%);
  height: 54px;
  border-radius: 16px;
  border: 1px solid rgb(41 73 221);
  padding: 0 16px;
  font-size: 16px;
  color: var(--text);
  background: linear-gradient(180deg, rgba(0,0,0,.65), rgba(0,0,0,.35));
  box-shadow: 0 12px 26px rgba(0,0,0,.65), 0 0 26px rgba(255,210,0,.12);
  outline: none;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
#searchBox:focus{
  border-color: rgba(255, 210, 0, .62);
  box-shadow: 0 12px 26px rgba(0,0,0,.65), 0 0 36px rgba(255,210,0,.18);
  transform: translateY(-1px);
}

.hint{
  text-align:center;
  font-size: 12px;
  margin-top: 8px;
  color: var(--text);
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,210,0,.26);
  background:
    radial-gradient(420px 140px at 50% 0%, rgba(255,210,0,.16), transparent 70%),
    linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.25));
  box-shadow: 0 12px 26px rgba(0,0,0,.65), 0 0 18px rgba(255,210,0,.08);
  position:relative;
  overflow:hidden;
}
.hint::before{
  content:"";
  position:absolute;
  left:14px; top:50%;
  width:8px; height:8px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: linear-gradient(180deg, #ffffff, var(--gold2));
  box-shadow: 0 0 0 4px rgba(255,210,0,.16), 0 0 18px rgba(255,210,0,.34);
  animation: dotBlink 1.2s ease-in-out infinite;
}
.hint::after{
  content:"";
  position:absolute; inset:-2px;
  background: linear-gradient(120deg, transparent 15%, rgba(255,255,255,.16) 33%, transparent 55%);
  transform: translateX(-120%);
  animation: shineBtn 4.6s ease-in-out infinite;
  pointer-events:none;
  opacity:.85;
}

.hint{
  animation: hintPulse 2.2s ease-in-out infinite;
}
@keyframes hintPulse{
  0%,100%{ filter: brightness(1); }
  50%{ filter: brightness(1.18); }
}

.countries{
  display:grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0,1fr));
  margin-top: 14px;
}
@media (max-width: 860px){
  .countries{ grid-template-columns: 1fr; }
}

details.country{
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--panel2);
  box-shadow: 0 14px 34px rgba(0,0,0,.62);
  overflow:hidden;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
  position:relative;
}
details.country::after{
  content:"";
  position:absolute; inset:-2px;
  background: linear-gradient(120deg, transparent 18%, rgba(255,255,255,.08) 34%, transparent 55%);
  transform: translateX(-120%);
  animation: shineBtn 8.2s ease-in-out infinite;
  pointer-events:none;
  opacity:.55;
}
details.country:hover{
  transform: translateY(-2px);
  border-color: rgba(255, 210, 0, .34);
  box-shadow: 0 16px 38px rgba(0,0,0,.64), 0 0 22px rgba(255,210,0,.08);
}

summary.country-head{
  list-style:none;
  cursor:pointer;
  padding: 12px 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  background: #041159c7;
  position:relative;
  border: 1px solid rgb(41 73 221);
}
summary.country-head::-webkit-details-marker{ display:none; }

.country-name{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
  font-weight: 960;
  letter-spacing:.45px;
  text-transform: uppercase;
  font-size: 13px;
}


.chev{
  width: 38px; height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(255, 210, 0, .24);
  display:grid;
  place-items:center;
  background: rgba(0,0,0,.35);
  box-shadow: 0 10px 22px rgba(0,0,0,.55), 0 0 18px rgba(255,210,0,.10);
  flex: 0 0 auto;
  position:relative;
  overflow:hidden;
}
.chev::before{
  content:"";
  position:absolute; inset:-2px;
  border-radius: 14px;
  border: 1px solid rgba(255,210,0,.18);
  box-shadow: 0 0 18px rgba(255,210,0,.10);
  animation: ringBlink 1.8s ease-in-out infinite;
}
@keyframes ringBlink{
  0%,100%{ opacity:.55; }
  50%{ opacity:1; }
}
.chev svg{ width: 18px; height: 18px; fill: var(--gold2); transition: transform .2s ease; }
details[open] .chev svg{ transform: rotate(180deg); }

table{
  width:100%;
  border-collapse: collapse;
  overflow:hidden;
  background: rgba(0,0,0,.22);
}
th, td{
  padding: 12px 10px;
  text-align:center;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 210, 0, .12);
}
thead th{
  background: linear-gradient(135deg, #00a1ff 0%, #a2d0ff 45%, #00a1ff 100%);
  color: #0b0700;
  font-weight: 980;
  letter-spacing:.6px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 210, 0, .22);
}
tbody tr:nth-child(even){ background: rgba(255, 210, 0, .05); }
tbody tr:hover{ background: rgba(255, 210, 0, .10); }
tbody td:first-child{
  font-weight: 950;
  color: rgba(255,246,207,.92);
  text-transform: uppercase;
  letter-spacing:.3px;
}
tbody td:last-child{
  color: #ffffff;
  font-weight: 950;

}

.banner-img{
  width:100%;
  height:auto;
  display:block;
  border-radius: 18px;
  border: 1px solid rgba(255, 210, 0, .20);
  box-shadow: 0 16px 44px rgba(0,0,0,.72), 0 0 28px rgba(255,210,0,.12);
  transition: transform .22s ease, filter .22s ease, border-color .22s ease, box-shadow .22s ease;
  background:#000;
}
.banner-img:hover{
  transform: translateY(-2px);
  border-color: rgba(255, 210, 0, .40);
  filter: saturate(1.10) contrast(1.05);
  box-shadow: 0 18px 46px rgba(0,0,0,.74), 0 0 40px rgba(255,210,0,.14);
}

.float-top{
  position: fixed;
  right: 14px;
  bottom: 16px;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255, 210, 0, .22);
  box-shadow: 0 16px 44px rgba(0,0,0,.72), 0 0 22px rgba(255,210,0,.12);
  display:grid;
  place-items:center;
  cursor:pointer;
  z-index: 80;
  opacity: .95;
  transition: transform .2s ease, opacity .2s ease, box-shadow .2s ease;
  overflow:hidden;
}
.float-top::after{
  content:"";
  position:absolute; inset:-2px;
  background: linear-gradient(120deg, transparent 15%, rgba(255,255,255,.16) 33%, transparent 55%);
  transform: translateX(-120%);
  animation: shineBtn 4.8s ease-in-out infinite;
  pointer-events:none;
  opacity:.8;
}
.float-top:hover{
  transform: translateY(-2px);
  opacity: 1;
  box-shadow: 0 18px 48px rgba(0,0,0,.74), 0 0 30px rgba(255,210,0,.14);
}
.float-top svg{ width: 18px; height: 18px; fill: var(--gold2); }
.logo-wrap{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0;
}

.logo-wrap img{
  max-width: 100%;        
  height: auto;           
  object-fit: contain;   
}

.search-wrap{
  width:100%;
  display:flex;
  justify-content:center;   
  align-items:center;
  margin: 14px auto 10px;
}

.search-wrap #searchBox{
  width: min(720px, 100%);  
  margin: 0 auto;
  display:block;
}

/* Mobile */
@media (max-width: 520px){
  .search-wrap #searchBox{
    width: 100%;
  }
}

.Owtoto-hint{
  margin:16px 0;
  padding:12px 14px;
  text-align:center;
  font-size:14px;
  font-weight:700;
  letter-spacing:.3px;
  color:#ffffff;
  background:linear-gradient(180deg,#0b0b12,#05060b);
  border:1px solid rgba(255,216,117,.35);
  border-radius:8px;
  box-shadow:
    0 0 12px rgba(255,200,80,.25),
    inset 0 0 10px rgba(255,200,80,.08);
  animation:softPulse 2.6s ease-in-out infinite;
}

.Owtoto-hint .blink-dot{
  color:#ffcc00;
  margin-right:6px;
  animation:blinkDot 1.2s infinite;
}

.Owtoto-hint .gold-text{
  color:#ffffff;

}

@keyframes blinkDot{
  0%,100%{opacity:1}
  50%{opacity:.25}
}

@keyframes softPulse{
  0%,100%{
    box-shadow:
      0 0 10px rgba(255,200,80,.25),
      inset 0 0 8px rgba(255,200,80,.08);
  }
  50%{
    box-shadow:
      0 0 22px rgba(255,200,80,.55),
      inset 0 0 14px rgba(255,200,80,.18);
  }
}


@media (prefers-reduced-motion: reduce){
  body::before,
  .topbar::after,
  .btn::after,
  .quick-card::after,
  .main::after,
  details.country::after,
  .hint,
  .hint::after,
  .dot,
  .chev::before,
  .float-top::after{
    animation:none !important;
  }
  details.country:hover, .btn:hover, .banner-img:hover, .float-top:hover{ transform:none !important; }
}
