/* ============================================================
   VegasBet — About Page CSS
   ============================================================ */

/* ── Page wrapper ───────────────────────────────────────────── */
.about-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 0 64px;
}

/* ── Shared card base ───────────────────────────────────────── */
.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 40px;
}

/* ── Shared two-column flex ─────────────────────────────────── */
.about-two-col {
  display: flex;
  gap: 36px;
  align-items: stretch;
}

/* ── Section wrapper & heading ──────────────────────────────── */
.about-section {
  margin-top: 44px;
}

.about-section-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #f0eeff;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}

.about-diamond {
  color: #a855f7;
  font-size: 1rem;
  line-height: 1;
}

/* ── Shared card text helpers ───────────────────────────────── */
.about-card-h3 {
  color: var(--text-primary);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 14px;
  font-family: 'Inter', sans-serif;
  line-height: 1.3;
}

.about-card-p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.about-card-p:last-child { margin-bottom: 0; }

/* ── Scroll animation ───────────────────────────────────────── */
.about-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   SECTION 1 — HERO BANNER
   ============================================================ */
@keyframes about-logo-pulse {
  0%, 100% {
    filter:
      drop-shadow(0 0 8px  rgba(168, 85, 247, 0.70))
      drop-shadow(0 0 25px rgba(124, 58, 237, 0.50))
      drop-shadow(0 0 50px rgba(124, 58, 237, 0.30));
  }
  50% {
    filter:
      drop-shadow(0 0 14px rgba(168, 85, 247, 0.90))
      drop-shadow(0 0 40px rgba(124, 58, 237, 0.70))
      drop-shadow(0 0 70px rgba(124, 58, 237, 0.45));
  }
}

.about-hero {
  background:
    radial-gradient(ellipse 65% 90% at 80% 50%,
      rgba(124, 58, 237, .22) 0%,
      rgba(168, 85, 247, .08) 45%,
      transparent 70%),
    radial-gradient(ellipse 35% 55% at 92% 15%,
      rgba(168, 85, 247, .12) 0%,
      transparent 50%),
    #0d0d0d;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px 48px;
  position: relative;
  overflow: hidden;
}

.about-hero .about-two-col {
  align-items: center;
}

.about-hero-left {
  flex: 3;
  min-width: 0;
}

