/* Pavithra: Onboarding flow popups — TERMINAL MISSION theme, matches existing site palette. */

:root {
  --ob-void: #0B0C10;
  --ob-deep: #0d1117;
  --ob-panel: #141a1f;
  --ob-panel-2: #1a2028;
  --ob-green: #4CAF50;
  --ob-neon: #00ff7a;
  --ob-cyan: #00d4ff;
  --ob-amber: #FFB627;
  --ob-magenta: #FF2E97;
  --ob-mist: #e8edef;
  --ob-fog: #8faa9e;
  --ob-edge: rgba(76, 175, 80, 0.30);
}

/* OVERLAY */
.ob-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(circle at 20% 0%, rgba(76, 175, 80, 0.12), transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(0, 212, 255, 0.08), transparent 50%),
    rgba(3, 5, 3, 0.95);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  font-family: 'JetBrains Mono', 'Consolas', monospace;
  animation: ob-overlay-in 0.4s ease;
}

@keyframes ob-overlay-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.ob-overlay.ob-out {
  animation: ob-overlay-out 0.4s ease forwards;
}

@keyframes ob-overlay-out {
  to {
    opacity: 0;
  }
}

/* CARD */
.ob-card {
  position: relative;
  width: min(98vw, 1600px);
  max-height: 98vh;
  overflow-y: auto;
  background: linear-gradient(180deg, var(--ob-deep), var(--ob-void));
  border: 1.5px solid var(--ob-green);
  padding: 40px 52px;
  color: var(--ob-mist);
  box-shadow:
    0 30px 100px -20px rgba(0, 255, 122, 0.35),
    0 0 0 1px rgba(76, 175, 80, 0.15) inset,
    inset 0 0 100px rgba(0, 0, 0, 0.8);
  border-radius: 8px;
  animation: ob-card-in 0.55s cubic-bezier(0.34, 1.4, 0.64, 1);
  scrollbar-width: thin;
  scrollbar-color: var(--ob-green) var(--ob-deep);
  zoom: 1.08;
}

.ob-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ob-green), var(--ob-cyan), var(--ob-neon));
  border-radius: 8px 8px 0 0;
  z-index: 10;
}

.ob-card-wide {
  width: min(95vw, 1180px);
}

.ob-card::-webkit-scrollbar {
  width: 8px;
}

.ob-card::-webkit-scrollbar-thumb {
  background: var(--ob-green);
}

@keyframes ob-card-in {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Tactical corners — same pattern as internship wizard */
.ob-corners>i {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 2px solid var(--ob-green);
  z-index: 3;
}

.ob-corners>i:nth-child(1) {
  top: 10px;
  left: 10px;
  border-right: 0;
  border-bottom: 0;
}

.ob-corners>i:nth-child(2) {
  top: 10px;
  right: 10px;
  border-left: 0;
  border-bottom: 0;
}

.ob-corners>i:nth-child(3) {
  bottom: 10px;
  left: 10px;
  border-right: 0;
  border-top: 0;
}

.ob-corners>i:nth-child(4) {
  bottom: 10px;
  right: 10px;
  border-left: 0;
  border-top: 0;
}

.ob-stamp {
  display: inline-block;
  margin-bottom: 16px;
  font-family: 'VT323', monospace;
  font-size: 16px;
  color: var(--ob-amber);
  border: 1.5px solid var(--ob-amber);
  padding: 4px 14px;
  letter-spacing: 0.18em;
}

.ob-title {
  font-family: 'Black Ops One', sans-serif;
  font-size: 38px;
  line-height: 1.1;
  letter-spacing: 0.03em;
  margin: 0 0 14px;
  color: var(--ob-mist);
}

.ob-title-accent {
  color: var(--ob-green);
  text-shadow: 0 0 20px rgba(76, 175, 80, 0.45);
}

.ob-subtitle {
  color: var(--ob-fog);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 28px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ======= TRAILERS GRID ======= */
.ob-tr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.ob-tr-card {
  background: var(--ob-panel);
  border: 1.5px solid var(--ob-edge);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateY(10px);
  animation: ob-card-fade 0.5s ease forwards;
}

@keyframes ob-card-fade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ob-tr-card:hover {
  border-color: var(--ob-green);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -16px rgba(76, 175, 80, 0.5);
}

.ob-tr-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.ob-tr-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.ob-tr-card:hover .ob-tr-thumb img {
  transform: scale(1.08);
}

.ob-tr-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 12, 16, 0.4);
  color: var(--ob-mist);
  transition: all 0.3s;
}

