@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg-page: #ffffff;
  --bg-subtle: #f8fafc;
  --bg-card-light: #ffffff;
  
  --dark-navy: #091224;
  --dark-navy-card: #0c1831;
  --dark-navy-tile: #132244;
  --dark-navy-border: #1d3360;
  
  /* Ninox Sky Blue Palette */
  --blue-primary: #0284c7;        /* Sky Blue Primary */
  --blue-hover: #0369a1;
  --blue-shadow: #075985;
  --blue-light: #e0f2fe;          /* Sky Blue Light Badge */
  --blue-bright: #38bdf8;         /* Electric Sky Blue */
  --blue-badge-bg: rgba(2, 132, 199, 0.12);
  
  --text-headline: #071026;
  --text-body: #475569;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  
  --border-subtle: #e2e8f0;
  --border-light: rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-page);
  color: var(--text-body);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  color: var(--text-headline);
  letter-spacing: -0.03em;
}

/* Sky Blue Highlight Accents */
.text-blue {
  color: var(--blue-primary) !important;
}

.text-blue-bright {
  color: var(--blue-bright) !important;
}

.bg-blue-badge {
  background: var(--blue-badge-bg);
  color: var(--blue-primary);
}

/* ==========================================================================
   SOLID TACTILE BUTTONS (Ninox 3D Feel)
   ========================================================================== */

/* Solid Sky Blue Button */
.btn-solid-blue {
  background: var(--blue-primary);
  color: #ffffff !important;
  border: 1px solid var(--blue-hover);
  border-bottom: 4px solid var(--blue-shadow);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 12px 26px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
  transition: all 0.15s ease-in-out;
  cursor: pointer;
}

.btn-solid-blue:hover {
  background: #0369a1;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.35);
  color: #ffffff !important;
}

.btn-solid-blue:active {
  transform: translateY(3px);
  border-bottom-width: 1px;
  box-shadow: 0 1px 4px rgba(2, 132, 199, 0.2);
}

/* Solid Dark Navy Button */
.btn-solid-dark {
  background: var(--dark-navy);
  color: #ffffff !important;
  border: 1px solid #060c18;
  border-bottom: 4px solid #02050b;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 26px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(9, 18, 36, 0.25);
  transition: all 0.15s ease-in-out;
  cursor: pointer;
}

.btn-solid-dark:hover {
  background: #0f1d3d;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(9, 18, 36, 0.35);
  color: #ffffff !important;
}

.btn-solid-dark:active {
  transform: translateY(3px);
  border-bottom-width: 1px;
  box-shadow: 0 1px 4px rgba(9, 18, 36, 0.2);
}

/* Solid Light Outline Button */
.btn-solid-light {
  background: #ffffff;
  color: var(--text-headline) !important;
  border: 1.5px solid #cbd5e1;
  border-bottom: 4px solid #94a3b8;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 26px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.15s ease-in-out;
  cursor: pointer;
}

.btn-solid-light:hover {
  background: #f8fafc;
  border-color: #94a3b8;
  border-bottom-color: #64748b;
  color: var(--blue-primary) !important;
  transform: translateY(-2px);
}

.btn-solid-light:active {
  transform: translateY(3px);
  border-bottom-width: 1.5px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Navbar Buttons (Solid Style) */
.btn-nav-login {
  background: #ffffff;
  color: var(--dark-navy) !important;
  border: 1.5px solid #cbd5e1;
  border-bottom: 3px solid #94a3b8;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 8px 18px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.15s ease;
}

.btn-nav-login:hover {
  background: #f8fafc;
  color: var(--blue-primary) !important;
  border-color: var(--blue-primary);
  transform: translateY(-1px);
}

.btn-nav-login:active {
  transform: translateY(2px);
  border-bottom-width: 1.5px;
}

.btn-nav-signup {
  background: var(--blue-primary);
  color: #ffffff !important;
  border: 1px solid var(--blue-hover);
  border-bottom: 3.5px solid var(--blue-shadow);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 8px 20px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(2, 132, 199, 0.25);
  transition: all 0.15s ease;
}

.btn-nav-signup:hover {
  background: #0369a1;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(2, 132, 199, 0.35);
}

.btn-nav-signup:active {
  transform: translateY(2px);
  border-bottom-width: 1px;
}

/* ==========================================================================
   NAVIGATION BAR & BLUE TRAPEZOID BRAND
   ========================================================================== */
.mbt-navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 12px 0;
  transition: all 0.25s ease;
  z-index: 1050;
}