.about-hero-right {
  flex: 2;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-heading {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.about-hero-desc {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
  max-width: 520px;
}

.about-hero-logo {
  width: 240px;
  height: auto;
  opacity: 0.45;
  animation: about-logo-pulse 3.5s ease-in-out infinite;
  display: block;
}

/* ============================================================
   SECTION 2 — OUR MISSION
   ============================================================ */
.about-mission-body {
  flex: 1;
  min-width: 0;
}

.about-mission-stats {
  flex: 0 0 210px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.about-stat-block {
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 10px;
  padding: 16px 20px;
  text-align: center;
}

.about-stat-number {
  font-size: 32px;
  font-weight: 800;
  color: #a855f7;
  font-family: 'Inter', sans-serif;
  line-height: 1.1;
  margin-bottom: 4px;
  transition: text-shadow 0.6s ease;
}

.about-stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ── Stat block cascade animation ───────────────────────────── */
.about-mission-stats .about-stat-block {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.about-animate.visible .about-mission-stats .about-stat-block:nth-child(1) {
  opacity: 1;
  transition-delay: 0.45s;
}

.about-animate.visible .about-mission-stats .about-stat-block:nth-child(2) {
  opacity: 1;
  transition-delay: 0.62s;
}

.about-animate.visible .about-mission-stats .about-stat-block:nth-child(3) {
  opacity: 1;
  transition-delay: 0.79s;
}

.about-animate.visible .about-stat-number {
  text-shadow: 0 0 12px rgba(168, 85, 247, 0.45);
  transition-delay: 0.85s;
}

/* ============================================================
   SECTION 3 — OUR PRIORITY
   ============================================================ */
.about-priority-body {
  flex: 55;
  min-width: 0;
}

.about-priority-cert {
  flex: 45;
  min-width: 0;
  display: flex;
  align-items: stretch;
}

.about-quote-block {
  background: rgba(124, 58, 237, 0.06);
  border-left: 4px solid #a855f7;
  box-shadow: -4px 0 12px rgba(168, 85, 247, 0.3);
  border-radius: 0 10px 10px 0;
  padding: 22px 24px;
  margin: 16px 0;
}

.about-quote-text {
  color: #f0eeff;
  font-size: 18px;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 12px;
}

.about-quote-attr {
  display: block;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  color: #a855f7;
  letter-spacing: 0.02em;
}

.about-license-card {
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 14px;
  padding: 28px 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.about-shield-wrap {
  margin-bottom: 2px;
}

.about-shield-img {
  height: 52px;
  width: auto;
  display: block;
}

.about-license-h4 {
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  margin: 0;
}

.about-license-p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
  justify-content: center;
}

.about-tag {
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.4);
  color: #f0eeff;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}

/* ============================================================
   SECTION 4 — PARTNERSHIPS & AMBASSADORS
   ============================================================ */
.about-partner-body {
  flex: 1;
  min-width: 0;
}

.about-partner-img-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.about-partner-cta {
  display: inline-block;
  color: #a855f7;
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.about-partner-cta:hover {
  color: #ffffff;
}

/* ── Partner slider ─────────────────────────────────────────── */
.about-slider {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-slider-track {
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
}

.about-slider-inner {
  display: flex;
  transform: translateX(0);
  transition: transform 0.55s ease;
}

.about-slider-inner.about-slider--at-1 {
  transform: translateX(-100%);
}

.about-slide {
  flex: 0 0 100%;
  min-width: 0;
}

.about-slide-img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  border-radius: 18px;
  display: block;
}

.about-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.about-slider-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #a855f7;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.about-slider-btn:hover {
  color: #f0eeff;
}

.about-slider-arrow {
  width: 26px;
  height: 26px;
  display: block;
}

.about-slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.about-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8884aa;
  opacity: 0.4;
  transition: background 0.3s ease, opacity 0.3s ease;
  display: block;
}

.about-slider-dot.about-slider-dot--active {
  background: #a855f7;
  opacity: 1;
}

/* ============================================================
   SECTION 5 — OUR VALUES
   ============================================================ */
.about-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 28px 24px;
  transition: border-color 0.2s ease, transform 0.2s ease,
              box-shadow 0.2s ease;
}

.about-value-card:hover {
  border-color: rgba(124, 58, 237, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.14);
}

.about-value-icon {
  margin-bottom: 14px;
  line-height: 1;
  display: block;
}

.about-value-icon-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}

.about-value-h4 {
  color: var(--text-primary);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

.about-value-p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   SECTION 6 — CONTACT & SUPPORT
   ============================================================ */
.about-contact-body {
  flex: 1;
  min-width: 0;
}

.about-contact-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 20px;
  border-radius: 7px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  background: transparent;
  border: 1px solid #7c3aed;
  color: #a855f7;
  transition: background 0.18s ease, border-color 0.18s ease,
              color 0.18s ease, transform 0.15s ease;
}

.btn-outline:hover {
  background: rgba(124, 58, 237, 0.12);
  border-color: #a855f7;
  color: #f0eeff;
  transform: translateY(-1px);
}

/* ── Live Support button ─────────────────────────────────────── */
@keyframes live-support-pulse {
  0%, 100% {
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.30);
  }
  50% {
    box-shadow: 0 0 26px rgba(168, 85, 247, 0.52);
  }
}

.btn-live-support {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 28px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  background: #7c3aed;
  border: none;
  color: #f0eeff;
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.30);
  animation: live-support-pulse 2.7s ease-in-out infinite;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.btn-live-support:hover {
  background: #a855f7;
  box-shadow: 0 0 28px rgba(168, 85, 247, 0.55);
  transform: translateY(-2px);
  animation: none;
}

.about-contact-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.about-contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(124, 58, 237, 0.06);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 10px;
  padding: 14px 18px;
}

.about-contact-icon {
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1;
}

.about-contact-icon-img {
  width: 40px;
  height: auto;
  flex-shrink: 0;
  display: block;
}

.about-contact-detail {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-contact-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
}

.about-contact-value {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 500;
}

/* ============================================================
   RESPONSIVE — collapse two-col on mobile
   ============================================================ */
@media (max-width: 768px) {
  .about-page {
    padding: 16px 0 40px;
  }

  .about-hero {
    padding: 32px 24px;
    background:
      radial-gradient(ellipse 90% 55% at 50% 100%,
        rgba(124, 58, 237, .18) 0%,
        rgba(168, 85, 247, .06) 50%,
        transparent 75%),
      #0d0d0d;
  }

  .about-hero-right {
    display: none;
  }

  .about-hero-heading {
    font-size: 26px;
  }

  .about-hero-desc {
    font-size: 14px;
    max-width: 100%;
  }

  .about-card {
    padding: 24px 20px;
  }

  .about-two-col {
    flex-direction: column;
    gap: 24px;
  }

  .about-hero-left,
  .about-hero-right,
  .about-mission-body,
  .about-mission-stats,
  .about-priority-body,
  .about-priority-cert,
  .about-partner-body,
  .about-partner-img-col,
  .about-contact-body,
  .about-contact-info {
    flex: none;
    width: 100%;
  }

  .about-mission-stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .about-stat-block {
    flex: 1;
    min-width: 120px;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-section {
    margin-top: 32px;
  }

  .about-contact-btns {
    flex-direction: column;
  }

  .btn-outline,
  .btn-live-support {
    width: 100%;
  }

  .about-slider-arrow {
    width: 22px;
    height: 22px;
  }
}