.ob-tr-play svg {
  filter: drop-shadow(0 0 12px var(--ob-neon));
  transition: transform 0.3s;
}

.ob-tr-card:hover .ob-tr-play {
  background: rgba(11, 12, 16, 0.2);
  color: var(--ob-neon);
}

.ob-tr-card:hover .ob-tr-play svg {
  transform: scale(1.25);
}

.ob-tr-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  font-family: 'Black Ops One', sans-serif;
  font-size: 9px;
  color: var(--ob-green);
  background: rgba(11, 12, 16, 0.85);
  border: 1px solid var(--ob-green);
  padding: 3px 8px;
  letter-spacing: 0.18em;
}

.ob-tr-meta {
  padding: 12px 14px 14px;
}

.ob-tr-mission {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--ob-fog);
  letter-spacing: 0.22em;
  margin-bottom: 4px;
}

.ob-tr-title {
  font-family: 'Black Ops One', sans-serif;
  font-size: 14px;
  color: var(--ob-mist);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.ob-tr-stats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--ob-fog);
}

.ob-tr-stars {
  color: var(--ob-amber);
  letter-spacing: 0.05em;
}

.ob-tr-xp {
  color: var(--ob-green);
  font-weight: 700;
  background: rgba(76, 175, 80, 0.12);
  padding: 2px 6px;
}

/* ======= ACK CHECKBOX (shared) ======= */
.ob-ack-row {
  margin: 16px 0 22px;
}

.ob-ack-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 26px;
}

.ob-checkbox {
  display: inline-flex;
  align-items: flex-start;
  gap: 16px;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16.5px;
  font-weight: 500;
  color: var(--ob-mist);
  line-height: 1.6;
}

.ob-checkbox-block {
  width: 100%;
  padding: 18px 22px;
  background: rgba(20, 26, 31, 0.8);
  border: 1px solid rgba(76, 175, 80, 0.22);
  border-left: 4px solid transparent;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 6px;
  /* Entrance animation */
  opacity: 0;
  animation: ob-slide-in-left 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.ob-checkbox-block:hover {
  border-color: var(--ob-green);
  background: rgba(26, 32, 40, 0.95);
  transform: translateX(6px);
}

.ob-checkbox-block:has(input:checked) {
  border-color: var(--ob-green);
  border-left-color: var(--ob-neon);
  background: rgba(76, 175, 80, 0.12);
  box-shadow: 0 6px 30px -6px rgba(76, 175, 80, 0.4);
}

.ob-checkbox input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.ob-checkbox-mark {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border: 2px solid var(--ob-fog);
  background: var(--ob-void);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ob-void);
  transition: all 0.25s;
  margin-top: 2px;
  border-radius: 4px;
}

/* Hide the SVG icon by default; only show on :checked */
.ob-checkbox-mark svg {
  opacity: 0;
  transition: opacity 0.2s ease;
}

.ob-checkbox input:checked+.ob-checkbox-mark {
  background: var(--ob-green);
  border-color: var(--ob-green);
  color: var(--ob-void);
  box-shadow: 0 0 12px rgba(76, 175, 80, 0.6);
}

.ob-checkbox input:checked+.ob-checkbox-mark svg {
  opacity: 1;
}

.ob-checkbox-text strong {
  font-family: 'Black Ops One', sans-serif;
  color: var(--ob-green);
  margin-right: 8px;
  letter-spacing: 0.08em;
}

/* ======= BUTTONS ======= */
.ob-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.ob-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Black Ops One', sans-serif;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 36px;
  cursor: pointer;
  background: transparent;
  color: var(--ob-green);
  border: 2px solid var(--ob-green);
  border-radius: 0;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.ob-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(76, 175, 80, 0.22) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.55s;
}

.ob-btn:hover {
  background: var(--ob-green);
  color: var(--ob-void);
  box-shadow: 0 0 30px rgba(76, 175, 80, 0.6);
}

