@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Poppins:wght@700;800;900&display=swap');

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

:root {
  --black:  #000000;
  --purple: #8B00FF;
  --white:  #ffffff;
  --gray:   #aaaaaa;
  --header-h: 70px;
}

html, body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }

/* ─── HEADER ──────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0;
  box-shadow: none;
  border: none;
  display: flex;
  align-items: center;
  transition:
    top           0.55s cubic-bezier(0.4, 0, 0.2, 1),
    left          0.55s cubic-bezier(0.4, 0, 0.2, 1),
    right         0.55s cubic-bezier(0.4, 0, 0.2, 1),
    height        0.55s cubic-bezier(0.4, 0, 0.2, 1),
    background    0.55s ease,
    border-radius 0.55s ease,
    box-shadow    0.55s ease;
}

.header.scrolled {
  top: 12px;
  left: 18px;
  right: 18px;
  height: 60px;
  background: rgba(18, 6, 35, 0.72);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-radius: 50px;
  box-shadow:
    0 6px 32px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(150, 80, 255, 0.12);
}

.header-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 32px;
  width: auto;
  display: block;
  transform: translateY(-2px);
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
  transition: color 0.2s;
}

.nav a:hover { color: var(--purple); }
.nav a.active { color: var(--purple); }

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── PAGE BODY ───────────────────────────────────────── */
.page-body {
  padding-top: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-content {
  flex: 1;
}

/* ─── PARTNERS MARQUEE ────────────────────────────────── */
.partners-section {
  background: #000;
  padding: 164px 0 64px;
  overflow: hidden;
}

.partners-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-scroll 22s linear infinite;
  gap: 0;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 90px;
  flex-shrink: 0;
}

.partner-logo img {
  width: 160px;
  height: 80px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.75);
  transition: filter 0.3s ease;
}

/* APay has a solid background — invert makes it blend with dark bg */
.partner-logo.logo-bg img {
  filter: grayscale(1) invert(1) brightness(2.5) contrast(0.85) opacity(0.75);
}

.partner-logo img:hover,
.partner-logo.logo-bg img:hover {
  filter: grayscale(1) opacity(1);
}

.partner-logo.logo-bg img:hover {
  filter: grayscale(1) invert(1) brightness(2.5) contrast(0.85) opacity(1);
}

/* ─── FOOTER ──────────────────────────────────────────── */
.footer {
  background: var(--black);
  padding: 80px 0 60px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Tagline */
.footer-tagline {
  margin-bottom: 60px;
}

.footer-tagline .line1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 52px;
  color: var(--white);
  line-height: 1.1;
}

.footer-tagline .line2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 52px;
  color: var(--purple);
  line-height: 1.1;
}

/* Contacts */
.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 48px;
}

.footer-contact-item .label {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
  text-transform: none;
}

.footer-contact-item .email {
  font-size: 13px;
  font-weight: 400;
  color: var(--white);
  opacity: 0.85;
}

/* Social */
.footer-socials {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 80px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: color 0.2s;
}

.footer-socials a:hover { color: var(--purple); }

.footer-socials svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Nav grid */
.footer-nav {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-nav-col {}

.footer-nav-col .col-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 14px;
  display: block;
}

.footer-nav-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-col ul li a {
  font-size: 13px;
  font-weight: 400;
  color: var(--white);
  transition: color 0.2s;
}

.footer-nav-col ul li a:hover { color: var(--purple); }

/* ─── SHARED: bottom-edge blur on every section ────────── */
.hero::after,
.carousel-section::after,
.event-section::after,
.team-section::after,
.roster-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  pointer-events: none;
  z-index: 30;
  -webkit-mask-image: linear-gradient(to top, black 0%, transparent 100%);
  mask-image: linear-gradient(to top, black 0%, transparent 100%);
}

/* Event section bottom blur */
.event-section::after {
  height: 80px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}


