* {
    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: 1000px;
    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: 20px;
}

.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 */
.banner img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 0 20px #00eaff;
    margin-bottom: 15px;
    margin-top: 15px;
}

/* MENU PREDIKSI */
.prediksi-togel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.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;
}

/* TABLE */
.prediksi-hk-pools h1 {
    text-align: center;
    margin-bottom: 10px;
    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;
}
 h1 {
            text-align: center;
            color: #f0b429;
            margin-bottom: 30px;
        }

        /* ACCORDION STYLE */
        .accordion {
  background-color: #eee;
  cursor: pointer;
  padding: 15px;
  width: 100%;
  border: none;
  outline: none;
  transition: background-color 0.3s ease;
  text-align: left;
  font-size: 16px;
  margin-top: 5px;
}

.accordion.active {
  background-color: #7ae68c;
}

.panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: #8f8d8d;
  padding: 0 15px;
}
.panel p, .panel ul {
  margin: 10px 0;
}
        .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;
            }
        }