.ob-btn:hover::before {
  transform: translateX(100%);
}

.ob-btn:active {
  transform: scale(0.98);
}

.ob-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  border-color: var(--ob-fog);
  color: var(--ob-fog);
  background: transparent;
  box-shadow: none;
}

.ob-btn-primary {
  background: linear-gradient(135deg, var(--ob-green), var(--ob-neon));
  color: var(--ob-void);
  border-color: transparent;
  box-shadow: 0 0 24px rgba(76, 175, 80, 0.5);
}

.ob-btn-primary:hover {
  background: linear-gradient(135deg, var(--ob-neon), var(--ob-green));
  box-shadow: 0 0 40px var(--ob-neon);
}

.ob-btn-primary:disabled {
  background: transparent;
  border-color: var(--ob-fog);
  color: var(--ob-fog);
  box-shadow: none;
}

.ob-btn-claim {
  font-size: 17px;
  padding: 22px 38px;
  line-height: 1.3;
  text-align: center;
}

/* ======= PAYMENT AMOUNT BANNER ======= */
.ob-pay-amount {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 24px;
  margin: 0 0 26px;
  background: rgba(255, 182, 39, 0.04);
  border: 1px solid rgba(255, 182, 39, 0.25);
  border-left: 4px solid var(--ob-amber);
  border-radius: 4px;
}

.ob-pay-amt-label {
  font-family: 'Black Ops One', sans-serif;
  font-size: 11px;
  color: var(--ob-fog);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-right: auto;
}

.ob-pay-amt-currency {
  font-family: 'Black Ops One', sans-serif;
  font-size: 16px;
  color: var(--ob-amber);
}

.ob-pay-amt-value {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 38px;
  color: var(--ob-amber);
  text-shadow: none;
  letter-spacing: 0.05em;
}

.ob-pay-amt-original {
  font-family: 'JetBrains Mono', monospace;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: line-through;
  letter-spacing: 0.04em;
  align-self: flex-end;
  margin-bottom: 6px;
}

/* Footer note */
.ob-footer-note {
  margin-top: 16px;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ob-fog);
  letter-spacing: 0.14em;
}

/* ======= VIDEO LIGHTBOX (inside trailers overlay) ======= */
.ob-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(3, 5, 3, 0.96);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.ob-lightbox.ob-lightbox-show {
  display: flex;
}

.ob-lightbox-inner {
  position: relative;
  width: min(95vw, 1100px);
  background: var(--ob-void);
  border: 1.5px solid var(--ob-green);
  box-shadow: 0 30px 80px -20px rgba(76, 175, 80, 0.5);
}

.ob-lightbox-title {
  padding: 14px 22px;
  font-family: 'Black Ops One', sans-serif;
  font-size: 16px;
  color: var(--ob-green);
  letter-spacing: 0.16em;
  border-bottom: 1px solid var(--ob-edge);
  background: linear-gradient(90deg, rgba(76, 175, 80, 0.10), transparent);
}

.ob-lightbox-inner video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 75vh;
  background: #000;
}

/* Close button — big, bright green, matches TERMINAL MISSION theme. Sits on top-right corner of video card. */
.ob-lightbox-close {
  position: absolute;
  top: -22px;
  right: -22px;
  z-index: 5;
  width: 56px;
  height: 56px;
  background: var(--ob-green);
  border: 3px solid var(--ob-void);
  color: var(--ob-void);
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow:
    0 0 0 3px var(--ob-green),
    0 0 28px var(--ob-green),
    0 0 50px rgba(76, 175, 80, 0.45),
    0 8px 20px rgba(0, 0, 0, 0.7);
  font-family: 'Black Ops One', sans-serif;
}

.ob-lightbox-close svg {
  width: 22px;
  height: 22px;
  stroke-width: 3;
}

.ob-lightbox-close:hover {
  background: var(--ob-neon);
  color: var(--ob-void);
  border-color: var(--ob-void);
  transform: scale(1.1) rotate(90deg);
  box-shadow:
    0 0 0 3px var(--ob-neon),
    0 0 40px var(--ob-neon),
    0 0 60px rgba(0, 255, 122, 0.5);
}

