@font-face {
  font-family: "Google_Sans";
  src: url("./font/GoogleSans-Regular.ttf") format("truetype");
  font-style: normal;
}

@font-face {
  font-family: "Google_Sans_Medium";
  src: url("./font/GoogleSans-Medium.ttf") format("truetype");
  font-style: normal;
}

@font-face {
  font-family: "Google_Sans_Bold";
  src: url("./font/GoogleSans-Bold.ttf") format("truetype");
  font-style: normal;
}
.faq-button,
.faq-answer,
.faq-button *,
.faq-answer * {
  font-family: "Google_Sans", sans-se1rif !important;
}

/* Loading Dots */

.build-with-ai-page .loading-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.build-with-ai-page .dot {
  width: 30px;
  height: 30px;
  background: #5cdb6d;
  border: 2px solid #1e1e1e;
  border-radius: 50%;
  animation: bwa-dotBounce 1.4s ease-in-out infinite;
}

.build-with-ai-page .dot:nth-child(1) { animation-delay: 0s; }
.build-with-ai-page .dot:nth-child(2) { animation-delay: 0.2s; }
.build-with-ai-page .dot:nth-child(3) { animation-delay: 0.4s; }

@media (max-width: 640px) {
  .build-with-ai-page .dot {
    width: 28px;
    height: 28px;
  }
}

@keyframes bwa-dotBounce {
  0%   { transform: translateY(0); }
  20%  { transform: translateY(-12px); }
  40%  { transform: translateY(0); }
  100% { transform: translateY(0); }
}


/* Snapshot Pill*/

.build-with-ai-page .snapshot-code-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border: 1px solid #1e1e1e;
  border-radius: 999px;
  background: transparent;
  color: #1e1e1e;
  font-family: "Google Sans", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}

@media (max-width: 640px) {
  .build-with-ai-page .snapshot-code-icon {
    padding: 8px 14px;
    font-size: 16px;
    border-width: 1px;
  }
}


/* Arrow Animation */

.build-with-ai-page .arrow-loading {
  animation: bwa-arrowMove 1.6s ease-in-out infinite;
}

@keyframes bwa-arrowMove {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(16px); }
  100% { transform: translateX(0); }
}

@media (max-width: 768px) {
  .build-with-ai-page .arrow-loading {
    animation: bwa-arrowMoveDown 1.6s ease-in-out infinite;
  }
}

@keyframes bwa-arrowMoveDown {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(16px); }
  100% { transform: translateY(0); }
}


/* Ball + Pill Animation */