.brand-trapezoid-wrapper {
  background: var(--blue-primary);
  /* Angled trapezoid on the right edge */
  clip-path: polygon(0 0, 100% 0, 84% 100%, 0% 100%);
  padding: 8px 36px 8px 18px;
  border-radius: 8px 0 0 8px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.25);
  transition: all 0.2s ease-in-out;
}

.brand-trapezoid-wrapper:hover {
  background: var(--blue-hover);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.35);
  transform: translateY(-1px);
}

.brand-trapezoid-wrapper img {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
}

.mbt-navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.nav-link-custom {
  color: #334155 !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 16px !important;
  transition: all 0.2s ease;
}

.nav-link-custom:hover, .nav-link-custom.active {
  color: var(--blue-primary) !important;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-wrapper {
  padding-top: 130px;
  padding-bottom: 80px;
  background: radial-gradient(circle at 10% 20%, rgba(2, 132, 199, 0.04) 0%, transparent 50%);
}

.hero-title {
  font-size: 3.85rem;
  font-weight: 800;
  line-height: 1.12;
  color: var(--text-headline);
  letter-spacing: -0.035em;
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 2.85rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.35rem;
  }
}

.hero-subtext {
  font-size: 1.15rem;
  color: #475569;
  line-height: 1.7;
}

/* ==========================================================================
/* ==========================================================================
   LIVE MATCH INTELLIGENCE & BANKER SLIP TERMINAL (HERO RIGHT)
   ========================================================================== */
.mbt-terminal-wrapper {
  position: relative;
}

.mbt-terminal-card {
  background: linear-gradient(145deg, #0b1528 0%, #070d1a 100%);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 25px 60px -15px rgba(2, 132, 199, 0.25), 0 0 0 1px rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.2);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.mbt-terminal-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.mbt-terminal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 18px;
}

.pulse-dot-green {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
  display: inline-block;
  animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.live-pulse-badge {
  background: rgba(16, 185, 129, 0.12);
  color: #34d399;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(16, 185, 129, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mbt-conf-pill {
  background: rgba(56, 189, 248, 0.12);
  color: var(--blue-bright);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(56, 189, 248, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Match Rows in Terminal */
.mbt-match-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

.mbt-match-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 14px 16px;
  transition: all 0.2s ease;
}

.mbt-match-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(56, 189, 248, 0.35);
  transform: translateX(3px);
}

.mbt-league-tag {
  font-size: 0.68rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mbt-team-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin: 2px 0 6px 0;
}

.mbt-pick-badge {
  background: rgba(2, 132, 199, 0.2);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.3);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.mbt-odds-pill {
  background: #0284c7;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 4px 10px;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.02em;
}

.mbt-mini-progress {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 8px;
}

.mbt-mini-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #0284c7, #38bdf8);
  border-radius: 4px;
}

/* Cumulative Slip Banner */
.mbt-slip-banner {
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.15) 0%, rgba(14, 165, 233, 0.05) 100%);
  border: 1px dashed rgba(56, 189, 248, 0.35);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 18px;
}

.mbt-banner-stat-val {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #38bdf8;
  line-height: 1.1;
}

/* Bookmaker Booking Strip */
.mbt-booking-strip {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 14px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mbt-bookie-tab {
  font-size: 0.72rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
}

.mbt-code-display {
  font-family: 'Outfit', monospace;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #ffffff;
}

/* Floating Micro Badges */
.mbt-float-badge-top {
  position: absolute;
  top: -15px;
  right: -15px;
  background: #ffffff;
  color: #0f172a;
  border-radius: 14px;
  padding: 8px 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  border: 1.5px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
  animation: floatSubtle 4s ease-in-out infinite alternate;
}

.mbt-float-badge-bottom {
  position: absolute;
  bottom: -15px;
  left: -15px;
  background: #0f172a;
  color: #ffffff;
  border-radius: 14px;
  padding: 8px 16px;
  box-shadow: 0 15px 35px rgba(2, 132, 199, 0.3);
  border: 1.5px solid rgba(56, 189, 248, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
  animation: floatSubtle 4.5s ease-in-out infinite alternate-reverse;
}

@keyframes floatSubtle {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-6px); }
}

