.jp-fifa-hero {
  position: relative;
  color: var(--jp-fifa-copy-color, #ffffff);
  padding: 80px 0;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.jp-fifa-hero__inner {
  position: relative;
}

.jp-fifa-hero__grid {
  display: grid;
  gap: 48px;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.jp-fifa-hero__badge {
  max-width: 140px;
  margin-bottom: 24px;
}

.jp-fifa-hero__badge img {
  display: block;
  width: 100%;
  height: auto;
}

.jp-fifa-hero__eyebrow {
  font-size: 0.875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 12px;
}

.jp-fifa-hero__title {
  font-size: clamp(2.5rem, 3vw, 3vw);
  line-height: 1.05;
  font-weight: 600;
  margin: 0 0 16px;
}

.jp-fifa-hero__subtitle {
  font-size: 1.125rem;
  line-height: 1.6;
  margin: 0 0 32px;
  max-width: 560px;
}

.jp-fifa-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1.0625rem;
  background-color: var(--jp-fifa-cta-bg, #1f1f1f);
  color: var(--jp-fifa-cta-color, #ffffff);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.jp-fifa-hero__cta:hover,
.jp-fifa-hero__cta:focus-visible {
  background-color: var(--jp-fifa-cta-bg-hover, #000000);
  color: var(--jp-fifa-cta-color-hover, #ffffff);
  transform: translateY(-2px);
  text-decoration: none;
}

.jp-fifa-hero__cta:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.jp-fifa-hero__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 32px;
  /*box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);*/
}

.jp-fifa-hero__powered {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--jp-fifa-powered-color, currentColor);
}

.jp-fifa-hero__powered img {
  display: block;
  max-height: 32px;
  width: auto;
}

.jp-country-tabs__powered {
  margin-top: 48px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--jp-tabs-powered-color, currentColor);
}

.jp-country-tabs__powered img {
  display: block;
  max-height: 32px;
  width: auto;
}

.jp-country-tabs {
  padding: 80px 0;
  color: var(--jp-tabs-copy-color, #101828);
}

.jp-country-tabs__search {
  margin-bottom: 32px;
}

.jp-country-tabs__search input[type="search"] {
  width: 100%;
  max-width: 420px;
  border-radius: 999px;
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.08);
  border: 2px solid #000;
  color: #000;
}

.jp-country-tabs__panel {
  margin-top: 48px;
  background: #F8F9FA;
  padding: 30px;
  border-radius: 16px;
}

.jp-country-tabs__panel + .jp-country-tabs__panel {
  margin-top: 50px;
}

.jp-country-tabs__panel-title {
  font-size: 1.125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 24px;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.jp-country-tabs__panel-caret {
  font-size: 1.5rem;
  line-height: 1;
  color: currentColor;
}

.jp-country-tabs__cities {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.jp-country-tabs__city {
  border-radius: 24px;
  min-height: 200px;
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
  background-color: transparent;
  display: flex;
  align-items: stretch;
}

.jp-country-tabs__city:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(16, 24, 40, 0.16);
}

.jp-country-tabs__city-inner {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.jp-country-tabs__city-inner a:hover {
  text-decoration: none;
}

.jp-country-tabs__city-content {
  flex: 1 1 auto;
  background-color: var(--jp-city-bg, rgba(255, 255, 255, 0.2));
  color: var(--jp-city-accent, #ffffff);
  padding: 20px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.5rem;
}

.jp-country-tabs__city-name {
  font-size: 38px;
  font-weight: 700;
  margin: 0;
  color: inherit;
}

.jp-country-tabs__city-cta,
.jp-country-tabs__city-cta:visited {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-weight: 700;
  background-color: var(--jp-tabs-cta-bg, #1f2f9a);
  color: var(--jp-tabs-cta-color, #ffffff);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
  font-size: 1.5rem;
}

.jp-country-tabs__city-cta:hover,
.jp-country-tabs__city-cta:focus-visible {
  background-color: var(--jp-tabs-cta-bg-hover, #13206d);
  color: var(--jp-tabs-cta-color-hover, #ffffff);
  text-decoration: none;
}

.jp-country-tabs__city-cta:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: -2px;
}

.jp-country-tabs__empty {
  margin-top: 32px;
  font-weight: 600;
}

@media (min-width: 600px) {
  .jp-country-tabs__cities {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .jp-country-tabs__cities {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .jp-country-tabs__cities {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.jp-form-banner {
  border-radius: 16px;
  padding: clamp(16px, 4vw, 28px);
  overflow: hidden;
}

.jp-form-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.jp-form-banner__title {
  margin: 0 0 12px;
  font-weight: 700;
  line-height: 1.2;
  font-size: clamp(20px, 2.2vw, 24px);
  color: #fff;
}

.jp-form-banner__footer {
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.5;
  opacity: 0.85;
  color: #fff;
}

.jp-form-banner .gform_wrapper .gform_body input,
.jp-form-banner .gform_wrapper .gform_body select,
.jp-form-banner .gform_wrapper .gform_body textarea {
  border-radius: 9999px;
}

.jp-form-banner .gform_wrapper .gform_footer input[type="submit"],
.jp-form-banner .gform_wrapper .gform_footer button {
  width: 100%;
  border-radius: 9999px;
  font-weight: 700;
}

@media (max-width: 650px) {
  .jp-fifa-hero + div#section-2 {
      display: none;
  }
  .jp-country-tabs {
    padding: 0;
  }
}

.jp-country-tabs__city {
  /*height: 320px;*/
  display: flex;
  border-radius: 24px;
  overflow: hidden;
}

/* Make the link fill entire card */
.jp-country-tabs__city-inner > a {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
}

/* Top half */
.jp-country-tabs__city-content {
  flex: 5; /* take 50% */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--jp-city-bg, rgba(255, 255, 255, 0.2));
  color: var(--jp-city-accent, #ffffff);
  /*padding: 20px;*/
}

/* City name */
.jp-country-tabs__city-name {
  margin: 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  color: inherit;
}

/* Bottom half */
.jp-country-tabs__city-cta {
  flex: 1; /* take 50% */
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  padding: 7px;
  background-color: var(--jp-tabs-cta-bg, #1f2f9a);
  color: var(--jp-tabs-cta-color, #ffffff);
}