* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: white;
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0,0,0,0.8);
    padding: 10px;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 0 15px #00eaff;
}

header img {
    height: 60px;
}

/* CONTAINER */
.container {
    width: 95%;
    max-width: 900px;
    margin: 120px auto 40px auto;
}

/* MARQUEE */
.marquee {
    overflow: hidden;
    white-space: nowrap;
    background: #000;
    padding: 8px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 12s linear infinite;
    color: #00ffea;
    font-weight: 600;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

/* BUTTONS */
.login-daftar {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 50px;
}

.btn {
    text-decoration: none;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.daftar {
    background: gold;
    color: black;
}

.login {
    background: #00eaff;
    color: black;
}

.btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px white;
}

.banner {
  width: 100%;
  overflow: hidden;
  position: relative;
    margin: 0 50px 50px 0;
    border-radius: 20px;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1.5s ease-in-out, transform 6s ease-in-out;
  opacity: 1;
}

/* efek zoom pelan */
.banner img.zoom {
  transform: scale(1.1);
}

/* MENU PREDIKSI */
.prediksi-togel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
    gap: 10px;
}

.prediksi-togel a {
    background: #111;
    padding: 10px;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: 0.3s;
}

.prediksi-togel a:hover {
    background: gold;
    color: black;
}
.prediksi-hk-pools {
    margin-top: 20px;
}
/* TABLE */
.prediksi-hk-pools h1 {
    text-align: center;
   
    margin-top: 20px;
    color: gold;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(0,0,0,0.8);
    border-radius: 10px;
    overflow: hidden;
}

th, td {
    text-align: center;
    padding: 10px;
    border: 1px solid #333;
}

th {
    background: gold;
    color: black;
}

.angka-main {
    font-size: 22px;
    font-weight: bold;
    color: #00ffea;
}

.top2d {
    text-align: center;
    font-size: 18px;
}

.promo {
    text-align: center;
    font-weight: bold;
    color: gold;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 15px;
    background: #000;
    margin-top: 20px;
    font-size: 14px;
}

.container h1 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 20px;
  border-radius: 10px;
  padding: 0 20px;
  background: linear-gradient(90deg, #ff512f, #dd2476);
  --webkit-background-clip: text;
  --webkit-text-fill-color: transparent;
}

/* ACCORDION BUTTON */
.accordion {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  color: #fff;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Hover Effect */
.accordion:hover {
  background: linear-gradient(90deg, #ff512f, #dd2476);
  transform: translateY(-3px);
}

/* Arrow Icon */
.accordion::after {
  content: "▼";
  position: absolute;
  right: 20px;
  transition: transform 0.3s ease;
}

/* Rotate Arrow when active */
.accordion.active::after {
  transform: rotate(180deg);
}

/* PANEL CONTENT */
.panel {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 0 20px;
  margin-bottom: 15px;
  color: #ddd;
}

/* When Open */
.panel.open {
  padding: 30px 20px;
}

/* List Style */
.panel ul {
  padding-left: 20px;
}

.panel li {
  margin: 6px 5px;
}

/* Background Body */
body {
  background: linear-gradient(135deg, #1f1c2c, #928dab);
  color: white;
}
        .loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(71, 71, 71, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #f3f3f3;
    border-top: 6px solid #FFD700; /* warna emas */
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}
#loading p { 
    color: white;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-overlay p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #333;
}

        /* MOBILE */
        @media (max-width: 600px) {
            .accordion {
                font-size: 14px;
                padding: 15px;
            }
        }