@keyframes bwa-ballMove {
  0%, 30% {
    transform: translateX(0);
  }
  50%, 70% {
    transform: translateX(46px);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes bwa-pillInvert {
  0%, 30%, 100% {
    background-color: #000000;
    color: #ffffff;
  }
  50%, 70% {
    background-color: #ffffff;
    color: #000000;
  }
}

.build-with-ai-page .animate-ball {
  animation: bwa-ballMove 4s ease-in-out infinite;
}

.build-with-ai-page .animate-pill {
  animation: bwa-pillInvert 4s ease-in-out infinite;
}


/* Ticker Section*/

.build-with-ai-page .ticker-track {
  display: flex;
  width: max-content;
  animation: bwa-marquee 20s linear infinite;
}

.build-with-ai-page .ticker-text {
  white-space: nowrap;
  font-family: Google_Sans;
  font-size: 14px;
  color: white;
  padding-right: 4rem;
}

@keyframes bwa-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* FAQ text sizing */
.faq-button p,
.faq-answer p {
  font-size: 1rem; /* match requested 1rem */
}

/* Blink Animation*/

@keyframes bwa-blink {
  0% {
    opacity: 0.3;
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0.3;
  }
}


/* Sweep Up Animation */

@keyframes bwa-sweepUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* PromptWars page — all styles scoped under .promptwars-page to avoid affecting other pages */
@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=PT+Mono&display=swap');

.promptwars-page {
  font-family: "Google_Sans";
}

/* Bootcamp page headings should all be text-4xl (2.25rem) regardless of breakpoint */
.bootcamps-page h2 {
  font-size: 2.25rem !important;
  line-height: 2.5rem; /* approximate Tailwind text-4xl leading */
}

/* PromptWars page headings also unified to text-4xl */
.promptwars-page h2 {
  font-size: 2.25rem !important;
  line-height: 2.5rem;
}

/* Build with AI page headings same as others */
.build-with-ai-page h2 {
  font-size: 2.25rem !important;
  line-height: 2.5rem;
}

/* Headings should use the medium weight for clearer hierarchy */
.promptwars-page h1,
.promptwars-page h2,
.promptwars-page h3,
.promptwars-page h4,
.promptwars-page h5,
.promptwars-page h6,
.promptwars-page .heading,
.promptwars-page .title {
  font-family: "Google_Sans_Medium";
}

/* Hero: background image + gradient overlay */
.promptwars-page .promptwars-hero {
  background-image: url(https://h2svision.github.io/publicAssets/buildWithAi/promptwars/herosection.png), linear-gradient(97deg, rgba(50, 50, 50, 0.85) 0.5%, rgba(30, 30, 30, 0.9) 18.32%, rgba(30, 30, 30, 0.9) 102.9%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 60vh;
}

/* Hero tubelight image (768px and up: centered top) */
.promptwars-page .promptwars-hero-tubelight {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scale(1);
  z-index: 0;
  width: auto;
  object-fit: contain;
}

/* Hero CTA button (768px and up: solid gradient fill) */
.promptwars-page .promptwars-hero-cta {
  border-radius: 84.526px;
  border: none;
  background: linear-gradient(90deg, #5cdb6d 0%, #ffd427 100%),
    linear-gradient(148deg, #b9fe21 9.74%, #c6f6cf 92.62%);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.promptwars-page .promptwars-hero-cta-label {
  position: relative;
  z-index: 1;
}

.promptwars-page .promptwars-hero-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(92, 219, 109, 0.35);
}

/* Subtle sine pass (shimmer) left to right on hover */
.promptwars-page .promptwars-hero-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    transparent 35%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 65%,
    transparent 100%
  );
  background-size: 200% 100%;
  background-position: 200% 0;
  pointer-events: none;
  transition: background-position 0s;
}

.promptwars-page .promptwars-hero-cta:hover::after {
  background-position: -100% 0;
  transition: background-position 0.6s ease-out;
}

/* Hero mobile CTA link (Register now) — same solid gradient as desktop CTA, visible only below 768px */
.promptwars-page .promptwars-hero-cta-link {
  display: block;
  margin-top: 2rem;
  padding: 1rem 2rem;
  text-align: center;
  font-weight: 500;
  text-decoration: none;
  color: #1e1e1e;
  border-radius: 84.526px;
  border: none;
  background: linear-gradient(90deg, #5cdb6d 0%, #ffd427 100%),
    linear-gradient(148deg, #b9fe21 9.74%, #c6f6cf 92.62%);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.promptwars-page .promptwars-hero-cta-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(92, 219, 109, 0.35);
  color: #1e1e1e;
}
.promptwars-page .promptwars-hero-cta-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    transparent 35%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 65%,
    transparent 100%
  );
  background-size: 200% 100%;
  background-position: 200% 0;
  pointer-events: none;
  transition: background-position 0s;
}
.promptwars-page .promptwars-hero-cta-link:hover::after {
  background-position: -100% 0;
  transition: background-position 0.6s ease-out;
}

/* About: video/image container — rounded frame */
.promptwars-page .promptwars-about-media {
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

/* About CTA button — same pill gradient as Hero */
.promptwars-page .promptwars-about-cta {
  background: linear-gradient(90deg, #5cdb6d 0%, #ffd427 100%);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.promptwars-page .promptwars-about-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(92, 219, 109, 0.35);
}

/* What You Build: left text + arrow, right = 3 dark cards (staggered) + rotating-lines video */
.promptwars-page .promptwars-what-you-build-title {
  font-family: "Google_Sans_Medium";
  color: #1e1e1e;
}

.promptwars-page .promptwars-what-you-build-desc {
  font-family: "Google_Sans";
  color: #1e1e1e;
}

.promptwars-page .promptwars-what-you-build-arrow {
  color: #1e1e1e;
  display: block;
}

/* Right: 2 cards per row at md+, 1 per row below 768px */
.promptwars-page .promptwars-what-you-build-right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: end;
}

.promptwars-page .promptwars-what-you-build-video-wrap {
  border-radius: 1rem;
  overflow: hidden;
  background: #1e1e1e;
  max-width: 100px;
  aspect-ratio: 1;
  margin-top: 0.5rem;
  border: none;
  outline: none;
  align-self: start;
}

.promptwars-page .promptwars-what-you-build-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  vertical-align: top;
  border: none;
  outline: none;
  /* Slight scale so video fully covers rounded corners and no wrapper background shows */
  transform: scale(1.02);
}

/* Dark cards with green glow */
.promptwars-page .promptwars-what-you-build-card {
  background: #1a1a1a;
  border-radius: 24px;
  padding: 2rem 2.5rem;
  border: 1px solid rgba(0, 204, 0, 0.2);
  box-shadow: 0 0 20px rgba(0, 204, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

/* 1st card (AI Agents) */
.promptwars-page .promptwars-what-you-build-card:nth-child(1) {
  width: 290px;
  margin-left: auto;
  border-bottom-right-radius: 0;
}

/* 2nd card (Problem-solvers) */
.promptwars-page .promptwars-what-you-build-card:nth-child(2) {
  width: 408.074px;
  border-bottom-left-radius: 0;
}

/* 3rd card (Vibe-coded prototypes) */
.promptwars-page .promptwars-what-you-build-card:nth-child(3) {
  width: 251.53px;
  margin-left: auto;
  border-top-right-radius: 0;
}

.promptwars-page .promptwars-what-you-build-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(0, 204, 0, 0.35) 0%,
    transparent 50%,
    rgba(0, 204, 0, 0.15) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.promptwars-page .promptwars-what-you-build-card-title {
  font-family: "Google Sans", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #34A853;
  margin: 0 0 0.5rem 0;
  letter-spacing: 0.02em;
}

.promptwars-page .promptwars-what-you-build-card-desc {
  font-family: "Google_Sans";
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}

/* Locations: terminal panel — PT Mono, match reference exactly */
.promptwars-page .promptwars-locations-terminal {
  font-family: "PT Mono", monospace;
  background: #1a1a1a;
  border-radius: 10px;
  padding: 3rem 2rem;
  color: #eee;
}

.promptwars-page .promptwars-locations-terminal-header {
  color: #eee;
  font-size: 14px;
  margin-bottom: 1rem;
  letter-spacing: 0;
}

.promptwars-page .promptwars-locations-terminal-header .highlight {
  color: #8ce08c;
}

/* Row: no background; vertical spacing 8–12px */
.promptwars-page .promptwars-locations-row {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0.5rem 0;
  background: transparent;
  font-size: 1rem;
  line-height: 1.4;
}

.promptwars-page .promptwars-locations-city {
  font-family: "Google_Sans";
  margin-left: 0.5rem;
  flex: 1;
  min-width: 0;
  color: #eee;
}

.promptwars-page .promptwars-locations-status {
  margin-left: 1.5rem;
  min-width: 6.5rem;
  font-size: 10px;
  text-align: right;
  letter-spacing: 0.05em;
  color: #eee;
}

/* Progress bar: brackets in white; inner area with padding and gap */
.promptwars-page .promptwars-locations-bar {
  display: inline-flex;
  align-items: center;
  letter-spacing: 0;
  color: #eee;
  font-size: 13px;
}

.promptwars-page .promptwars-locations-bar-inner {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  padding: 0 4px;
}

/* Blocks: every segment same size — filled and placeholder must match exactly */
.promptwars-page .promptwars-locations-bar-segment {
  width: 6px;
  height: 15px;
  min-width: 6px;
  min-height: 4px;
  box-sizing: border-box;
  display: inline-block;
  flex-shrink: 0;
  vertical-align: middle;
}

.promptwars-page .promptwars-locations-bar-segment:not(.empty) {
  background: #5CDB6D;
}

/* Last filled segment blinks when bar is incomplete */
.promptwars-page .promptwars-locations-bar-segment.blink {
  animation: promptwars-locations-blink 1s ease-in-out infinite;
}

@keyframes promptwars-locations-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

/* Rewards & benefits: card + glow + absolutely positioned icon */
.promptwars-page .promptwars-rewards-card {
  position: relative;
  background-color: #141414;
  border-radius: 1.5rem;
  overflow: visible;
}

/* Internal glow: top-left and bottom-right */
.promptwars-page .promptwars-rewards-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 100% 100% at 0% 0%,
      rgba(92, 219, 109, 0.2) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 100% 100% at 100% 100%,
      rgba(92, 219, 109, 0.2) 0%,
      transparent 65%
    )
}

/* Icon: absolute, top-left of card, overlapping top & left edge */
.promptwars-page .promptwars-rewards-card-icon {
  position: absolute;
  top: -35px;
  left: 40px;
  width: 48px;
  height: 48px;
  object-fit: contain;
  transform: translate(-8px, -12px);
  z-index: 2;
  pointer-events: none;
}

.promptwars-page .promptwars-rewards-card-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  text-align: left;
}

.promptwars-page .promptwars-rewards-card-title {
  color: #5cdb6d;
  font-family: "PT Mono", monospace;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.promptwars-page .promptwars-rewards-card-desc {
  color: #e0e0e0;
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
}

/* Participant journey: background in CSS, centered; vertical (tablet) / horizontal (desktop) */
.promptwars-page .promptwars-journey {
  background-color: #fff;
}

.promptwars-page .promptwars-journey-bg {
  position: absolute;
  inset: 0;
  background-image: url(https://h2svision.github.io/publicAssets/buildWithAi/promptwars/prompt-journey-bg.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 85% auto;
  pointer-events: none;
  opacity: 0.9;
}

/* Pill label (green, white text) */
.promptwars-page .promptwars-journey-pill {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #34a853;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  white-space: nowrap;
}

.promptwars-page .promptwars-journey-desc {
  color: #1e1e1e;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
  max-width: 42ch;
  text-align: center;
  padding-top: 1rem;
}

/* Vertical timeline (tablet / mobile) */
/* Vertical timeline: visible on mobile/tablet, hidden from lg (1024px) */
.promptwars-page .promptwars-journey-vertical {
  display: block;
  position: relative;
  padding-left: 2rem;
}

.promptwars-page .promptwars-journey-vertical-line {
  position: absolute;
  left: 1.95rem;
  top: 1rem;
  bottom: 0.5rem;
  width: 0;
  border-left: 2px dashed #c4c4c4;
}

.promptwars-page .promptwars-journey-step-v {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1.5rem;
}

.promptwars-page .promptwars-journey-step-v:last-child {
  padding-bottom: 0;
}

/* Circle on vertical line (outline + inner dot) */
.promptwars-page .promptwars-journey-circle {
  position: absolute;
  left: 0rem;
  top: 0.85rem;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border: 2px solid #1e1e1e;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promptwars-page .promptwars-journey-circle-inner {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1e1e1e;
}

.promptwars-page .promptwars-journey-step-content {
  flex: 1;
  min-width: 0;
  margin-left: 1.25rem;
}

.promptwars-page .promptwars-journey-step-content .promptwars-journey-pill {
  white-space: normal;
}

.promptwars-page .promptwars-journey-step-content .promptwars-journey-desc {
  margin-top: 0.5rem;
}

/* Horizontal timeline (desktop): arrow above path, not part of it */
/* Horizontal timeline: hidden on mobile/tablet, visible from lg (1024px) */
.promptwars-page .promptwars-journey-horizontal {
  display: none;
}

.promptwars-page .promptwars-journey-h-arrow-row {
  color: #1e1e1e;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.promptwars-page .promptwars-journey-arrow {
  display: block;
}

/* Arrowhead: right point grows then returns (left line stays fixed) */
.promptwars-page .promptwars-journey-arrow-head {
  transform-origin: 102.72px 37.48px;
  animation: promptwars-journey-arrow-grow 1.8s ease-in-out infinite;
}

@keyframes promptwars-journey-arrow-grow {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(14px);
  }
}

.promptwars-page .promptwars-journey-h-path {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0;
}

.promptwars-page .promptwars-journey-step-h {
  flex: 1;
  min-width: 0;
  max-width: 180px;
}

.promptwars-page .promptwars-journey-step-h .promptwars-journey-pill {
  white-space: normal;
  text-align: center;
  display: block;
  width: 100%;
  box-sizing: border-box;
}

.promptwars-page .promptwars-journey-connector {
  width: 20px;
  min-width: 20px;
  height: 2px;
  margin-top: 1.35rem;
  background: #1e1e1e;
  flex-shrink: 0;
  align-self: flex-start;
}

/* Getting started with Google Antigravity */
.promptwars-page .promptwars-started-antigravity {
  background: linear-gradient(
    135deg,
    rgba(200, 230, 240, 0.5) 0%,
    rgba(220, 245, 220, 0.6) 100%
  );
}

.promptwars-page .promptwars-started-title {
  font-family: "Google_Sans_Medium";
  color: #1e1e1e;
}

.promptwars-page .promptwars-started-brand-name {
  font-family: "Google_Sans_Medium";
  color: #1e1e1e;
}

.promptwars-page .promptwars-started-intro {
  font-family: "Google_Sans";
  font-size: 1rem;
  line-height: 1.6;
}

.promptwars-page .promptwars-started-card {
  position: relative;
  background: #F4FFF5;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 1.25rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  /* overflow: hidden; */
}

.promptwars-page .promptwars-started-card-icon-top {
  position: absolute;
  top: -2.25rem;
  left: -2.25rem;
  width: 80px;
  height: 80px;
  object-fit: contain;
  z-index: 1;
  pointer-events: none;
}

.promptwars-page .promptwars-started-card-icon-bottom {
  position: absolute;
  bottom: -2.25rem;
  right: -2.25rem;
  width: 80px;
  height: 80px;
  object-fit: contain;
  z-index: 1;
  pointer-events: none;
}

.promptwars-page .promptwars-started-card-inner {
  padding: 3rem;
  max-height: 520px;
  overflow-y: auto;
  position: relative;
  z-index: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.promptwars-page .promptwars-started-card-inner::-webkit-scrollbar {
  display: none;
}

.promptwars-page .promptwars-started-step {
  margin-bottom: 2rem;
}

.promptwars-page .promptwars-started-step:last-child {
  margin-bottom: 0;
}

.promptwars-page .promptwars-started-step-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #34A853;
  margin: 0 0 0.75rem 0;
}

.promptwars-page .promptwars-started-step-intro {
  font-family: "Google_Sans";
  font-size: 1rem;
  color: #1e1e1e;
  line-height: 1.5;
  margin: 0 0 0.5rem 0;
}

.promptwars-page .promptwars-faq{
  font-size: 1rem;
}

.promptwars-page .promptwars-started-list {
  font-family: "Google_Sans";
  font-size: 1rem;
  color: #1e1e1e;
  line-height: 1.6;
  margin: 0 0 0 1.25rem;
  padding: 0;
  list-style: disc;
}

.promptwars-page .promptwars-started-list li {
  margin-bottom: 0.5rem;
}

.promptwars-page .promptwars-started-list li:last-child {
  margin-bottom: 0;
}

.promptwars-page .promptwars-started-recommended {
  font-family: "Google_Sans";
  font-size: 0.875rem;
  color: #1e1e1e;
  font-style: italic;
  margin: 0.75rem 0 0 0;
  opacity: 0.9;
}

/* ========== MEDIA QUERIES (all breakpoints in one place) ========== */
/* max-width: 767px = mobile only; min-width: 768px = tablet and up. No overlap at 768px. */

/* --- max-width: 767px (mobile only) --- */
@media (max-width: 767px) {
  .promptwars-page .promptwars-hero {
    background-size: auto;
    overflow-x: hidden;
  }
  .promptwars-page .promptwars-hero-tubelight {
    left: 50%;
    top: 15%;
    transform: translateX(-50%) scale(1.7);
    width: min(100vw, 420px);
    min-width: 280px;
  }
  .promptwars-page .promptwars-hero-cta {
    border-radius: 84.526px;
    border: none;
    background: transparent;
    position: relative;
    overflow: visible;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .promptwars-page .promptwars-hero-cta::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 84.526px;
    padding: 2px;
    background: linear-gradient(90deg, #5cdb6d 0%, #ffd427 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 0;
  }
  .promptwars-page .promptwars-hero-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #5cdb6d 0%, #ffd427 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
  }
  .promptwars-page .promptwars-hero-cta .promptwars-hero-cta-label {
    position: relative;
    z-index: 1;
  }

  .promptwars-page .promptwars-journey-bg {
    inset: auto;
    left: 50%;
    top: 50%;
    width: 100vh;
    height: 100vw;
    margin-left: -50vh;
    margin-top: -50vw;
    transform: rotate(90deg);
  }
  .promptwars-page .promptwars-journey-desc {
    font-size: 1rem;
    text-align: left;
  }
  .promptwars-page .promptwars-what-you-build-card:nth-child(1) {
    margin-right: auto;
    margin-left: unset;
    width: 90%;
  }
  .promptwars-page .promptwars-what-you-build-card:nth-child(2) {
    margin-left: auto;
    margin-right: 10px;
    width: 80%;
  }
  .promptwars-page .promptwars-what-you-build-card:nth-child(3) {
    margin-right: auto;
    margin-left: unset;
    width: 90%;
    border-top-right-radius: 24px;
    border-bottom-right-radius: 0px;
  }

  .promptwars-page .promptwars-started-card {
    border: none;
    box-shadow: none;
    background: unset;
  }

  .promptwars-page .promptwars-started-card-inner {
    padding: 0;
    max-height: unset;
  }

  .promptwars-page .promptwars-started-step {
    padding: 1.75rem;
    border-radius: 1.25rem;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  }
  .promptwars-page .promptwars-started-step:nth-child(odd) {
    background: #F4FFF5;
  }
  .promptwars-page .promptwars-started-step:nth-child(even) {
    background: #E2FFE6;
  }
}

/* --- max-width: 1023px --- */
@media (max-width: 1023px) {
  .promptwars-page .promptwars-journey-bg {
    background-size: 90% auto;
    background-position: center center;
  }
}

/* --- min-width: 768px --- */
@media (min-width: 768px) {
  .promptwars-page .promptwars-hero-cta-link {
    display: none;
  }
  .promptwars-page .promptwars-what-you-build-right {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    align-items: end;
  }
  .promptwars-page .promptwars-what-you-build-video-wrap {
    margin-top: 0;
  }
  .promptwars-page .promptwars-rewards-card-icon {
    width: 72px;
    height: 72px;
    top: -55px;
  }
  .promptwars-page .promptwars-rewards-card:nth-child(3) .promptwars-rewards-card-icon {
    top: -45px;
  }
  .promptwars-page .promptwars-rewards-card-content {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .promptwars-page .promptwars-rewards-card-title {
    font-size: 1.25rem;
  }
  .promptwars-page .promptwars-rewards-card-desc {
    font-size: 1rem;
  }
  .promptwars-page .promptwars-journey-pill {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  .promptwars-page .promptwars-what-you-build-card:nth-child(2) {
    width: 300px;
  }
}

/* --- min-width: 1024px --- */
@media (min-width: 1024px) {
  .promptwars-page .promptwars-journey-bg {
    background-size: 55% auto;
    background-position: center;
  }
  .promptwars-page .promptwars-journey-vertical {
    display: none;
  }
  .promptwars-page .promptwars-journey-horizontal {
    display: block;
  }
}
/* Bootcamps page — all styles scoped under .bootcamps-page to avoid affecting other pages */
@import url("https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=PT+Mono&display=swap");

.bootcamps-page {
  font-family: "Google Sans", sans-serif;
}

.bootcamps-page .bootcamps-hero-title {
  font-family: "Google_Sans_Medium", sans-serif;
  color: #1e1e1e;
}

.bootcamps-page .bootcamps-hero-desc {
  font-family: "Google_Sans", sans-serif;
  color: #1e1e1e;
}

/* About */
.bootcamps-page .bootcamps-about-title {
  font-family: "Google_Sans_Medium", sans-serif;
  color: #1e1e1e;
}

.bootcamps-page .bootcamps-about-desc {
  font-family: "Google_Sans", sans-serif;
  color: #1e1e1e;
}

/* Locations */

/* Locations: terminal panel — PT Mono, match reference exactly */
.bootcamps-page .bootcamps-locations-terminal {
  font-family: "PT Mono", monospace;
  background: #f1f1f1;
  border-radius: 10px;
  padding: 3rem 2rem;
  color: #1e1e1e;
}

.bootcamps-page .bootcamps-locations-terminal-header {
  font-family: "Google_Sans";
  color: #1e1e1e;
  font-size: 14px;
  margin-bottom: 1rem;
  letter-spacing: 0;
}

.bootcamps-page .bootcamps-locations-terminal-header .highlight {
  color: #34a853;
}

/* Row: no background; vertical spacing 8–12px */
.bootcamps-page .bootcamps-locations-row {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0.5rem 0;
  background: transparent;
  font-size: 1rem;
  line-height: 1.4;
}

.bootcamps-page .bootcamps-locations-city {
  font-family: "Google_Sans";
  margin-left: 0.5rem;
  flex: 1;
  min-width: 0;
  color: #1e1e1e;
}

.bootcamps-page .bootcamps-locations-status {
  margin-left: 1.5rem;
  min-width: 6.5rem;
  font-size: 10px;
  text-align: right;
  letter-spacing: 0.05em;
  color: #1e1e1e;
}

/* Progress bar: brackets in white; inner area with padding and gap */
.bootcamps-page .bootcamps-locations-bar {
  display: inline-flex;
  align-items: center;
  letter-spacing: 0;
  color: #1e1e1e;
  font-size: 13px;
}

.bootcamps-page .bootcamps-locations-bar-inner {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  padding: 0 4px;
}

/* Blocks: every segment same size — filled and placeholder must match exactly */
.bootcamps-page .bootcamps-locations-bar-segment {
  width: 6px;
  height: 15px;
  min-width: 6px;
  min-height: 4px;
  box-sizing: border-box;
  display: inline-block;
  flex-shrink: 0;
  vertical-align: middle;
}

.bootcamps-page .bootcamps-locations-bar-segment:not(.empty) {
  background: #34a853;
}

/* Last filled segment blinks when bar is incomplete */
.bootcamps-page .bootcamps-locations-bar-segment.blink {
  animation: bootcamps-locations-blink 1s ease-in-out infinite;
}

@keyframes bootcamps-locations-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}

.bootcamps-page .bootcamps-locations-desc {
  font-family: "Google_Sans", sans-serif;
  color: #1e1e1e;
}

/* Rewards & benefits — two columns: sticky left (title + intro + decor), right (cards) */
.bootcamps-page .bootcamps-rewards-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

/* Below 768px: single column, normal flow (no sticky) */
.bootcamps-page .bootcamps-rewards-left {
  position: static;
}

@media (min-width: 768px) {
  .bootcamps-page .bootcamps-rewards-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
    gap: 3rem;
  }
  .bootcamps-page .bootcamps-rewards-left {
    position: sticky;
    top: 8rem;
  }
}

.bootcamps-page .bootcamps-rewards-title {
  font-family: "Google_Sans_Medium", sans-serif;
  color: #1e1e1e;
}

.bootcamps-page .bootcamps-rewards-desc {
  font-family: "Google_Sans", sans-serif;
  color: #1e1e1e;
}

.bootcamps-page .bootcamps-rewards-decor {
  margin-top: 1.5rem;
}

.bootcamps-page .bootcamps-rewards-decor-icon {
  width: 100%;
  max-width: 200px;
  height: auto;
  object-fit: contain;
}

.bootcamps-page .bootcamps-rewards-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bootcamps-page .bootcamps-rewards-card {
  position: relative;
  background: #fff;
  border: 1px solid #000;
  border-radius: 11px;
  padding: 1.5rem 1.5rem 2rem 6rem;
  min-height: 160px;
}

.bootcamps-page .bootcamps-rewards-card-icon {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.bootcamps-page .bootcamps-rewards-card-content {
  position: relative;
  z-index: 0;
}

.bootcamps-page .bootcamps-rewards-card-title {
  font-family: "Google_Sans_Medium", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e1e1e;
  margin: 0 0 0.5rem 0;
}

.bootcamps-page .bootcamps-rewards-card-desc {
  font-family: "Google_Sans", sans-serif;
  font-size: 1rem;
  color: #1e1e1e;
  line-height: 1.5;
  margin: 0;
}

/* Get invited — title, 4 steps (dot + title + desc), then pre-composed PNG as-is (no clip); image extends to browser right */
.bootcamps-page .bootcamps-get-invited-title {
  font-family: "Google_Sans_Medium", sans-serif;
  color: #1e1e1e;
}

.bootcamps-page .bootcamps-get-invited-timeline {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* Pre-composed asset (line + curve + photo): show as-is, no clip-path */
.bootcamps-page .bootcamps-get-invited-image-wrap {
  width: 100%;
  margin-top: 1.5rem;
}

.bootcamps-page .bootcamps-get-invited-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Step bodies: 4 columns, each with dot + title + description */
.bootcamps-page .bootcamps-get-invited-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem 1rem;
  align-items: start;
  padding: 0 1.5rem;
}

.bootcamps-page .bootcamps-get-invited-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
}

.bootcamps-page .bootcamps-get-invited-dot {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px rgba(30, 30, 30, 0.2);
}

.bootcamps-page .bootcamps-get-invited-step-body {
  max-width: 100%;
}

.bootcamps-page .bootcamps-get-invited-step-title {
  font-family: "Google_Sans_Medium", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1e1e1e;
  margin: 0 0 0.35rem 0;
  line-height: 1.3;
}

.bootcamps-page .bootcamps-get-invited-step-desc {
  font-family: "Google_Sans", sans-serif;
  font-size: 0.8125rem;
  color: #1e1e1e;
  line-height: 1.45;
  margin: 0;
  opacity: 0.9;
}

@media (max-width: 767px) {
  .bootcamps-page .bootcamps-get-invited-timeline {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .bootcamps-page .bootcamps-get-invited-image-wrap {
    margin: 1rem -1.5rem 0 -1.5rem;
  }

  .bootcamps-page .bootcamps-get-invited-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .bootcamps-page .bootcamps-get-invited-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 1rem;
  }
}

/* Terms & conditions */
.bootcamps-page .bootcamps-terms-title {
  font-family: "Google_Sans_Medium", sans-serif;
  color: #1e1e1e;
}

.bootcamps-page .bootcamps-terms-desc {
  font-family: "Google_Sans", sans-serif;
  color: #1e1e1e;
}

.bootcamps-page .bootcamps-terms-list {
  list-style: disc;
  margin: 1rem 0 0 0;
  padding-left: 1.5rem;
  font-family: "Google_Sans", sans-serif;
  color: #1e1e1e;
  font-size: 1rem;
  line-height: 1.6;
}

.bootcamps-page .bootcamps-terms-list li {
  margin-bottom: 0.75rem;
}

.bootcamps-page .bootcamps-terms-list li:last-child {
  margin-bottom: 0;
}

/* Getting started with Google Antigravity (duplicate of promptwars structure, scoped for bootcamps) */
.bootcamps-page .bootcamps-started-antigravity {
  background: linear-gradient(135deg, rgba(200, 230, 240, 0.5) 0%, rgba(220, 245, 220, 0.6) 100%);
}

.bootcamps-page .bootcamps-started-title {
  font-family: "Google_Sans_Medium";
  color: #1e1e1e;
}

.bootcamps-page .bootcamps-started-brand-name {
  font-family: "Google_Sans_Medium";
  color: #1e1e1e;
}

.bootcamps-page .bootcamps-started-intro {
  font-family: "Google_Sans";
  font-size: 1rem;
  line-height: 1.6;
}

.bootcamps-page .bootcamps-started-card {
  position: relative;
  background: #f4fff5;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 1.25rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.bootcamps-page .bootcamps-started-card-icon-top {
  position: absolute;
  top: -2.25rem;
  left: -2.25rem;
  width: 80px;
  height: 80px;
  object-fit: contain;
  z-index: 1;
  pointer-events: none;
}

.bootcamps-page .bootcamps-started-card-icon-bottom {
  position: absolute;
  bottom: -2.25rem;
  right: -2.25rem;
  width: 80px;
  height: 80px;
  object-fit: contain;
  z-index: 1;
  pointer-events: none;
}

.bootcamps-page .bootcamps-started-card-inner {
  padding: 3rem;
  max-height: 520px;
  overflow-y: auto;
  position: relative;
  z-index: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.bootcamps-page .bootcamps-started-card-inner::-webkit-scrollbar {
  display: none;
}

.bootcamps-page .bootcamps-started-step {
  margin-bottom: 2rem;
}

.bootcamps-page .bootcamps-started-step:last-child {
  margin-bottom: 0;
}

.bootcamps-page .bootcamps-started-step-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #34a853;
  margin: 0 0 0.75rem 0;
}

.bootcamps-page .bootcamps-started-step-intro {
  font-family: "Google_Sans";
  font-size: 1rem;
  color: #1e1e1e;
  line-height: 1.5;
  margin: 0 0 0.5rem 0;
}

.bootcamps-page .bootcamps-started-list {
  font-family: "Google_Sans";
  font-size: 1rem;
  color: #1e1e1e;
  line-height: 1.6;
  margin: 0 0 0 1.25rem;
  padding: 0;
  list-style: disc;
}

.bootcamps-page .bootcamps-started-list li {
  margin-bottom: 0.5rem;
}

.bootcamps-page .bootcamps-started-list li:last-child {
  margin-bottom: 0;
}

.bootcamps-page .bootcamps-started-recommended {
  font-family: "Google_Sans";
  font-size: 0.875rem;
  color: #1e1e1e;
  font-style: italic;
  margin: 0.75rem 0 0 0;
  opacity: 0.9;
}

/* Snapshot loading dots (same structure as promptwars) */
.bootcamps-page .loading-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}
.bootcamps-page .loading-dots .dot {
  width: 30px;
  height: 30px;
  background: #5cdb6d;
  border: 2px solid #1e1e1e;
  border-radius: 50%;
  animation: bwa-dotBounce 1.4s ease-in-out infinite;
}
.bootcamps-page .loading-dots .dot:nth-child(1) { animation-delay: 0s; }
.bootcamps-page .loading-dots .dot:nth-child(2) { animation-delay: 0.2s; }
.bootcamps-page .loading-dots .dot:nth-child(3) { animation-delay: 0.4s; }

@media (max-width: 640px) {
  .bootcamps-page .loading-dots .dot {
    width: 28px;
    height: 28px;
  }
}

/* --- max-width: 767px (mobile) — started card/step overrides --- */
@media (max-width: 767px) {
  .bootcamps-page .bootcamps-started-card {
    border: none;
    box-shadow: none;
    background: unset;
  }

  .bootcamps-page .bootcamps-started-card-inner {
    padding: 0;
    max-height: unset;
  }

  .bootcamps-page .bootcamps-started-step {
    padding: 1.75rem;
    border-radius: 1.25rem;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  }
  .bootcamps-page .bootcamps-started-step:nth-child(odd) {
    background: #f4fff5;
  }
  .bootcamps-page .bootcamps-started-step:nth-child(even) {
    background: #e2ffe6;
  }
}

/* Get Invited section — background image; adjust position/size per screen size below */
.bootcamps-page .bootcamps-get-invited-section {
  background-image: url("https://h2svision.github.io/publicAssets/buildWithAi/bootcamp/get-invited.png");
  background-repeat: no-repeat;
  background-position: right -83px;
  background-size: auto 100%;
}

/* Get Invited — mobile timeline (767px and below): central vertical line, steps alternating left/right */
@media (max-width: 767px) {
  .bootcamps-page .bootcamps-get-invited-mobile {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .bootcamps-page .bootcamps-get-invited-mobile-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #1e1e1e;
    transform: translateX(-50%);
    pointer-events: none;
  }

  .bootcamps-page .bootcamps-get-invited-mobile-step {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    min-height: 5rem;
    gap: 0;
    margin-bottom: 1.75rem;
  }

  .bootcamps-page .bootcamps-get-invited-mobile-step:last-child {
    margin-bottom: 0;
  }

  .bootcamps-page .bootcamps-get-invited-mobile-content {
    flex: 1;
    min-width: 0;
    padding: 0 0.75rem;
  }

  .bootcamps-page .bootcamps-get-invited-mobile-content-left {
    text-align: left;
    padding-right: 0.5rem;
  }

  .bootcamps-page .bootcamps-get-invited-mobile-content-right {
    text-align: left;
    padding-left: 0.5rem;
  }

  .bootcamps-page .bootcamps-get-invited-mobile-dot-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 1.25rem;
    padding: 0.75rem 0;
  }

  .bootcamps-page .bootcamps-get-invited-mobile-dot {
    box-shadow: 0 0 0 1px rgba(30, 30, 30, 0.15);
  }

  .bootcamps-page .bootcamps-get-invited-mobile-step-title {
    font-family: "Google_Sans_Medium", sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e1e1e;
    margin: 0 0 0.35rem 0;
    line-height: 1.3;
  }

  .bootcamps-page .bootcamps-get-invited-mobile-step-desc {
    font-family: "Google_Sans", sans-serif;
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.5;
    margin: 0;
  }
}

@media (min-width: 768px) {
  .bootcamps-page .bootcamps-get-invited-section {
    background-image: url("https://h2svision.github.io/publicAssets/buildWithAi/bootcamp/get-invited.png");
    background-repeat: no-repeat;
    background-position: right -83px;
    background-size: auto 100%;
    background-position: right -83px;
    background-size: auto;
  }
}

@media (min-width: 768px) {
  .bootcamps-page .bootcamps-get-invited-section {
    background-position: -200px -83px;
    background-size: auto;
  }
}

@media (min-width: 1024px) {
  .bootcamps-page .bootcamps-get-invited-section {
    /* background-position: right -83px; */
    /* background-size: 81% auto; */
  }
}

@media (min-width: 1331px) {
  .bootcamps-page .bootcamps-get-invited-section {
    background-position: right -83px;
    background-size: auto;
  }
}

/* Adjust position/size per screen size — use px values for X (from left) and Y (from top) */
@media (max-width: 767px) {
  .bootcamps-page .bootcamps-get-invited-section {
    background: unset;
  }
}


.sticky-card {
  position: sticky;
  top: 120px;
}
