:root {
    --primary: #ff0000;
    --dark: #000000;
    --darker: #0a0a0a;
    --accent: #cc0000;
    --text: #ffffff;
    --star: yellow;
    --card-bg: rgba(30,30,30,0.95);
}

body {
    background: linear-gradient(to bottom, var(--darker), var(--dark));
    color: var(--text);
    font-family: 'Segoe UI', sans-serif;
    padding-bottom: 100px;
    margin: 0;
}

.navbar {
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,0,0,0.3);
}

.navbar-brand {
    color: var(--primary) !important;
    font-weight: bold;
    font-size: 1.8rem;
}

.nav-link {
    color: #fff !important;
}

.nav-link:hover {
    color: #ffffff !important;
}

.hero {
    min-height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.9)), url('https://www.tiradalargapodcast.com/images/tarungtoto.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(255,0,0,0.6);
}

.btn-premium {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    color: #fff;
    font-weight: bold;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(255,0,0,0.4);
    transition: all 0.3s;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255,0,0,0.6);
}

.section {
    padding: 80px 0;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.card-premium {
    background: linear-gradient(to right, #ffffff, #a3a3a3);
    border: 1px solid rgba(255,0,0,0.4);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: all 0.4s;
    height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px;
    text-align: center;
}

.card-premium:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(255,0,0,0.5);
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255,0,0,0.5);
}

.bonus-badge {
    background: var(--primary);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: bold;
    display: inline-block;
    margin: 15px 0;
    box-shadow: 0 5px 15px rgba(255,0,0,0.4);
}

.footer {
    background: var(--darker);
    border-top: 1px solid rgba(255,0,0,0.2);
    padding: 50px 0 100px;
    text-align: center;
}

.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    background: #25D366;
    color: #FFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 30px;
    box-shadow: 2px 2px 10px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.bottom-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.92);
    border-top: 2px solid var(--primary);
    padding: 12px 0;
    text-align: center;
    z-index: 999;
    font-size: 0.95rem;
    backdrop-filter: blur(5px);
}

.bottom-cta .btn {
    padding: 10px 20px;
    font-size: 1rem;
    margin: 0 8px;
    min-width: 160px;
    border-radius: 50px;
}

.article-section {
    background: rgba(10,10,10,0.7);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid rgba(255,0,0,0.3);
}

.table {
    --bs-table-bg: rgba(20,20,20,0.9);
    --bs-table-color: var(--text);
    --bs-table-striped-bg: rgba(30,30,30,0.9);
    --bs-table-striped-color: var(--text);
    --bs-table-hover-bg: rgba(40,40,40,0.9);
    border: 1px solid rgba(255,0,0,0.3);
}

.table thead th {
    background: var(--primary);
    color: #000;
    text-shadow: 0 0 5px #fff;
    border-bottom: 2px solid #000;
    font-weight: bold;
}

.table td, .table th {
    border-color: rgba(255,0,0,0.2);
    padding: 12px;
}

.table-hover tbody tr:hover {
    background: rgba(255,0,0,0.15) !important;
}

.accordion-item {
    background: rgba(20,20,20,0.9);
    border: 1px solid rgba(255,0,0,0.4);
    border-radius: 10px !important;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.accordion-button {
    background: linear-gradient(to right, #111, #222);
    color: #fff;
    font-weight: bold;
    border: none;
    box-shadow: none !important;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(to right, var(--primary), var(--accent));
    color: #000;
    box-shadow: 0 0 15px rgba(255,0,0,0.5);
}

.accordion-button:focus {
    box-shadow: none !important;
}

.accordion-body {
    background: #111;
    color: var(--text);
    border-top: 1px solid rgba(255,0,0,0.3);
    font-size: 1rem;
    line-height: 1.6;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    filter: brightness(0) invert(1);
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.carousel-item .card-premium {
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
    background: linear-gradient(to right, #020202, #1e1e1e);
    border: 1px solid rgba(255,0,0,0.5);
}

.carousel-item p {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 0 0 5px rgba(0,0,0,0.8);
    line-height: 1.5;
}

.carousel-item small {
    font-size: 1rem;
    color: var(--primary);
    font-weight: bold;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: var(--primary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    opacity: 0.8;
}

/* Jackpot Counter Style */
.jackpot-counter {
    background: rgba(0,0,0,0.6);
    border-radius: 15px;
    padding: 20px;
    border: 2px solid var(--primary);
    box-shadow: 0 0 30px rgba(255,0,0,0.5);
    max-width: 600px;
    margin: 0 auto;
}

#jackpotValue {
    min-width: 300px;
    display: inline-block;
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 10px #ff0000; }
    to { text-shadow: 0 0 30px #ff0000, 0 0 50px #ff4500; }
}

a.text-primary {
    color: var(--primary) !important;
    text-decoration: underline;
    transition: all 0.3s;
}

a.text-primary:hover {
    color: #ff4444 !important;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .hero h1 { margin-top: 40px; }
    .section { padding: 50px 0; }
    .card-premium { height: auto; min-height: 300px; }
    .carousel-item p { font-size: 1.1rem; }
    .bottom-cta { flex-direction: column; padding: 8px 0; }
    .bottom-cta .btn { margin: 6px 0; width: 90%; min-width: auto; }
    footer { padding-bottom: 140px; }
}

.falling-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    font-size: 1.5rem;
    pointer-events: none;
    animation: fall linear infinite;
    user-select: none;
}

@keyframes fall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

.navbar-brand {
    padding: 0 !important;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(255, 0, 0, 0.6));
}

.logo-img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.9));
}

