/* ========================================================
   BAGIAN 1: CSS MURNI VERSI MOBILE - SUHUTOTO88 PREMIUM
   ======================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  background: radial-gradient(circle at center, #420202 0%, #1c0101 60%, #0d0000 100%);
  color: #f1f5f9;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 75px 0 30px 0; /* Jarak atas pas dengan tinggi header */
  position: relative;
}

/* Efek pancahayaan kilat petir samar di latar belakang */
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 102, 0, 0.12) 0%, transparent 40%),
              radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

header,
.hero-banner,
.search-filter-section,
.dashboard-container,
.floating-container {
  position: relative;
  z-index: 1;
}

/* --- FIXED MOBILE HEADER (PRESISI & SIMETRIS) --- */
header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px; /* Batas maksimal lebar layar HP */
  height: 60px;
  padding: 0 10px;
  background: linear-gradient(to bottom, #210101, #0d0000);
  border-bottom: 2px solid #b7791f;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

.logo img {
  width: 75px;
  height: auto;
  animation: denyut 2s infinite ease-in-out;
}

@keyframes denyut {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 0px rgba(183, 121, 31, 0));
  }
  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 12px rgba(183, 121, 31, 0.8));
  }
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0px rgba(183, 121, 31, 0));
  }
}

.menu-kanan {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Tombol Masuk & Daftar Sesuai Gambar Mobile */
.btn-masuk,
.btn-daftar {
  font-size: 11px;
  font-weight: 800;
  padding: 0 12px;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px; /* Mengunci tinggi tombol agar simetris sejajar */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  transition: all 0.2s ease;
}

.btn-masuk {
  background: linear-gradient(to bottom, #ffffff, #dcdcdc);
  color: #800000;
  border: 1px solid #ffffff;
}

.btn-masuk:hover {
  background: #000000;
  color: #ffffff;
  border-color: #b7791f;
}

.btn-daftar {
  background: linear-gradient(to bottom, #d32f2f, #7f0000);
  color: #ffffff;
  border: 1px solid #ff5252;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-daftar:hover {
  filter: brightness(1.2);
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.5);
}

/* --- PREMIUM HERO BANNER MOBILE --- */
.hero-banner {
  width: 100%;
  max-width: 480px;
  background: radial-gradient(circle at center, #5c0505 0%, #1a0202 100%);
  text-align: center;
  padding: 26px 12px;
  border-bottom: 1px solid #9a1a1a;
  overflow: hidden;
}

.hero-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, #f59e0b, transparent);
}

.banner-title {
  font-size: 16px;
  font-weight: 700;
  color: #cbd5e1;
  letter-spacing: 0.1em;
}

.banner-brand {
  font-size: 26px;
  font-weight: 900;
  background: linear-gradient(to bottom, #fff3cc, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
  margin-bottom: 4px;
}

.banner-subtitle {
  font-size: 11px;
  color: #b0b0b0;
}
/* ========================================================
   BAGIAN 2: LIVE SEARCH, GRID KARTU & INTERIOR KOMPONEN HP
   ======================================================== */
.dashboard-container {
  width: 100%;
  max-width: 480px; 
  padding: 0 12px;
  margin-top: 5px;
}

.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 10px;
}

.header-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.accent-bar {
  width: 4px;
  height: 18px;
  background: linear-gradient(to bottom, #ffc107, #ff3333);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(255, 51, 51, 0.5);
}

.header-title h1 {
  font-size: 14px;
  font-weight: 800;
  color: #ff3333;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.timezone-badge {
  font-size: 11px;
  font-weight: bold;
  color: #ffffff;
  background: linear-gradient(to bottom, #d32f2f, #5c0505);
  padding: 4px 8px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-text {
  font-size: 11px;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 0 0 5px rgb(0, 0, 0);
}

.grid-pasaran {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* --- KARTU DESAIN KACA MEWAH MOBILE --- */
.card-pasaran {
  background: linear-gradient(135deg, rgba(66, 5, 5, 0.85) 0%, rgba(20, 2, 2, 0.95) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(245, 158, 11, 0.35); 
  border-radius: 16px;
  padding: 18px;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
}

.card-pasaran::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background: radial-gradient(circle at top right, rgba(245,158,11,0.12), transparent 60%);
  pointer-events: none;
}

.card-header h2 {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
  text-transform: uppercase;
}

.card-header p {
  font-size: 11px;
  color: #ffaa00; 
  font-weight: 600;
  margin-bottom: 14px;
}

/* --- INTERIOR ANGKA UTAMA --- */
.numbers-section {
  display: grid;
  grid-template-columns: 2.1fr 0.9fr; 
  gap: 10px;
  margin-bottom: 16px;
}

.col-angka-main,
.col-colok {
  display: flex;
  flex-direction: column;
}

.label-text {
  font-size: 10px;
  text-transform: uppercase;
  color: #f59e0b;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 5px;
}

.box-number-main {
  background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
  color: #0f172a;
  font-weight: 900;
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 26px;
  letter-spacing: 0.1em;
  box-shadow: inset 0 -3px 0 rgba(0,0,0,0.15), 0 4px 12px rgba(0,0,0,0.4);
  text-shadow: 1px 1px 0px #ffffff;
}

.colok-flex {
  display: flex;
  flex-direction: column;
  gap: 5px;
  height: 100%;
}

.box-number-colok {
  background: linear-gradient(180deg, #5c0505 0%, #140202 100%); 
  color: #ffffff; 
  font-weight: 900;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  font-size: 18px;
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 6px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.5), 0 2px 5px rgba(0,0,0,0.2);
  text-shadow: 0 0 8px rgba(245, 158, 11, 0.5);
}

/* --- SEKTOR BAWAH INTERIOR KARTU --- */
.bottom-section {
  display: grid;
  grid-template-columns: 0.9fr 3.1fr; 
  gap: 12px;
  align-items: stretch;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
}

.shio-box {
  text-align: center;
  background: #420202; 
  padding: 6px;
  border-radius: 10px;
  border: 1.5px solid #d97706; 
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.7), 0 4px 10px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.shio-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  overflow: hidden;
}

.foto-shio-item {
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.7));
}

.top-numbers-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}

.label-sub-text {
  font-size: 10px;
  text-transform: uppercase;
  color: #ffaa00; 
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
  display: block;
}

div:nth-child(2) > .label-sub-text {
  color: #ffffff;
}

.badge-container {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.badge-item-2d {
  background: linear-gradient(135deg, #1e0202 0%, #0d0000 100%);
  border: 1.5px solid #f59e0b;
  padding: 4px 7px;
  border-radius: 5px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 3px 6px rgba(0,0,0,0.5);
  text-shadow: 0 0 4px rgba(245, 158, 11, 0.6);
}

.badge-item-3d {
  background: linear-gradient(135deg, #3a0000 0%, #0d0000 100%);
  border: 1.5px solid #ff3333;
  padding: 4px 6px;
  border-radius: 5px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 3px 6px rgba(0,0,0,0.5);
  text-shadow: 0 0 4px rgba(255, 51, 51, 0.6);
}

/* --- TOMBOL LIVE SEARCH & FILTER AREA HP --- */
.search-filter-section {
  width: 100%;
  margin-bottom: 20px;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.search-input-wrapper {
  position: relative;
  width: 100%;
}

.search-box {
  width: 100%;
  padding: 12px 16px;
  background: rgba(20, 2, 2, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(245, 158, 11, 0.35); 
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  outline: none;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.6);
  transition: all 0.2s ease;
}

.search-box:focus {
  border-color: #f59e0b;
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.5), inset 0 2px 4px rgba(0, 0, 0, 0.6);
}

.search-box::placeholder {
  color: #5c4141;
}

.filter-tags {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none; 
}

.filter-tags::-webkit-scrollbar {
  display: none; 
}

.tag-btn {
  background: linear-gradient(to bottom, #d32f2f, #7f0000); 
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  letter-spacing: 0.03em;
}

.tag-btn:hover {
  border-color: #f59e0b;
  color: #ffffff;
}

.tag-btn.active {
  background: linear-gradient(to bottom, #f59e0b, #d97706); 
  color: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.4);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.card-pasaran.hidden {
  display: none !important;
}

/* --- INTERFACES BUTTON FIXED BOTTOM --- */
.floating-container {
  position: fixed;
  bottom: 20px;
  left: 15px;
  display: flex;
  flex-direction: column-reverse;
  gap: 12px;
  z-index: 99999;
}

.floating-btn {
  width: 65px; 
  height: 65px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  position: relative;
  animation: denyutRadar 2s infinite ease-in-out;
}

.floating-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain; 
  display: block;
}

.floating-container a:nth-child(2) { 
  animation-delay: 0.4s; 
}

.floating-container a:nth-child(3) { 
  animation-delay: 0.8s; 
}

@keyframes denyutRadar {
  0% { 
    transform: scale(1); 
    box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.6); 
  }
  70% { 
    transform: scale(1.02); 
    box-shadow: 0 0 0 15px rgba(245, 158, 11, 0); 
  }
  100% { 
    transform: scale(1); 
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); 
  }
}

.desktop-version-container { 
  display: flex; 
  align-items: center; 
  gap: 6px; 
  text-decoration: none; 
  background: rgba(66, 5, 5, 0.6); 
  border: 1px solid rgba(245, 158, 11, 0.25); 
  padding: 6px 12px; 
  border-radius: 20px; 
  box-shadow: 0 4px 10px rgba(0,0,0,0.4); 
  transition: 0.2s ease; 
}

.desktop-version-container:active { 
  transform: scale(0.95); 
  background: rgba(245, 158, 11, 0.2); 
  border-color: #f59e0b; 
}

.desktop-text { 
  color: #ffffff; 
  font-size: 11px; 
  font-weight: 800; 
  text-transform: uppercase; 
  letter-spacing: 0.5px; 
}

.desktop-icon-img { 
  height: 16px; 
  width: auto; 
  object-fit: contain; 
  animation: iconUpDown 1.8s infinite ease-in-out; 
}

@keyframes iconUpDown {
  0% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}

.icon-phone { 
  width: 20px; 
  height: 20px; 
  object-fit: contain; 
  display: inline-block; 
  vertical-align: middle; 
  animation: floatingPhone 2s ease-in-out infinite; 
}

@keyframes floatingPhone { 
  0% { transform: translateY(0); } 
  50% { transform: translateY(-5px); } 
  100% { transform: translateY(0); } 
}
/* ========================================================
   EFEK ANIMASI TEKS GRADASI EMAS (GOLD REFLECTION)
   ======================================================== */
.banner-brand {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  
  /* Membuat dasar gradasi warna emas metalik mewah */
  background: linear-gradient(
    90deg, 
    #ffe699 0%, 
    #f59e0b 25%, 
    #ffffff 50%, 
    #f59e0b 75%, 
    #ffe699 100__
  );
  
  /* Mengunci ukuran background agar efek kilatan cahaya bisa digeser */
  background-size: 200% auto;
  
  /* Memotong background agar hanya muncul di dalam bentuk huruf/teks */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  
  /* Efek bayangan pendaran aura emas di belakang tulisan */
  filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.4));
  
  /* Menjalankan animasi kilatan cahaya emas bergerak terus-menerus */
  animation: kilatEmas 4s linear infinite;
}

/* Logika pergerakan refleksi kilatan cahaya dari kiri ke kanan */
@keyframes kilatEmas {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}
.hidden {
    display: none !important;
}
/* ===================================================
   KODE CSS SEO UTAMA — VERSI PALING RAPI & PREMIUM
   =================================================== */

.seo-content-section {
    display: block !important;
    clear: both !important;
    box-sizing: border-box !important;
    width: auto !important;
    margin: 35px 15px 110px 15px !important;
    padding: 25px !important;
    
    /* Sentuhan Mewah: Latar belakang gelap pekat dengan bias cahaya (glow) emas tipis di tepi */
    background: #110d0a !important; 
    border: 1px solid rgba(255, 204, 0, 0.15) !important; 
    border-radius: 16px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), inset 0 1px 2px rgba(255, 255, 255, 0.05);
    
    /* Tipografi Standar Apple & Google Modern */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
    font-size: 13.5px !important;
    color: #b5a499 !important; /* Warna teks hangat, tidak bikin mata perih */
    line-height: 1.85 !important;
    text-align: justify !important;
}

/* Judul Artikel SEO */
.seo-content-section .seo-title,
.seo-content-section h3 {
    display: block !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    line-height: 1.4 !important;
    border-left: 4px solid #ffcc00 !important; /* Aksen Kuning Emas SUHUTOTO88 */
    padding-left: 12px !important;
    margin: 0 0 18px 0 !important;
}

/* Sub-Judul Artikel SEO */
.seo-content-section .seo-subtitle,
.seo-content-section h4 {
    display: block !important;
    color: #f5eae2 !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    margin: 26px 0 10px 0 !important;
    line-height: 1.4 !important;
}

/* Paragraf */
.seo-content-section p {
    display: block !important;
    margin: 0 0 14px 0 !important;
}

/* Penonjolan Kata Kunci (Keywords Utama) */
.seo-content-section strong {
    color: #ffcc00 !important; 
    font-weight: 700 !important;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.1);
}