/* Hero: subtle bottom blur */
.hero::after {
  height: 80px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Carousel: subtle blur */
.carousel-section::after {
  height: 80px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Team section: full-width gradient fade, no backdrop-filter (preserves left text) */
.team-section::after {
  height: 480px;
  background: linear-gradient(
    to top,
    #000000    0%,
    #000000   15%,
    rgba(0,0,0,0.95) 30%,
    rgba(0,0,0,0.82) 50%,
    rgba(0,0,0,0.45) 70%,
    rgba(0,0,0,0.1)  88%,
    transparent      100%
  );
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* Roster (purple-bg): stronger blur */
.roster-section::after {
  height: 140px;
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
}

/* ─── EVENT SECTION ───────────────────────────────────── */
.event-section {
  position: relative;
  background: #111111;
  overflow: hidden;
}

.event-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 80px;
  display: flex;
  align-items: center;
  gap: 80px;
  min-height: 580px;
}

/* — Left — */
.event-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.event-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 100px;
  padding: 7px 16px;
  width: fit-content;
}

.badge-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8B00FF;
  box-shadow: 0 0 7px 2px rgba(139,0,255,0.65);
  animation: live-blink 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes live-blink {
  0%, 100% { opacity: 1;   box-shadow: 0 0 7px 2px rgba(139,0,255,0.65); }
  50%       { opacity: 0.4; box-shadow: 0 0 2px 1px rgba(139,0,255,0.25); }
}

.event-title-block { line-height: 1; }

.event-eserie {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 42px;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.05em;
}

.event-finale {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 82px;
  color: #8B00FF;
  letter-spacing: 0.02em;
  line-height: 0.92;
  text-shadow: 0 0 50px rgba(139,0,255,0.45);
}

.event-where {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
}

.event-where svg { flex-shrink: 0; color: #8B00FF; }

/* — Countdown — */
.event-countdown {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.cd-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 54px;
  color: #fff;
  line-height: 1;
  min-width: 72px;
  text-align: center;
  letter-spacing: -0.02em;
}

.cd-lbl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
}

.cd-sep {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 50px;
  color: rgba(139,0,255,0.55);
  line-height: 1;
  padding-top: 4px;
}

/* — Tags — */
.event-tags { display: flex; gap: 10px; flex-wrap: wrap; }

.ev-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.45);
}

.ev-tag-purple {
  border-color: rgba(139,0,255,0.55);
  color: #8B00FF;
  background: rgba(139,0,255,0.08);
}

/* — Right: Globe — */
.event-right {
  flex: 0 0 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.globe-wrap {
  position: relative;
  width: 460px;
  height: 460px;
}

#eventGlobe {
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease;
  border-radius: 50%;
  cursor: grab;
  touch-action: none;
  display: block;
}

.globe-dot {
  position: absolute;
  top: 0; left: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.globe-dot-core {
  position: absolute;
  width: 11px; height: 11px;
  background: #8B00FF;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.6), 0 0 12px 4px rgba(139,0,255,0.85);
  transform: translate(-50%, -50%);
  z-index: 2;
}

.globe-dot-ring {
  position: absolute;
  width: 30px; height: 30px;
  border: 2px solid rgba(139,0,255,0.7);
  border-radius: 50%;
  background: transparent;
  animation: globe-ring-pulse 2.4s ease-out infinite;
}

.globe-dot-ring.r2 { animation-delay: 1.2s; }

@keyframes globe-ring-pulse {
  0%   { transform: translate(-50%,-50%) scale(0.3); opacity: 0.9; }
  100% { transform: translate(-50%,-50%) scale(3);   opacity: 0;   }
}

/* ─── HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 520px;
  background: #111111;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-ghost {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 480px;
  color: #ffffff;
  opacity: 0.13;
  filter: blur(22px);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  line-height: 1;
  letter-spacing: -16px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: calc(var(--header-h) + 60px) 60px 100px;
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 90px;
  line-height: 1.05;
  letter-spacing: -2px;
}

.hero-title .white  { color: #ffffff; display: block; }
.hero-title .purple { color: var(--purple); display: block; }

/* ─── CAROUSEL ────────────────────────────────────────── */
.carousel-section {
  position: relative;
  width: 100%;
  background: var(--black);
}

.carousel {
  position: relative;
  width: 100%;
  height: 620px;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Bottom gradient for readability */
.carousel-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(0,0,0,0.25) 65%,
    rgba(0,0,0,0.75) 100%
  );
}

/* Arrows */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 36px;
  cursor: pointer;
  padding: 12px 20px;
  line-height: 1;
  opacity: 0.85;
  transition: opacity 0.2s;
  user-select: none;
}
.carousel-btn:hover { opacity: 1; }
.carousel-btn.prev { left: 16px; }
.carousel-btn.next { right: 16px; }

/* Caption */
.carousel-caption {
  position: absolute;
  bottom: 52px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  width: 90%;
}

.carousel-caption .c-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.carousel-caption .c-sub {
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
  opacity: 0.9;
  letter-spacing: 0.5px;
}

/* Dots */
.carousel-dots {
  position: absolute;
  bottom: 20px;
  right: 28px;
  z-index: 10;
  display: flex;
  gap: 7px;
  align-items: center;
}

.carousel-dots .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.carousel-dots .dot.active {
  background: #ffffff;
  transform: scale(1.25);
}

/* ─── TEAM SECTION ────────────────────────────────────── */
.team-section {
  position: relative;
  width: 100%;
  min-height: 640px;
  background-image: url('../images/black-bg.png');
  background-size: cover;
  background-position: center top;
  overflow: hidden;
}

