html, body { height: 100%; }

body {
  display: flex;
  flex-direction: column;
  min-height: 100svh;   /* use svh to behave nicely on mobile bars */
}

main {
  flex: 1 0 auto;       /* this grows to fill leftover space */
}

footer {
  margin-top: auto;     /* pushes footer to the bottom */
}



.logo img{
	width: 90px;
}

.bgblue{background-color: #0856a1 !important;}

main {margin: 140px 0;}
.services .h3 { font-weight: 600; }
.services p { line-height: 1.7; }
.services ul { margin-left: 1rem; }
.services li { margin-bottom: .35rem; }

.about-hero .sub-heading { opacity: .9; }
.about-cards .card { border: 0; box-shadow: 0 6px 18px rgba(0,0,0,.08); border-radius: 16px; }
.about-cards .card .la { font-size: 32px; line-height: 1; padding-right: 15px; }

.btn-link:hover, a{text-decoration: none !important;}
.abouticons{font-size: 50px;}

.aboutcardtitle{align-self: center; padding-right: 12px;}

/* === Timeline: grid rail + centered dots (no pixel nudges) === */
.about-timeline {
  --rail: 28px;          /* width of the left “rail” column */
  --line-w: 2px;         /* vertical line width */
  --dot: 14px;           /* dot size */
  position: relative;
}

/* Continuous vertical line, centered in the rail column */
.about-timeline::before {
  content: "";
  position: absolute;
  left: calc(var(--rail) / 2);
  top: 0.25rem;
  bottom: 0.25rem;
  width: var(--line-w);
  background: rgba(8, 86, 161, 0.28);
  transform: translateX(-50%); /* centers the 2px line inside the rail */
}

/* Each row = two columns: rail | content */
.about-timeline .t-item {
  display: grid;
  grid-template-columns: var(--rail) 1fr;
  column-gap: 12px;
  position: relative;
  margin-bottom: 1rem;
}

/* Rail cell centers the dot horizontally over the line */
.about-timeline .t-item .rail {
  position: relative;
  display: flex;
  justify-content: center; /* centers dot on the rail */
}

/* Dot aligns to the heading’s first line; adjust top margin to taste */
.about-timeline .t-item .dot {
  width: var(--dot);
  height: var(--dot);
  border-radius: 50%;
  background: #0856a1;
  margin-top: 0.45rem;   /* small nudge so dot sits near the title line */
}

/* Optional: thicker halo for contrast on busy backgrounds */
@supports (box-shadow: 0 0 0 3px #fff) {
  .about-timeline .t-item .dot { box-shadow: 0 0 0 3px #fff; }
}


/* Quick answers – Bootstrap 5 accordion look */
.accordion-item {
  border: 0;                    /* kill default border box */
  border-bottom: 1px solid #e5e7eb;  /* light divider between items */
  border-radius: 0;
}

.accordion-item:last-child {
  border-bottom: 1px solid #e5e7eb;  /* keep the last divider */
}

.accordion-button {
  background: transparent;
  padding-left: 0;              /* align with your headings */
  padding-right: 0;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: transparent;
  color: inherit;
  box-shadow: none;
}

.accordion-body {
  padding-left: 0;              /* align content with button text */
  padding-right: 0;
  border-top: 1px solid #f1f3f5; /* subtle line under the header when open */
}

/* If your global CSS had old .accordion .card rules, neutralize them */
.accordion .card,
.accordion .card-header {
  border: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Layout: more spacing between buttons */
.download-ctas{
  display:flex; flex-wrap:wrap; justify-content:center; align-items:stretch;
  gap: 2.25rem;               /* <<< bigger gap between buttons */
  margin: 2rem 0 1rem;
}

.contact-ctas{
  display:flex; flex-wrap:wrap; justify-content:center; align-items:stretch;
  gap: 2.5rem;               /* big gap = easy taps */
  margin: 2rem 0 1rem;
}

/* Prettier buttons */
.cta-btn{
  --radius: 18px;
  --padY: 16px; --padX: 22px;
  --shadow: 0 6px 18px rgba(0,0,0,.12);
  display:flex; align-items:center; gap:14px;
  padding: var(--padY) var(--padX);
  min-width: 320px;           /* nice big buttons */
  border-radius: var(--radius);
  text-decoration:none;
  line-height:1.15;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  will-change: transform;
}

/* Icon size */
.cta-btn i{ font-size: 1.9rem; }

/* Two-line label */
.cta-text{ display:flex; flex-direction:column; }
.cta-text strong{ font-weight:800; font-size:1.08rem; }
.cta-text small{ opacity:.85; }

/* Android (live) style */
.cta-btn--android{
  color:#1c1c1c;
  background-color: #c0ffc5;
  border:1px solid rgba(0,0,0,.05);
}
.cta-btn--android:hover{ transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0,0,0,.16); }
.cta-btn--android:active{ transform: translateY(0); }
.cta-btn--android:focus-visible{ outline: 3px solid #0f7c45; outline-offset: 2px; }

/* iOS (coming soon) style */
.cta-btn--soon{
  color:#343a40;
  background:
    linear-gradient(160deg, #eef1f5 0%, #e6e9ef 50%, #dde2ea 100%);
  border: 1px dashed rgba(0,0,0,.15);
  cursor: not-allowed;
  opacity: .8;
}
.cta-btn--soon i{ opacity:.75; }

/* Reduce motion respect */
@media (prefers-reduced-motion: reduce){
  .cta-btn{ transition: none; }
  .cta-btn--android:hover{ transform: none; }
}

/* Mobile tweaks */
@media (max-width: 576px){
  .cta-btn{ min-width: 100%; }
  .download-ctas{ gap: 1.5rem; } /* still roomy on small screens */
}

/* Ensure hero always shows even with fixed nav */
#bg-header{
  position: relative;
  display: block;
  min-height: 98vh;                 /* same as old .bg-header height */
  background: linear-gradient(135deg, #ffffff 0%, #b1b1b1 100%);
  padding-top: 110px;                /* clear the fixed navbar (~90px) + breathing room */
  overflow: hidden;                  /* you already had this rule in style.css */
  margin-bottom: 0px;
}

/* If you keep the inner .bg-header wrapper, neutralize its height/margins */
#bg-header > .bg-header{
  background: transparent;
  height: auto;
  margin: 0;
}

.bg-header .header-text {
    margin-top: 80px;
}

section{margin: 50px 0;}

.bg-header .main-heading {color: #141414;}

.bg-header .sub-heading {color: #000000;}

ul.footer-icon li i.la-discord:hover {background-color: #ffffff; color:#000000;}

/* ===== Scoped styles for the new section ===== */
.arena-slab {
  position: relative;
  padding: 80px 0;
  background:
    radial-gradient(1200px 600px at 15% 15%, rgba(0,118,187,0.25), transparent 60%),
    radial-gradient(1200px 600px at 85% 85%, rgba(255,255,255,0.06), transparent 60%),
    linear-gradient(180deg, #0b0f14 0%, #0d1117 100%);
  color: #f3f7fb;
  margin: 0 0 50px 0;
}
.arena-title {
  font-size: 48px;
  line-height: 1.05;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.arena-sub {
  font-size: 18px;
  color: #b7c3cf;
  margin-bottom: 22px;
}
.arena-actions .arena-btn {
  margin-right: 12px;
  margin-bottom: 8px;
  padding: 10px 16px;
  border-radius: 999px;
}
.btn-outline-light { border-width: 2px; }
.arena-bullets {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.arena-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #c7d3de;
  margin: 8px 0;
  font-size: 16px;
}
.arena-bullets i { color: #6dc7ff; }

/* Run card */
.run-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
}
.run-card__header {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
}
.pill--hot { background: rgba(109,199,255,0.15); border-color: rgba(109,199,255,0.35); }
.pill--ghost { background: rgba(255,255,255,0.06); }

.run-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.metric__label {
  color: #9eb2c3;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 6px;
}
.metric__value {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.metric__value span { font-size: 16px; opacity: .8; margin-left: 4px; }
.metric .up { color: #7fe092; }

.run-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  margin: 16px 0;
}

.run-footer {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.run-btn {
  background: rgba(255,255,255,0.06);
  color: #eaf4ff;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
}
.run-btn--primary {
  background: linear-gradient(90deg, #36a6ff, #5cc6ff);
  border: none;
  color: #0b0f14;
}

/* Ticker */
.ticker {
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
}
.ticker__track {
  white-space: nowrap;
  display: inline-block;
  padding: 10px 16px;
  animation: tickerMove 22s linear infinite;
  color: #cfe8ff;
}
.ticker__track i { color: #ffd36e; margin-right: 6px; }
@keyframes tickerMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive tweaks */
@media (max-width: 991px) {
  .arena-title { font-size: 40px; }
  .run-metrics { grid-template-columns: 1fr; }
  .run-footer { justify-content: stretch; }
  .run-btn { flex: 1; text-align: center; }
}

.arena-btn i{font-size: 20px;}

#footer{margin-bottom: 0 !important;}