/* ==========================================================================
   FEATURE CARDS & GRID
   ========================================================================== */
.mbt-feature-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 30px;
  transition: all 0.25s ease;
  height: 100%;
}

.mbt-feature-card:hover {
  border-color: var(--blue-primary);
  box-shadow: 0 15px 35px -5px rgba(2, 132, 199, 0.12);
  transform: translateY(-5px);
}

.mbt-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--blue-light);
  color: var(--blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

/* ==========================================================================
   PRICING CARDS
   ========================================================================== */
.mbt-pricing-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 34px 28px;
  transition: all 0.25s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mbt-pricing-card.popular {
  border: 2px solid var(--blue-primary);
  box-shadow: 0 20px 40px -10px rgba(2, 132, 199, 0.15);
}

.mbt-badge-popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-primary);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 14px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.3);
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.mbt-accordion .accordion-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.mbt-accordion .accordion-button {
  background: #ffffff;
  color: var(--text-headline);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 18px 22px;
  box-shadow: none;
}

.mbt-accordion .accordion-button:not(.collapsed) {
  color: var(--blue-primary);
  background: #f8fafc;
}

.mbt-accordion .accordion-body {
  color: #64748b;
  font-size: 0.95rem;
  padding: 10px 22px 22px 22px;
  line-height: 1.7;
}

/* ==========================================================================
   SLIPS CAROUSEL
   ========================================================================== */
.mbt-slip-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  transition: all 0.25s ease;
  cursor: pointer;
}

.mbt-slip-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.mbt-slip-card:hover {
  border-color: var(--blue-primary);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(2, 132, 199, 0.15);
}

/* Owl Dots for Sky Blue Theme */
.owl-theme .owl-dots .owl-dot span {
  background: #cbd5e1 !important;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--blue-primary) !important;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.mbt-footer {
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  padding: 60px 0 30px 0;
}

.footer-link {
  color: #64748b;
  text-decoration: none;
  font-size: 0.92rem;
  margin-bottom: 12px;
  display: inline-block;
  transition: all 0.2s ease;
}

.footer-link:hover {
  color: var(--blue-primary);
  transform: translateX(3px);
}

/* ==========================================================================
   TOP-RIGHT FLOATING TOAST NOTIFICATION SYSTEM
   ========================================================================== */
#toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 380px;
  width: calc(100vw - 48px);
  pointer-events: none;
}

.custom-toast {
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid #e2e8f0;
  border-left: 4px solid var(--blue-primary);
  border-radius: 14px;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.12), 0 0 1px rgba(0, 0, 0, 0.05);
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #0f172a;
  animation: toastSlideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.custom-toast.toast-hide {
  animation: toastSlideOut 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.custom-toast.toast-success {
  border-left-color: #10b981;
}
.custom-toast.toast-success .toast-icon {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
}

.custom-toast.toast-error {
  border-left-color: #ef4444;
}
.custom-toast.toast-error .toast-icon {
  background: rgba(239, 68, 68, 0.12);
  color: #dc2626;
}

.custom-toast.toast-info {
  border-left-color: var(--blue-primary);
}
.custom-toast.toast-info .toast-icon {
  background: rgba(2, 132, 199, 0.12);
  color: var(--blue-primary);
}

.custom-toast.toast-warning {
  border-left-color: #f59e0b;
}
.custom-toast.toast-warning .toast-icon {
  background: rgba(245, 158, 11, 0.12);
  color: #d97706;
}

.custom-toast .toast-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.custom-toast .toast-content {
  flex-grow: 1;
}

.custom-toast .toast-title {
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 2px;
  color: #0f172a;
}

.custom-toast .toast-message {
  font-size: 0.84rem;
  color: #475569;
  line-height: 1.4;
  margin: 0;
}

.custom-toast .toast-close {
  background: transparent;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  padding: 0;
  margin-left: 4px;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.custom-toast .toast-close:hover {
  color: #0f172a;
}

@keyframes toastSlideIn {
  from {
    opacity: 0;
    transform: translateX(120%) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes toastSlideOut {
  from {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateX(120%) scale(0.9);
  }
}