:root {
  --bg-dark: #0a0015;
  --neon-purple: #5b00ff;
  --neon-violet: #7a00ff;
  --neon-pink: #ff2bc2;
  --neon-pink2: #ff4bd1;
  --neon-teal: #00f2fe;
  --deep-blue: #2d00b7;
  --grad-main: linear-gradient(135deg, #2d00b7, #5b00ff, #7a00ff, #ff2bc2);
  --grad-btn: linear-gradient(135deg, #5b00ff 0%, #ff2bc2 100%);
  --grad-btn-rev: linear-gradient(135deg, #ff2bc2 0%, #5b00ff 100%);
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.1);
  --whatsapp: #25d366;
  --wa-channel: #00a884;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
  font-family: "Inter", sans-serif;
  background-color: var(--bg-dark);
  color: #f0e6ff;
  overflow-x: hidden !important;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--neon-purple);
  border-radius: 4px;
}

/* ===== RADIAL BACKGROUND GLOW ===== */
.bg-radial {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(
      ellipse 80% 60% at 50% -20%,
      rgba(91, 0, 255, 0.35) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 60% 50% at 100% 80%,
      rgba(255, 43, 194, 0.18) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 50% 40% at 0% 60%,
      rgba(45, 0, 183, 0.22) 0%,
      transparent 65%
    ),
    var(--bg-dark);
}

/* ===== GLASS CARDS ===== */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
  transition: all 0.35s ease;
}

.glass-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 60px rgba(91, 0, 255, 0.3),
    0 0 0 1px rgba(255, 43, 194, 0.2);
  border-color: rgba(255, 43, 194, 0.25);
}

/* ===== NAVIGATION ===== */
.navbar {
  background: rgba(10, 0, 21, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s;
}

.navbar.scrolled {
  background: rgba(10, 0, 21, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.navbar-brand {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--grad-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  box-shadow: 0 0 16px rgba(91, 0, 255, 0.6);
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75) !important;
  padding: 8px 16px !important;
  border-radius: 50px;
  transition: all 0.25s;
}

.nav-link:hover,
.nav-link.active {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08);
}

/* ===== CUSTOM BUTTONS ===== */
.btn-masti {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-masti-primary {
  background: var(--grad-btn);
  color: #fff;
  box-shadow: 0 4px 24px rgba(91, 0, 255, 0.5);
}

.btn-masti-primary:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(91, 0, 255, 0.7);
}

.btn-masti-pink {
  background: var(--grad-btn-rev);
  color: #fff;
  box-shadow: 0 4px 24px rgba(255, 43, 194, 0.4);
}

.btn-masti-pink:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(255, 43, 194, 0.65);
}

.btn-masti-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn-masti-outline:hover {
  border-color: var(--neon-pink);
  color: var(--neon-pink);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 43, 194, 0.2);
}

.btn-masti-wa {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.btn-masti-wa:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.6);
}

.btn-masti-channel {
  background: var(--wa-channel);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 168, 132, 0.4);
}

.btn-masti-channel:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0, 168, 132, 0.6);
}

.btn-sm-custom {
  padding: 8px 20px;
  font-size: 0.82rem;
}

/* ===== BADGES & TITLES ===== */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(91, 0, 255, 0.15);
  border: 1px solid rgba(91, 0, 255, 0.35);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #c084fc;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-sub {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 600px;
  margin-bottom: 40px;
}

.divider-line {
  width: 60px;
  height: 4px;
  border-radius: 4px;
  background: var(--grad-btn);
  margin: 0 auto 22px;
}

/* ===== HERO MOCKUP ===== */
.phone-mockup {
  width: 250px;
  height: 490px;
  border-radius: 40px;
  background: linear-gradient(
    145deg,
    rgba(91, 0, 255, 0.25),
    rgba(255, 43, 194, 0.15)
  );
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  position: relative;
  box-shadow:
    0 0 60px rgba(91, 0, 255, 0.4),
    0 0 100px rgba(255, 43, 194, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  margin: 0 auto;
}

.phone-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.floating-chip {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  z-index: 2;
  white-space: nowrap;
}

.chip-1 {
  top: 20%;
  left: -60px;
}

.chip-2 {
  bottom: 30%;
  right: -60px;
}

.chip-3 {
  top: 10%;
  right: -50px;
}

.chip-4 {
  bottom: 15%;
  left: -50px;
}

@media (max-width: 991px) {
  .floating-chip {
    display: none;
  }
}

/* ===== TABLE STYLING ===== */
.custom-table-container {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.table-masti {
  width: 100%;
  margin-bottom: 0;
  color: #fff;
  background: rgb(15, 15, 15);
}

.table-masti thead {
  background: var(--grad-btn);
}

.table-masti th {
  padding: 16px;
  font-weight: 700;
  text-align: center;
  border: none;
  background: transparent !important;
}

.table-masti td {
  padding: 14px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  background: transparent !important;
}

.table-masti tbody tr:hover {
  background: rgba(91, 0, 255, 0.12);
}

/* ===== ACCORDION STYLING ===== */
.accordion-item {
  background: var(--glass-bg) !important;
  border: 1px solid var(--glass-border) !important;
  border-radius: 16px !important;
  margin-bottom: 14px;
  overflow: hidden;
}

.accordion-button {
  background: transparent !important;
  color: #fff !important;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: none !important;
  padding: 20px 24px;
}

.accordion-button:not(.collapsed) {
  color: #c084fc !important;
}

.accordion-button::after {
  filter: invert(1);
}

.accordion-body {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  line-height: 1.7;
  padding: 0 24px 20px;
}

/* ===== FLOATING WHATSAPP ===== */
.floating-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
  text-decoration: none;
  transition: all 0.3s;
  animation: pulseGlow 2.5s infinite;
}

.floating-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.8);
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
  }

  50% {
    box-shadow:
      0 6px 40px rgba(37, 211, 102, 0.85),
      0 0 0 12px rgba(37, 211, 102, 0.1);
  }
}

footer {
  background: linear-gradient(135deg, #100024 0%, #1a0533 100%);
  border-top: 2px solid var(--neon-purple);
}

/* Table Main Card Wrapper */
.bonus-table-wrapper {
  background: rgba(13, 2, 28, 0.884);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Gradient Header */
.bonus-table thead tr {
  background: linear-gradient(90deg, #b000ff 0%, #5b00ff 40%, #d800ff 100%);
}

.bonus-table th {
  width: 25%;
  background: transparent !important;
}

.bonus-table td {
  background: transparent !important;
}

.bonus-table th:nth-child(1) {
  width: 20%;
}

.bonus-table th:nth-child(2) {
  width: 30%;
}

/* Table Body Dark Background */
.bonus-table tbody {
  background: rgba(10, 0, 21, 0.911);
}

/* Row Borders */
.bonus-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bonus-table tbody tr:last-child {
  border-bottom: none;
}

/* Purple Circular Tier Badges */
.tier-badge {
  width: 32px;
  height: 32px;
  background: #8b00ff;
  font-size: 0.85rem;
  box-shadow: 0 0 12px rgba(139, 0, 255, 0.4);
}