.team-inner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 640px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 60px 80px 140px;
}

/* Left: text */
.team-content {
  flex: 0 0 320px;
  max-width: 320px;
  position: relative;
  z-index: 2;
}

.team-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 28px;
  line-height: 1;
}

.team-logo-img {
  height: 34px;
  width: auto;
  display: block;
}

.team-logo-word {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 34px;
  color: var(--purple);
  line-height: 1;
  margin-top: 2px;
}

.team-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.team-desc {
  font-size: 13px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.65;
  margin-bottom: 36px;
  opacity: 0.88;
}

.team-btn {
  display: inline-block;
  border: 1.5px solid #ffffff;
  color: #ffffff;
  background: transparent;
  padding: 12px 34px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}

.team-btn:hover {
  background: #ffffff;
  color: #000000;
}

/* Right: photo */
.team-visual {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  left: 38%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-photo {
  height: 75%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  mix-blend-mode: screen;
  margin-top: 60px;
}

/* Fade bottom of image — right side only, never touches left text */
.team-visual::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(
    to top,
    #000000 0%,
    rgba(0,0,0,0.85) 35%,
    rgba(0,0,0,0.3) 65%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 3;
}

/* ─── ROSTER SECTION ──────────────────────────────────── */
.roster-section {
  position: relative;
  width: 100%;
  background-image: url('../images/purple-bg.png');
  background-size: cover;
  background-position: center;
  padding: 100px 0 60px;
}

.roster-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

/* Title */
.roster-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 38px;
  color: #ffffff;
  margin-bottom: 28px;
}

/* Subtitle row */
.roster-sub-row {
  display: flex;
  align-items: flex-start;
  gap: 36px;
  margin-bottom: 70px;
}

.roster-sub-text {
  flex: 0 0 280px;
  font-size: 15px;
  color: #ffffff;
  opacity: 0.85;
  line-height: 1.6;
}

.roster-divider {
  width: 1px;
  background: rgba(255,255,255,0.4);
  align-self: stretch;
  min-height: 60px;
}

.roster-tagline .tagline-l1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 42px;
  color: #ffffff;
  line-height: 1.1;
}

.roster-tagline .tagline-l2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 42px;
  color: #FFD700;
  line-height: 1.1;
}

/* Players grid */
.players-row {
  display: flex;
  gap: 0;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.player-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 120px;
  padding: 0 16px;
}

.player-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 16px;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.player-card:hover .player-logo {
  transform: scale(1.35);
}

.player-name {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
  white-space: nowrap;
}

.player-coach {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
}

/* ─── CREW CARD ────────────────────────────────────────── */
.crew-card-wrap {
  position: relative;
  z-index: 10;
  max-width: 860px;
  margin: 60px auto -190px;
}

.crew-card {
  display: flex;
  height: 380px;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}

.crew-card-left {
  flex: 0 0 44%;
  background: #0d0d0d;
  padding: 44px 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.crew-logo-block {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 16px;
}

.crew-logo-img {
  height: 30px;
  width: auto;
}

.crew-logo-word {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 30px;
  color: #FFD700;
  line-height: 1;
  margin-top: 2px;
}

.crew-card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 10px;
}

.crew-card-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  margin-bottom: 20px;
  flex: 1;
}

.crew-btn {
  display: inline-block;
  border: 1.5px solid #ffffff;
  color: #ffffff;
  background: transparent;
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  width: fit-content;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}

.crew-btn:hover {
  background: #ffffff;
  color: #000000;
}

.crew-card-right {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.crew-card-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ─── MOBILE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-title { font-size: 70px; }
  .hero-ghost  { font-size: 340px; }
}

@media (max-width: 900px) {
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 40px;
    gap: 24px;
    transform: translateY(-110%);
    transition: transform 0.35s ease;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav.open { transform: translateY(0); }
  .nav a { font-size: 16px; }
  .hamburger { display: flex; }

  .footer-tagline .line1,
  .footer-tagline .line2 { font-size: 36px; }

  .footer-nav { gap: 32px; }
}

@media (max-width: 600px) {
  .header-inner { padding: 0 20px; }
  .footer-inner { padding: 0 20px; }
  .footer { padding: 60px 0 40px; }
  .footer-tagline .line1,
  .footer-tagline .line2 { font-size: 28px; }
  .footer-nav { gap: 24px; }
  .hero-title { font-size: 48px; }
  .hero-inner { padding: 80px 24px; }
  .hero-ghost  { font-size: 220px; opacity: 0.1; }
  .carousel { height: 400px; }
  .carousel-caption .c-name { font-size: 18px; }
  .carousel-btn { padding: 8px 14px; font-size: 28px; }
}