@media (max-width: 991px) {
    .logo-img {
        height: 40px;
    }
}

.hero{
  min-height: 88vh;
  background:
    radial-gradient(900px 500px at 15% 20%, rgba(220,53,69,.45), transparent 60%),
    radial-gradient(800px 450px at 85% 30%, rgba(255,193,7,.22), transparent 60%),
    #0b0b0b;
}

.hero-card{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}

.hero-mascot{
  position: absolute;
  top: 55px;
  left: 55%;
  width: 220px;
  opacity: .95;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.65));
  transform: rotate(-8deg);
  pointer-events: none;
}

.jackpot-box{
  max-width: 100%;
  padding: 22px 18px;
  border-radius: 14px;
  border: 2px solid rgba(255,0,0,.75);
  background: radial-gradient(900px 220px at 50% 0%, rgba(255,0,0,.25), transparent 65%),
              linear-gradient(180deg, rgba(10,10,10,.92), rgba(0,0,0,.95));
  box-shadow: 0 0 35px rgba(255,0,0,.20), inset 0 0 30px rgba(255,0,0,.10);
}

.jackpot-title{
  font-weight: 800;
  font-size: 16px;
  color: #ffcc33;
  text-shadow: 0 0 10px rgba(255,204,51,.25);
  margin-bottom: 6px;
}

.jackpot-amount{
  font-weight: 900;
  line-height: 1.1;
  font-size: 32px;
  color: #ff1a1a;
  text-shadow: 0 0 18px rgba(255,0,0,.35);
  margin-bottom: 6px;
}

.jackpot-currency{
  margin-right: 10px;
  font-size: 18px;
}

.jackpot-sub{
  font-size: 13px;
  color: rgba(255,255,255,.9);
}

.jackpot-highlight{
  color: #ffcc33;
  font-weight: 800;
}

#snow-layer{
  position: fixed;
  inset: 0;
  pointer-events: none; /* biar tidak ganggu klik */
  z-index: 9999;
  overflow: hidden;
}

.snowflake{
  position: absolute;
  top: -40px;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.35));
  animation-name: snow-fall;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes snow-fall{
  0%{
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  100%{
    transform: translate3d(var(--drift), 110vh, 0) rotate(var(--rot));
  }
}

.whatsapp-float{
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background-color: transparent;
  border-color: transparent;
}

.whatsapp-float img{
  width: 120px;      /* UBAH ANGKA INI untuk kecil/besar */
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.5));
  transition: transform .25s ease;
}

/* efek hover (opsional) */
.whatsapp-float:hover img{
  transform: scale(1.1);
}


div.card-header{
    color: var(--star);
}

div.card-header1{
    color: var(--primary);
}


li.list-group-item{
    color: var(--primary);
}


button.accordion-button.collapsed{
    color: #cc0000;
}

a.nav-link{
    color: var(--primary);
}

h5.fw-bold.mb-2{
    color: var(--primary);
}

a#daftar.btn.btn-danger.btn-lg{
    background-color: var(--primary);
}

a.btn.btn-danger.btn-sm.px-3{
    background-color: var(--primary);
}

.blockquote{
    color: var(--primary);
}

.text-white-50 small mb-3{
    color: var(--text);
}