.ob-lightbox-close:active {
  transform: scale(0.95);
}

/* ======= PAYMENT METHOD SELECTOR ======= */
.ob-pay-method-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--ob-fog);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.ob-pay-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.ob-pay-method {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 16px 20px;
  background: rgba(22, 22, 22, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  gap: 16px;
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.ob-pay-method:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(30, 30, 30, 0.8);
  transform: translateY(-1px);
}

.ob-pay-method.ob-pay-method-active[data-method="razorpay"] {
  border-color: #3395FF;
  background: rgba(51, 149, 255, 0.08);
  box-shadow: 0 0 20px -4px rgba(51, 149, 255, 0.3);
}

.ob-pay-method.ob-pay-method-active[data-method="paypal"] {
  border-color: #0079C1;
  background: rgba(0, 121, 193, 0.08);
  box-shadow: 0 0 20px -4px rgba(0, 121, 193, 0.3);
}

.ob-pay-method-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.ob-pay-method-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--ob-fog);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ob-pay-method.ob-pay-method-active[data-method="razorpay"] .ob-pay-method-name {
  color: #3395FF;
}

.ob-pay-method.ob-pay-method-active[data-method="paypal"] .ob-pay-method-name {
  color: #0079C1;
}

.ob-pay-method-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.ob-pay-method-desc {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 11px;
  color: var(--ob-fog);
  opacity: 0.75;
  letter-spacing: 0.02em;
  margin-top: 1px;
}

.ob-pay-method-tick {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  font-size: 10px;
  font-weight: 900;
  color: transparent;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.ob-pay-method.ob-pay-method-active[data-method="razorpay"] .ob-pay-method-tick {
  border-color: #3395FF;
  background: #3395FF;
  color: #0b0f19;
}

.ob-pay-method.ob-pay-method-active[data-method="paypal"] .ob-pay-method-tick {
  border-color: #0079C1;
  background: #0079C1;
  color: #0b0f19;
}

/* PayPal smart-button container inside the popup */
.ob-paypal-container {
  width: 100%;
  min-height: 50px;
  display: none;
  margin-bottom: 6px;
}

.ob-paypal-container.ob-paypal-visible {
  display: block;
}

.ob-paypal-loading {
  text-align: center;
  padding: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ob-fog);
  letter-spacing: 0.18em;
  animation: obBlink 1.2s infinite;
}

@keyframes obBlink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.3
  }
}

/* ======= RESPONSIVE ======= */
@media (max-width: 720px) {
  .ob-card {
    padding: 26px 22px;
  }

  .ob-card-wide {
    width: 96vw;
  }

  .ob-title {
    font-size: 26px;
  }

  .ob-tr-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .ob-tr-title {
    font-size: 13px;
  }

  .ob-checkbox-block {
    padding: 12px 14px;
    font-size: 13px;
  }

  .ob-pay-amt-value {
    font-size: 30px;
  }

  .ob-btn {
    padding: 14px 22px;
    font-size: 12px;
    letter-spacing: 0.10em;
  }

  .ob-btn-claim {
    font-size: 14px;
    padding: 16px 24px;
  }

  .ob-pay-methods {
    gap: 10px;
  }

  .ob-pay-method {
    padding: 12px 16px;
    gap: 12px;
  }

  .ob-pay-method-name {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .ob-tr-grid {
    grid-template-columns: 1fr;
  }
}

/* Close button for payment overlay */
.ob-pay-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 15;
  min-width: 100px;
  height: 40px;
  padding: 0 18px;
  background: transparent !important;
  border: 1.5px solid var(--ob-green) !important;
  color: var(--ob-green) !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 4px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  white-space: nowrap;
  transition: all 0.25s ease;
  box-shadow: 0 0 10px rgba(0, 255, 122, 0.15);
}

.ob-pay-close-btn:hover {
  background: var(--ob-green) !important;
  color: #000000 !important;
  box-shadow: 0 0 18px var(--ob-neon) !important;
}

/* ======= SPLIT PAYOUT GRID LAYOUT ======= */
.ob-pay-layout-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
  align-items: stretch;
  margin-top: 24px;
  text-align: left;
}