/* Sorotan Nama Pasaran (SGP, HK, Macau) */
.seo-content-section em {
    color: #ffffff !important;
    font-style: normal !important;
    font-weight: 600 !important;
    background: rgba(255, 204, 0, 0.08) !important;
    padding: 2px 6px !important;
    border-radius: 4px !important;
    border: 1px solid rgba(255, 204, 0, 0.1) !important;
}

/* List Kustom */
.seo-content-section ul {
    display: block !important;
    list-style: none !important;
    padding-left: 0 !important;
    margin: 15px 0 20px 0 !important;
}

.seo-content-section ul li {
    position: relative !important;
    display: block !important;
    padding-left: 22px !important;
    margin-bottom: 10px !important;
    color: #a8978c !important;
}

/* Pengganti Bulatan List: Simbol Diamond Emas Mini (Lebih Mewah) */
.seo-content-section ul li::before {
    content: "◆" !important;
    position: absolute !important;
    left: 2px !important;
    top: 0 !important;
    color: #ffcc00 !important;
    font-size: 11px !important;
}


/* ===================================================
   SISTEM SINKRONISASI RESPONSIF SELULER (MAX 480PX)
   =================================================== */
@media screen and (max-width: 480px) {
    
    /* 1. HEADER MOBILE (Presisi & Rata Kanan-Kiri) */
    header {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 12px 15px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        background: #0d0a08 !important;
        border-bottom: 1px solid #1c1511 !important;
    }
    
    header .logo img {
        height: 30px !important;
        width: auto !important;
    }

    .desktop-version-container {
        display: none !important; 
    }
    
    .container-tombol {
        display: flex !important;
        gap: 8px !important;
    }

    /* Efek Interaktif Tombol Masuk/Daftar Saat Ditekan Jempol */
    .container-tombol button {
        transition: transform 0.1s ease, filter 0.1s ease !important;
    }
    .container-tombol button:active {
        transform: scale(0.95) !important; /* Efek membal saat diklik */
        filter: brightness(0.8) !important;
    }

    /* 2. GRID KARTU ANGKA (Satu Baris Vertikal Sempurna) */
    .grid-pasaran {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        padding: 15px 10px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        gap: 16px !important;
    }

    .card-pasaran {
        width: 100% !important; /* Kartu penuh mengikuti lebar layar */
        max-width: 420px !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        transition: background 0.2s ease !important;
    }
    
    .card-pasaran:active {
        background: #231b15 !important; /* Efek feedback visual saat kartu ditekan */
    }

    /* 3. INTERNAL PANEL ANGKA */
    .numbers-section {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
    }

    /* 4. OPTIMASI ARTIKEL SEO KHUSUS LAYAR HP */
    .seo-content-section {
        margin: 20px 12px 140px 12px !important; /* Batas bawah aman dari floating button */
        padding: 18px !important;
        font-size: 12.5px !important;
        line-height: 1.75 !important;
        border-radius: 12px !important;
    }

    /* 5. FLOATING CONTAINER (Tombol Sosmed Melayang) */
    .floating-container {
        position: fixed !important;
        bottom: 20px !important;
        left: 16px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        z-index: 99999 !important;
    }

    .floating-btn img {
        width: 48px !important;
        height: 48px !important;
        filter: drop-shadow(0 6px 12px rgba(0,0,0,0.6)) !important;
        transition: transform 0.1s ease !important;
    }
    
    .floating-btn:active img {
        transform: scale(0.9) !important; /* Efek membal saat tombol WA/Telegram ditekan */
    }
}