.ob-pay-col-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ob-pay-col-right {
  display: flex;
  flex-direction: column;
  background: rgba(13, 20, 26, 0.55);
  border: 1px solid rgba(76, 175, 80, 0.25);
  border-radius: 8px;
  padding: 28px 24px;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.4);
  /* Entrance animation */
  opacity: 0;
  animation: ob-slide-in-right 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.2s;
}

.ob-pay-section-hdr {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ob-green);
  letter-spacing: 0.2em;
  margin-bottom: 16px;
  opacity: 0.8;
  border-bottom: 1.5px dashed rgba(76, 175, 80, 0.2);
  padding-bottom: 8px;
}

#obPayActions {
  margin-top: auto;
  padding-top: 24px;
  width: 100%;
}

/* Checklist Item Entrance Delays */
.ob-checkbox-block[data-ack="trailers"] {
  animation-delay: 0.08s;
}

.ob-checkbox-block[data-ack="wireframe"] {
  animation-delay: 0.16s;
}

.ob-checkbox-block[data-ack="stages"] {
  animation-delay: 0.24s;
}

.ob-checkbox-block[data-ack="benefits"] {
  animation-delay: 0.32s;
}

/* Micro-interaction on Checked state */
.ob-checkbox input:checked+.ob-checkbox-mark {
  animation: ob-pop-check 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Pulsing Active State for Enabled Button */
.ob-btn-primary:not(:disabled) {
  animation: ob-neon-pulse 1.8s infinite alternate ease-in-out;
}

/* Keyframes for Techy Gaming UI */
@keyframes ob-slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-35px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes ob-slide-in-right {
  from {
    opacity: 0;
    transform: translateX(35px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes ob-pop-check {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes ob-neon-pulse {
  0% {
    box-shadow: 0 0 15px rgba(0, 255, 122, 0.35);
    filter: brightness(1);
  }

  100% {
    box-shadow: 0 0 30px rgba(0, 255, 122, 0.75);
    filter: brightness(1.15);
  }
}

@media (max-width: 960px) {
  .ob-pay-layout-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ob-pay-col-right {
    padding: 20px 16px;
  }
}

/* Demo Slideshow CSS */
.demo-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.demo-slideshow img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
}

.demo-slideshow-4 img {
  animation: fadeCycle4 12s infinite;
}

.demo-slideshow-4 img:nth-child(1) {
  animation-delay: 0s;
}

.demo-slideshow-4 img:nth-child(2) {
  animation-delay: 3s;
}

.demo-slideshow-4 img:nth-child(3) {
  animation-delay: 6s;
}

.demo-slideshow-4 img:nth-child(4) {
  animation-delay: 9s;
}

.demo-slideshow-5 img {
  animation: fadeCycle5 15s infinite;
}

.demo-slideshow-5 img:nth-child(1) {
  animation-delay: 0s;
}

.demo-slideshow-5 img:nth-child(2) {
  animation-delay: 3s;
}

.demo-slideshow-5 img:nth-child(3) {
  animation-delay: 6s;
}

.demo-slideshow-5 img:nth-child(4) {
  animation-delay: 9s;
}

.demo-slideshow-5 img:nth-child(5) {
  animation-delay: 12s;
}

.demo-slideshow-6 img {
  animation: fadeCycle6 18s infinite;
}

.demo-slideshow-6 img:nth-child(1) {
  animation-delay: 0s;
}

.demo-slideshow-6 img:nth-child(2) {
  animation-delay: 3s;
}

.demo-slideshow-6 img:nth-child(3) {
  animation-delay: 6s;
}

.demo-slideshow-6 img:nth-child(4) {
  animation-delay: 9s;
}

.demo-slideshow-6 img:nth-child(5) {
  animation-delay: 12s;
}

.demo-slideshow-6 img:nth-child(6) {
  animation-delay: 15s;
}

.demo-slideshow-7 img {
  animation: fadeCycle7 21s infinite;
}

.demo-slideshow-7 img:nth-child(1) {
  animation-delay: 0s;
}

.demo-slideshow-7 img:nth-child(2) {
  animation-delay: 3s;
}

.demo-slideshow-7 img:nth-child(3) {
  animation-delay: 6s;
}

.demo-slideshow-7 img:nth-child(4) {
  animation-delay: 9s;
}

.demo-slideshow-7 img:nth-child(5) {
  animation-delay: 12s;
}

.demo-slideshow-7 img:nth-child(6) {
  animation-delay: 15s;
}

.demo-slideshow-7 img:nth-child(7) {
  animation-delay: 18s;
}

.demo-slideshow-8 img {
  animation: fadeCycle8 24s infinite;
}

.demo-slideshow-8 img:nth-child(1) {
  animation-delay: 0s;
}

.demo-slideshow-8 img:nth-child(2) {
  animation-delay: 3s;
}

.demo-slideshow-8 img:nth-child(3) {
  animation-delay: 6s;
}

.demo-slideshow-8 img:nth-child(4) {
  animation-delay: 9s;
}

.demo-slideshow-8 img:nth-child(5) {
  animation-delay: 12s;
}

.demo-slideshow-8 img:nth-child(6) {
  animation-delay: 15s;
}

.demo-slideshow-8 img:nth-child(7) {
  animation-delay: 18s;
}

.demo-slideshow-8 img:nth-child(8) {
  animation-delay: 21s;
}

.demo-slideshow-9 img {
  animation: fadeCycle9 27s infinite;
}

.demo-slideshow-9 img:nth-child(1) {
  animation-delay: 0s;
}

.demo-slideshow-9 img:nth-child(2) {
  animation-delay: 3s;
}

.demo-slideshow-9 img:nth-child(3) {
  animation-delay: 6s;
}

.demo-slideshow-9 img:nth-child(4) {
  animation-delay: 9s;
}

.demo-slideshow-9 img:nth-child(5) {
  animation-delay: 12s;
}

.demo-slideshow-9 img:nth-child(6) {
  animation-delay: 15s;
}

.demo-slideshow-9 img:nth-child(7) {
  animation-delay: 18s;
}

.demo-slideshow-9 img:nth-child(8) {
  animation-delay: 21s;
}

.demo-slideshow-9 img:nth-child(9) {
  animation-delay: 24s;
}

.demo-slideshow-10 img {
  animation: fadeCycle10 30s infinite;
}

.demo-slideshow-10 img:nth-child(1) {
  animation-delay: 0s;
}

.demo-slideshow-10 img:nth-child(2) {
  animation-delay: 3s;
}

.demo-slideshow-10 img:nth-child(3) {
  animation-delay: 6s;
}

.demo-slideshow-10 img:nth-child(4) {
  animation-delay: 9s;
}

.demo-slideshow-10 img:nth-child(5) {
  animation-delay: 12s;
}

.demo-slideshow-10 img:nth-child(6) {
  animation-delay: 15s;
}

.demo-slideshow-10 img:nth-child(7) {
  animation-delay: 18s;
}

.demo-slideshow-10 img:nth-child(8) {
  animation-delay: 21s;
}

.demo-slideshow-10 img:nth-child(9) {
  animation-delay: 24s;
}

.demo-slideshow-10 img:nth-child(10) {
  animation-delay: 27s;
}

@keyframes fadeCycle4 {
  0% {
    opacity: 0;
  }

  7.5% {
    opacity: 1;
  }

  25% {
    opacity: 1;
  }

  32.5% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeCycle5 {
  0% {
    opacity: 0;
  }

  6% {
    opacity: 1;
  }

  20% {
    opacity: 1;
  }

  26% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeCycle6 {
  0% {
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  16.66% {
    opacity: 1;
  }

  21.66% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeCycle7 {
  0% {
    opacity: 0;
  }

  4.28% {
    opacity: 1;
  }

  14.28% {
    opacity: 1;
  }

  18.57% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeCycle8 {
  0% {
    opacity: 0;
  }

  3.75% {
    opacity: 1;
  }

  12.5% {
    opacity: 1;
  }

  16.25% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeCycle9 {
  0% {
    opacity: 0;
  }

  3.33% {
    opacity: 1;
  }

  11.11% {
    opacity: 1;
  }

  14.44% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeCycle10 {
  0% {
    opacity: 0;
  }

  3% {
    opacity: 1;
  }

  10% {
    opacity: 1;
  }

  13% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}