  /* =========================================================
    DPH Event Health Theme - Cleaned and Organized
    ========================================================= */
  /* =========================================================
    ROOT VARIABLES
    ========================================================= */

  :root {
    --primary: #0b5fff;
    --primary-dark: #083ea8;
    --accent: #00b894;
    --accent-2: #ffb703;
    --surface: #ffffff;
    --surface-soft: #f5f8fc;
    --text: #10233f;
    --muted: #5b6b82;
    --border: rgba(16, 35, 63, 0.12);
    --hero-overlay: linear-gradient(135deg, rgba(6, 28, 75, 0.86), rgba(11, 95, 255, 0.72));
    --btn-secondary-bg: rgba(255, 255, 255, 0.06);
    --btn-secondary-border: rgba(255, 255, 255, 0.16);
    --shadow: 0 20px 50px rgba(8, 27, 70, 0.12);
    --maxw: 1240px;
    --sport-ball-size: 88px;
    --bg-pattern: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.14) 0, rgba(255, 255, 255, 0) 28%),
      radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.10) 0, rgba(255, 255, 255, 0) 22%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
  }

  /* =========================================================
    GLOBAL BASE
    ========================================================= */

  * {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  html.has-custom-cursor,
  html.has-custom-cursor body,
  html.has-custom-cursor a,
  html.has-custom-cursor button,
  html.has-custom-cursor [role="button"],
  html.has-custom-cursor input,
  html.has-custom-cursor select,
  html.has-custom-cursor textarea,
  html.has-custom-cursor label {
    cursor: none !important;
  }

  body {
    margin: 0;
    color: var(--text);
    background: linear-gradient(180deg, #eff5ff 0%, #f8fbff 24%, #ffffff 100%);
    line-height: 1.5;
  }

  img {
    display: block;
    max-width: 100%;
  }

  a {
    color: inherit;
  }

  /* =========================================================
    ACCESSIBILITY
    ========================================================= */

  .skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: #fff;
    color: #000;
    padding: 0.75rem 1rem;
    z-index: 9999;
  }

  .skip-link:focus {
    left: 1rem;
    top: 1rem;
  }

  /* =========================================================
    HERO
    ========================================================= */

  .hero {
    position: relative;
    overflow: hidden;
    min-height: 460px;
    display: flex;
    align-items: center;
    isolation: isolate;
    color: #fff;
    background: var(--hero-overlay),
      var(--bg-pattern),
      url("https://images.unsplash.com/photo-1517927033932-b3d18e61fb3a?auto=format&fit=crop&w=1600&q=80") center/cover;
  }

  .hero::after {
    content: "";
    position: absolute;
    inset: auto -5% -85px auto;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.20), rgba(255, 255, 255, 0));
    filter: blur(4px);
    z-index: -1;
  }

  .hero-inner {
    width: min(100%, var(--maxw));
    margin: 0 auto;
    padding: 1rem 2rem 0 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
  }

  .eyebrow {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: clamp(0.85rem, 0.8rem + 0.5vw, 0.92rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    backdrop-filter: blur(8px);
    width: fit-content;
  }

  .hero h1 {
    margin: 1rem 0;
    max-width: 26ch;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.02;
    text-transform: capitalize;
  }

  .hero p {
    margin: 0 0 0.75rem;
    font-size: clamp(1rem, 1.6vw, 1.35rem);
    color: rgba(255, 255, 255, 0.92);
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    align-items: center;
    justify-content: flex-start;
    margin: 1.5rem 0 2rem;
  }

  /* =========================================================
    BUTTONS
    ========================================================= */

  .btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 54px;
    padding: 0 1.35rem;
    border-radius: 14px;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 0.96rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    letter-spacing: -0.01em;
    transition: transform 0.2s ease,
      box-shadow 0.2s ease,
      background 0.2s ease,
      border-color 0.2s ease,
      color 0.2s ease;
  }

  .btn span {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    text-align: center;
    line-height: 40px;
  }

  .btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.35) 50%,
        transparent 100%);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
    pointer-events: none;
  }

  .btn:hover::after {
    left: 130%;
  }

  .btn:active {
    transform: translateY(0);
  }

  .btn:focus-visible {
    outline: none;
  }

  .btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), #2f7dff);
    border: none;
    box-shadow: 0 10px 24px rgba(11, 95, 255, 0.28),
      0 1px 0 rgba(255, 255, 255, 0.18) inset;
    transition: all 0.2s ease;
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(11, 95, 255, 0.34),
      0 1px 0 rgba(255, 255, 255, 0.2) inset;
  }

  .btn-primary:focus-visible {
    box-shadow: 0 0 0 4px rgba(11, 95, 255, 0.18),
      0 10px 24px rgba(11, 95, 255, 0.28);
  }

  .btn-secondary {
    color: #eaf1ff;
    background: var(--btn-secondary-bg);
    border: 1px solid var(--btn-secondary-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14),
      0 1px 0 rgba(255, 255, 255, 0.05) inset;
    transition: all 0.2s ease;
  }

  .btn-secondary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18),
      0 1px 0 rgba(255, 255, 255, 0.06) inset;
  }

  .btn-secondary:focus-visible {
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.14),
      0 6px 18px rgba(0, 0, 0, 0.14);
  }

  /* =========================================================
    HERO
    ========================================================= */

  .hero-actions .btn {
    min-width: 220px;
    min-height: 56px;
    padding: 0.95rem 1.2rem;
    border-radius: 14px;
    font-weight: 700;
    letter-spacing: -0.01em;
  }

  /* =========================================================
    SECTIONS
    ========================================================= */

  .section {
    padding: 0 0.25rem;
  }

  .section-title {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    flex-wrap: wrap;
    text-transform: capitalize;
  }

  .section-title h2 {
    margin: 0;
    font-size: clamp(1.35rem, 1.1rem + 1vw, 2rem);
  }

  .section-title p {
    margin: 0;
    /*max-width: 70ch;*/
    color: var(--muted);
  }

  .section-title--enhanced {
    margin-bottom: 1.25rem;
    margin-top: 1.25rem;
  }

  .section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
    padding: 0.48rem 0.78rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(11, 95, 255, 0.1), rgba(0, 184, 148, 0.08));
    border: 1px solid rgba(11, 95, 255, 0.14);
    color: var(--primary-dark);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.02em;
  }

  .section-title--enhanced h2 {
    margin-bottom: 0.35rem;
    line-height: 1.05;
    letter-spacing: -0.03em;
  }

  .section-title--enhanced p {
    /*max-width: 64ch;*/
    font-size: 1rem;
    line-height: 1.65;
  }

  #topic-resources p {
    font-size: 0.95rem !important;
  }

  /* =========================================================
    RESOURCES
    ========================================================= */
  .generated-resource-section {
    /*padding-top: 1rem;
    padding-bottom: 1rem;*/
    padding: 1rem;
  }

  .generated-resource-section__inner {
    width: min(100%, var(--maxw));
    margin: 0 auto;
  }

  #topic-resources {
    width: min(100%, var(--maxw));
    margin: 0 auto;
    /*padding-left: 1rem;
    padding-right: 1rem;*/
  }

  @media (max-width: 768px) {

    #topic-resources {
      padding-left: 1rem;
      padding-right: 1rem;
    }

  }

  .resource-celebrate {
    width: 100%;
  }

  .resource-celebrate__panel {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border-radius: 10px;
    color: #fff;
    background: radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.12), transparent 28%),
      linear-gradient(135deg, #0057d9 0%, #0047b5 100%);
    box-shadow: 0 28px 70px rgba(8, 27, 70, 0.18);
  }

  .resource-celebrate__content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
  }

  .resource-celebrate__copy {
    position: relative;
    z-index: 2;
  }

  .resource-celebrate__copy h2 {
    margin: 0 0 0.4rem;
    font-size: clamp(2.6rem, 4vw, 2rem);
    line-height: 0.92;
    font-weight: 900;
    letter-spacing: -0.06em;
    color: #fff;
  }

  .resource-celebrate__copy p {
    margin: 0.5rem;
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(0.85rem, 1.19vw, 1.04rem);
    font-weight: 500;
    line-height: 1.3;
  }

  .bold-item {
    font-weight: 800 !important;
  }

  .resource-celebrate__links {
    display: grid;
    gap: 0.65rem;
    width: min(100%, 540px);
  }

  .resource-celebrate__ball {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 0.76rem;
  }

  .resource-celebrate__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
    background-color: rgb(255 255 255 / 90%);
    padding: 15px;
    border-radius: 10px;
  }

  .resource-celebrate__feature-image {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: block;
    object-fit: contain;
  }

  .resource-card,
  .alert-banner {
    border-radius: 22px;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .resource-card {
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 1.3rem;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.98),
        rgba(245, 248, 252, 0.98)),
      var(--surface);
    transition: transform 0.28s ease,
      border-color 0.28s ease,
      box-shadow 0.28s ease;
  }

  .resource-card::before {
    content: "";
    position: absolute;
    left: 5px;
    right: 5px;
    bottom: 0;
    height: 8px;
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
    background: linear-gradient(90deg,
        var(--primary),
        var(--accent-2));
    opacity: 0;
    transition: opacity 0.28s ease;
    pointer-events: none;
  }

  .resource-card:hover {
    transform: translateY(-6px);
    border-color: rgba(11, 95, 255, 0.18);
    box-shadow: 0 26px 60px rgba(8, 27, 70, 0.14);
  }

  .resource-card:hover::before {
    opacity: 1;
  }

  .resource-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
  }

  .resource-card .icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg,
        rgba(11, 95, 255, 0.12),
        rgba(0, 184, 148, 0.12));
    color: var(--primary);
    font-size: 1.2rem;
  }

  .resource-card h3 {
    display: block;
    margin: 0 0 0.35rem;
    font-size: 1.1rem;
    font-weight: 600 !important;
    line-height: 1.2;
  }

  .resource-card p {
    margin: 0 0 1rem;
    line-height: 1.6;
    color: var(--muted);
  }

  .resource-tag {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: rgba(11, 95, 255, 0.08);
    color: var(--primary-dark);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .resource-card a {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    width: 100%;
    min-height: 46px;
    margin-top: auto;
    padding: 0.8rem 0.9rem;
    border-radius: 14px;
    background: rgba(11, 95, 255, 0.06);
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: background 0.22s ease,
      transform 0.22s ease;
  }

  .resource-card>.resource-actions>a:hover,
  .resource-actions>a:hover {
    background: rgba(11, 95, 255, 0.2);
    transform: translateX(2px);
  }

  .resource-materials__group-links a:hover {
    transform: translateY(-2px);

    background: linear-gradient(135deg,
        #0f4fc9,
        #003b99);

    box-shadow:
      0 12px 24px rgba(37, 99, 235, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.16);

    filter: brightness(1.05);
  }

  .icon--docs {
    background: linear-gradient(135deg,
        rgba(11, 95, 255, .14),
        rgba(0, 183, 255, .1));
    color: var(--primary);
  }

  .icon--map {
    background: linear-gradient(135deg,
        rgba(0, 184, 148, .14),
        rgba(11, 95, 255, .08));
    color: #008a6e;
  }

  .icon--alerts {
    background: linear-gradient(135deg,
        rgba(255, 183, 3, .16),
        rgba(255, 87, 87, .08));
    color: #b46c00;
  }

  .resource-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0 0 1rem;
  }

  .resource-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0.28rem 0.62rem;
    border-radius: 999px;
    background: rgba(16, 35, 63, 0.05);
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1;
  }

  /* =========================================================
    RESOURCE CARD ACTIONS / DROPDOWN
    ========================================================= */

  .resource-actions {
    position: relative;
    margin-top: auto;
    display: block;
    width: 100%;
    overflow: visible;
    text-align: center;
  }

  .resource-actions>a,
  .resource-actions>button,
  .resource-actions>details {
    width: 100%;
  }

  .resource-actions-dropdown {
    position: relative;
    width: 100%;
    isolation: isolate;
  }

  .resource-actions-dropdown summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    width: 100%;
    min-height: 48px;
    padding: 0.8rem 0.9rem;
    border-radius: 14px;
    background: rgba(11, 95, 255, 0.06);
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition:
      background 0.22s ease,
      transform 0.22s ease;
  }

  .resource-actions-dropdown summary::-webkit-details-marker {
    display: none;
  }

  .resource-actions-dropdown summary:hover,
  .resource-actions-dropdown summary:focus-visible {
    background: rgba(11, 95, 255, 0.14);
    transform: translateY(-1px);
  }

  .resource-actions-dropdown summary i {
    transition: transform 0.22s ease;
  }

  .resource-actions-dropdown[open] summary i {
    transform: rotate(180deg);
  }

  .resource-actions-dropdown__menu {
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(100% + 0.5rem);
    z-index: 1000;

    display: grid;
    gap: 0.55rem;
    padding: 0.65rem;

    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(11, 95, 255, 0.12);
    box-shadow: 0 18px 40px rgba(8, 27, 70, 0.18);
  }

  .resource-actions-dropdown__menu a,
  .resource-actions-dropdown__menu button {
    width: 100%;
    margin-top: 0;
  }

  .resource-actions-dropdown__menu .resource-materials-trigger {
    background: rgba(255, 183, 3, 0.12);
  }

  .resource-actions-dropdown__menu .resource-materials-trigger:hover,
  .resource-actions-dropdown__menu .resource-materials-trigger:focus-visible {
    background: rgba(255, 183, 3, 0.2);
  }

  #topic-resources,
  .resource-card {
    overflow: visible;
  }

  .resource-card:has(.resource-actions-dropdown[open]) {
    z-index: 999;
  }

  .resource-file-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
  }

  .resource-file-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 0;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(11, 95, 255, 0.1);
    box-shadow: 0 14px 34px rgba(8, 27, 70, 0.08);
    transition:
      transform 0.24s ease,
      box-shadow 0.24s ease,
      border-color 0.24s ease;
  }

  .resource-file-card:hover {
    transform: translateY(-4px);
    border-color: rgba(11, 95, 255, 0.18);
    box-shadow: 0 22px 46px rgba(8, 27, 70, 0.13);
  }

  .resource-file-card__image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background:
      linear-gradient(135deg, rgba(11, 95, 255, 0.08), rgba(0, 184, 148, 0.08)),
      #eef4ff;
  }

  .resource-file-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
      transform 0.35s ease,
      filter 0.35s ease;
  }

  .resource-file-card:hover .resource-file-card__image img {
    transform: scale(1.04);
    filter: saturate(1.06) contrast(1.03);
  }

  .resource-file-card__content {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.75rem;
    padding: 1.1rem;
  }

  .resource-file-card .resource-tag {
    width: fit-content;
    align-self: center;
  }

  .resource-file-card h3 {
    margin: 0;
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
  }

  .resource-file-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.55;
    text-align: center;
  }

  .resource-file-card .resource-actions {
    margin-top: auto;
    width: 100%;
    text-align: center;
  }

  .resource-file-card .resource-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    min-height: 52px;
    padding: 0.9rem 1rem;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), #2f7dff);
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.2;
    box-shadow:
      0 10px 24px rgba(11, 95, 255, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease,
      filter 0.2s ease,
      background 0.2s ease;
  }

  .resource-file-card .resource-actions a:hover,
  .resource-file-card .resource-actions a:focus-visible {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #0f4fc9, #003b99);
    box-shadow:
      0 16px 34px rgba(11, 95, 255, 0.32),
      inset 0 1px 0 rgba(255, 255, 255, 0.14);
    filter: brightness(1.04);
  }

  .resource-file-card .resource-actions a:focus-visible {
    outline: 3px solid var(--accent-2);
    outline-offset: 3px;
  }

  .resource-file-card .resource-actions a span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 0;
    text-align: center;
  }

  .resource-file-card .resource-actions a i {
    flex: 0 0 auto;
    font-size: 0.9rem;
  }

  @media (max-width: 1100px) {

    .resource-file-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

  }

  @media (max-width: 950px) {

    .resource-celebrate__content {
      grid-template-columns: 1fr;
    }

    .resource-celebrate__visual {
      min-height: 300px;
    }

    .resource-celebrate__feature-image {
      max-width: 420px;
    }

  }

  @media (max-width: 850px) {

    .resource-file-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

  }

  @media (max-width: 768px) {

    .resource-celebrate__panel {
      min-height: auto;
      padding: 1.3rem;
      border-top-left-radius: 24px;
      border-bottom-left-radius: 24px;
    }

    .resource-celebrate__content {
      gap: 1.4rem;
    }

    .resource-celebrate__links {
      width: 100%;
    }

    .resource-celebrate__visual {
      min-height: 240px;
    }

    .resource-celebrate__feature-image {
      max-width: 100%;
    }

  }

  @media (max-width: 640px) {

    .resource-file-grid {
      grid-template-columns: 1fr;
    }

  }

  @media (max-width: 480px) {

    .resource-celebrate__copy h2 {
      font-size: 2rem !important;
    }

    .resource-celebrate__copy p {
      font-size: 1rem;
    }

    .celebrate-dropdown summary {
      grid-template-columns: 24px 1fr 22px;
      font-size: 0.82rem;
    }

    .resource-celebrate__visual {
      min-height: 200px;
    }

  }


  /* =========================================================
    REVEAL ANIMATION
    ========================================================= */

  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease,
      transform 0.7s cubic-bezier(0.22, 0.7, 0.2, 1);
    will-change: opacity, transform;
  }

  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* =========================================================
    RESOURCES
    ========================================================= */

  /* =========================================================
    SECTIONS
    ========================================================= */

  .section-bg {
    position: relative;
    isolation: isolate;
    overflow: visible;
  }

  .section-bg>* {
    position: relative;
    z-index: 1;
  }

  .section-bg::before,
  .section-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    transition: opacity 0.7s ease,
      transform 0.9s ease,
      filter 0.7s ease,
      background-image 0.7s ease;
  }

  .section-bg::before {
    z-index: 0;
    background-image: var(--section-bg-image, none);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.14;
    transform: scale(1.04);
    filter: saturate(1.02) contrast(1.04);
  }

  .section-bg::after {
    z-index: 0;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.78),
        rgba(248, 251, 255, 0.86) 35%,
        rgba(255, 255, 255, 0.92));
  }

  .section-bg.is-section-active::before {
    opacity: 0.22;
    transform: scale(1);
    filter: saturate(1.08) contrast(1.08);
  }

  /* =========================================================
    SOCCER CURSOR
    ========================================================= */

  .soccer-cursor {
    --x: 50vw;
    --y: 50vh;
    --cursor-scale: 1;
    position: fixed;
    top: 0;
    left: 0;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    font-size: 22px;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 2147483647;
    opacity: 0;
    will-change: transform, opacity;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.22));
    transform: translate(var(--x), var(--y)) translate(-50%, -50%) scale(var(--cursor-scale));
  }

  .soccer-cursor.is-visible {
    opacity: 1;
  }

  .soccer-cursor.is-clicking {
    --cursor-scale: 0.92;
  }

  .soccer-sparkle {
    position: fixed;
    left: 0;
    top: 0;
    width: var(--size, 8px);
    height: var(--size, 8px);
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    transform-origin: center;
    opacity: 0;
    background: radial-gradient(circle at 30% 30%,
        color-mix(in srgb, var(--sparkle-color) 85%, #000 15%) 0%,
        color-mix(in srgb, var(--sparkle-color) 100%, #000 0%) 30%,
        transparent 65%),
      var(--sparkle-color);
    clip-path: polygon(50% 0%,
        61% 35%,
        98% 35%,
        68% 57%,
        79% 91%,
        50% 70%,
        21% 91%,
        32% 57%,
        2% 35%,
        39% 35%);
    filter: drop-shadow(0 0 4px var(--sparkle-color)) drop-shadow(0 0 8px var(--sparkle-color));
    will-change: transform, opacity;
    animation: fifaSparkleTrail 650ms cubic-bezier(0.18, 0.72, 0.22, 1) forwards;
  }

  .soccer-sparkle::before,
  .soccer-sparkle::after {
    content: "";
    position: absolute;
    inset: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }

  .soccer-sparkle::before {
    width: 30%;
    height: 160%;
    background: linear-gradient(180deg, transparent 0%, var(--sparkle-color) 40%, transparent 100%);
    opacity: 0.7;
  }

  .soccer-sparkle::after {
    width: 160%;
    height: 30%;
    background: linear-gradient(90deg, transparent 0%, var(--sparkle-color) 40%, transparent 100%);
    opacity: 0.7;
  }

  @keyframes fifaSparkleTrail {
    0% {
      opacity: 0;
      transform: translate(-50%, -50%) scale(0.35) rotate(0deg);
      filter:
        drop-shadow(0 0 2px color-mix(in srgb, var(--sparkle-color, #0b5fff) 70%, white 30%)) drop-shadow(0 0 6px color-mix(in srgb, var(--sparkle-color, #0b5fff) 55%, white 45%)) blur(0.1px);
    }

    12% {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1) rotate(28deg);
    }

    100% {
      opacity: 0;
      transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(var(--scale, 0.45)) rotate(var(--rot, 120deg));
      filter:
        drop-shadow(0 0 1px color-mix(in srgb, var(--sparkle-color, #0b5fff) 55%, white 45%)) drop-shadow(0 0 4px color-mix(in srgb, var(--sparkle-color, #0b5fff) 40%, white 60%)) blur(0.3px);
    }
  }

  /* =========================================================
    RESOURCES
    ========================================================= */

  .resource-materials {
    position: relative;
    width: 100%;
  }

  .resource-materials summary {
    list-style: none;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    width: 100%;
    min-height: 50px;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    background: linear-gradient(135deg,
        rgba(255, 183, 3, 0.10),
        rgba(255, 143, 0, 0.08));
    border: 1px solid rgba(255, 183, 3, 0.16);
    color: #9a5b00;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.22s ease,
      border-color 0.22s ease,
      transform 0.22s ease,
      box-shadow 0.22s ease;
  }

  .resource-materials summary::-webkit-details-marker {
    display: none;
  }

  .resource-materials summary:hover {
    background: linear-gradient(135deg,
        rgba(255, 183, 3, 0.16),
        rgba(255, 143, 0, 0.14));
    border-color: rgba(255, 183, 3, 0.28);
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(255, 183, 3, 0.12);
  }

  .resource-materials summary i {
    font-size: 0.82rem;
    transition: transform 0.22s ease;
  }

  .resource-materials[open] summary i {
    transform: rotate(180deg);
  }

  .resource-materials__menu {
    position: absolute;
    top: calc(100% + 0.7rem);
    left: 0;
    right: 0;
    z-index: 50;
    display: grid;
    gap: 0.9rem;
    padding: 1rem;
    border-radius: 22px;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.98),
        rgba(248, 250, 255, 0.96));
    border: 1px solid rgba(11, 95, 255, 0.08);
    box-shadow: 0 24px 60px rgba(8, 27, 70, 0.18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .resource-materials__group {
    position: relative;
    padding: 1rem;
    border-radius: 18px;
    background: linear-gradient(180deg,
        rgba(248, 250, 255, 0.98),
        rgba(241, 245, 255, 0.96));
    border: 1px solid rgba(11, 95, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95),
      0 8px 20px rgba(11, 95, 255, 0.05);
    transition: transform 0.22s ease,
      box-shadow 0.22s ease,
      border-color 0.22s ease;
  }

  .resource-materials__group:hover {
    transform: translateY(-2px);
    border-color: rgba(11, 95, 255, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95),
      0 14px 30px rgba(11, 95, 255, 0.08);
  }

  .resource-materials__group-label {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 0 0.9rem;
    padding-bottom: 0.75rem;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.45;
    letter-spacing: -0.01em;
    color: #1e3a8a;
    border-bottom: 1px solid rgba(11, 95, 255, 0.08);
  }

  .resource-materials__group-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .resource-materials__group-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.35rem 0.5rem;
    border-radius: 999px;
    text-align: center;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #ffffff !important;
    background: linear-gradient(135deg,
        #2563eb,
        #3b82f6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.14);
    transition: transform 0.2s ease,
      box-shadow 0.2s ease,
      filter 0.2s ease;
  }

  .resource-materials__group-links a:hover {
    transform: translateY(-2px);
    filter: brightness(1.03);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.16);
  }

  .resource-materials__group-links a:active {
    transform: translateY(0);
  }

  .resource-card:has(.resource-materials[open]) {
    z-index: 20;
  }

  .resource-materials.opens-up .resource-materials__menu {
    top: auto;
    bottom: calc(100% + 0.7rem);
  }

  .celebrate-dropdown {
    overflow: hidden;
    border-radius: 12px;
    background: rgba(0, 48, 126, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.10);
  }

  .celebrate-dropdown summary {
    display: grid;
    grid-template-columns: 28px 1fr 22px;
    align-items: center;
    gap: 0.65rem;
    min-height: 46px;
    padding: 0.7rem 0.85rem;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
  }

  .celebrate-dropdown summary::-webkit-details-marker {
    display: none;
  }

  .celebrate-dropdown summary>i {
    justify-self: end;
    display: grid;
    place-items: center;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    font-size: 0.58rem;
    transition: transform 0.25s ease;
    padding: 4px;
  }

  .celebrate-dropdown[open] summary>i {
    transform: rotate(45deg);
  }

  .celebrate-dropdown__content {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
  }

  .celebrate-dropdown.is-open .celebrate-dropdown__content {
    height: auto;
  }

  .celebrate-dropdown__content>div,
  .celebrate-dropdown__body {
    overflow: hidden;
    display: grid;
    gap: 0.85rem;
    padding: 0.25rem 0.25rem 1rem;
  }

  .celebrate-dropdown__description {
    position: relative;
    margin: 0 0.85rem 0 3.45rem;
    padding: 1rem 1rem 1rem 1.1rem;
    border-left: 4px solid rgba(255, 255, 255, 0.9);
    border-radius: 0 14px 14px 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.16),
        rgba(255, 255, 255, 0.07));
    color: rgba(255, 255, 255, 0.98);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.65;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.14),
      0 10px 24px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .celebrate-dropdown__description::before {
    content: "INFO";
    position: absolute;
    top: -10px;
    left: 1rem;
    padding: 0.22rem 0.55rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: #0047b5;
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.08em;
  }

  .celebrate-dropdown__button {
    background: #4F7A00 !important;
    color: #fff !important;
  }

  .celebrate-dropdown__button:hover {
    background: #5f9100 !important;
  }

  .celebrate-dropdown__external-link {
    border: 1px solid rgba(255, 255, 255, 0.16);
  }

  .celebrate-dropdown__external-link:hover {
    transform: translateY(-2px);

    background:
      linear-gradient(135deg,
        #0f4fc9,
        #003b99) !important;

    border-color: rgba(255, 255, 255, 0.26);

    box-shadow:
      0 16px 34px rgba(0, 59, 153, 0.38),
      inset 0 1px 0 rgba(255, 255, 255, 0.14);

    filter: brightness(1.05);
  }

  .celebrate-dropdown__external-link:hover i {
    transform: translateX(2px) translateY(-1px);
  }

  .celebrate-dropdown__external-link i {
    transition: transform 0.22s ease;
  }

  .celebrate-dropdown:hover {
    background: #B65907;
    /*rgba(0, 48, 126, 0.48);*/
    border-color: rgba(255, 255, 255, 0.16);
  }

  #celebrate-safely {
    width: min(100%, var(--maxw));
    margin-left: auto;
    margin-right: auto;
  }

  #celebrate-safely-panel {
    width: 100%;
    min-width: 0;
  }

  /* ================================
    LINK LAYOUT
    ================================ */

  .celebrate-dropdown__body>a {
    min-width: 0;
  }

  /* when 2 links exist */
  .celebrate-dropdown__body:has(a + a) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  /* make description full width */
  .celebrate-dropdown__description {
    grid-column: 1 / -1;
  }

  /* link card styling */
  .celebrate-dropdown__content a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;

    min-width: 0;
    width: 100%;

    margin: 0;
    padding: 0.95rem 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.98);
    text-decoration: none;

    font-weight: 800;
    font-size: 0.85rem;
    line-height: 1.45;
    text-align: center;

    transition:
      background 0.22s ease,
      transform 0.22s ease,
      box-shadow 0.22s ease;
  }

  /* link card styling */
  .celebrate-dropdown__content button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;

    min-width: 0;
    width: 100%;

    margin: 0;
    padding: 0.95rem 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.98);
    text-decoration: none;

    font-weight: 800;
    font-size: 0.85rem;
    line-height: 1.45;
    text-align: center;

    transition:
      background 0.22s ease,
      transform 0.22s ease,
      box-shadow 0.22s ease;
  }

  /* allow wrapping */
  .celebrate-dropdown__content a span {
    flex: 1;
    min-width: 0;

    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  /* icon alignment */
  .celebrate-dropdown__content a i {
    flex-shrink: 0;
    margin-top: 0.15rem;
  }

  /* mobile stack */
  @media (max-width: 640px) {
    .celebrate-dropdown__body:has(a + a) {
      grid-template-columns: 1fr;
    }

  }

  .resource-celebrate,
  .resource-celebrate__panel,
  .resource-celebrate__content,
  .resource-celebrate__copy,
  .resource-celebrate__visual {
    min-width: 0;
  }

  @media (max-width: 950px) {

    .celebrate-dropdown {
      background: rgba(0, 48, 126, 0.88);
    }

    .resource-celebrate__content {
      position: relative;
      grid-template-columns: 1fr;
    }

    .resource-celebrate__visual {
      position: absolute;
      inset: 0;
      z-index: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100%;
      padding: 1rem;
      opacity: 0.55;
      pointer-events: none;
      background: transparent;
      display: none;
    }

    .resource-celebrate__copy {
      position: relative;
      z-index: 2;
    }

    .resource-celebrate__feature-image {
      width: 100%;
      max-width: 420px;
      height: auto;
      object-fit: contain;
    }

    .resource-celebrate__links {
      width: min(100%, 100%);
    }

  }

  @media (max-width: 768px) {

    #celebrate-safely {
      padding-left: 1rem;
      padding-right: 1rem;
    }

    .resource-celebrate__panel {
      min-height: auto;
      padding: 1.25rem;
      border-radius: 18px;
    }

    .resource-celebrate__content {
      gap: 1.25rem;
    }

    .resource-celebrate__copy h2 {
      font-size: clamp(2rem, 12vw, 3rem);
    }

    .resource-celebrate__copy p {
      font-size: 1rem;
    }

    .resource-celebrate__visual {
      padding: 0.85rem;
    }

  }

  @media (max-width: 640px) {
    .resource-materials__group-links {
      grid-template-columns: 1fr;
    }

    .resource-materials__group {
      padding: 0.9rem;
    }

    .resource-materials__group-label {
      font-size: 0.88rem;
    }

    .resource-materials__group-links a {
      width: 100%;
      min-height: 48px;
      font-size: 0.9rem;
    }

  }

  @media (max-width: 480px) {

    .resource-celebrate__panel {
      padding: 1rem;
    }

    .celebrate-dropdown__content a {
      padding-left: 1.5rem;
    }

    .celebrate-dropdown__content button {
      padding-left: 1.5rem;
    }

  }

  /* =========================================================
    VIDEO MODAL
    ========================================================= */

  .video-modal[hidden] {
    display: none;
  }

  .video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 1rem;
  }

  .video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(6px);
  }

  .video-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(920px, 100%);
    background: #000;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  }

  .video-modal video {
    display: block;
    width: 100%;
    max-height: 80vh;
    background: #000;
  }

  .video-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 20;
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(145deg,
        rgba(15, 23, 42, 0.92),
        rgba(30, 41, 59, 0.88));
    color: #ffffff;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: transform 0.22s ease,
      background 0.22s ease,
      box-shadow 0.22s ease,
      border-color 0.22s ease;
  }

  .video-modal__close:hover {
    transform: translateY(-2px) scale(1.05);
    background: linear-gradient(145deg,
        rgba(37, 99, 235, 0.95),
        rgba(59, 130, 246, 0.92));
    border-color: rgba(96, 165, 250, 0.45);
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.32),
      0 0 18px rgba(59, 130, 246, 0.22);
  }

  .video-modal__close:active {
    transform: scale(0.95);
  }

  .video-modal__close i {
    font-size: 1rem;
    pointer-events: none;
  }

  .video-modal__close:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.92);
    outline-offset: 4px;
  }

  .video-modal iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    background: #000;
  }

  .video-modal iframe[hidden],
  .video-modal video[hidden] {
    display: none;
  }

  @media (max-width: 1100px) {}

  @media (max-width: 950px) {

    .hero {
      min-height: auto;
    }

    .hero-inner {
      grid-template-columns: 1fr;
      gap: 1.25rem;
      align-items: stretch;
      padding: 1rem 2rem 2rem 2rem;
    }

    .hero-inner>div:first-child {
      display: block;
      max-width: 100%;
    }

    .hero h1 {
      margin: 0.9rem 0 0.75rem;
      font-size: clamp(2rem, 5vw, 3.2rem);
    }

    .hero p {
      margin: 0 0 1rem;
      max-width: 100%;
    }

    .hero-actions .btn {
      flex: 1 1 220px;
      min-width: 0;
    }

  }

  @media (max-width: 768px) {

    .hero {
      min-height: auto;
      border-radius: 0 0 24px 24px;
    }

    .hero-inner {
      grid-template-columns: 1fr;
      gap: 1.25rem;
      padding: 2rem 1rem 1.25rem;
      align-items: stretch;
    }

    .hero-inner>div:first-child {
      display: contents;
    }

    .eyebrow {
      order: 1;
      padding: 0.5rem 0.75rem;
      font-size: 0.82rem;
    }

    .hero h1 {
      order: 2;
      margin: 0.9rem 0 0.8rem;
      font-size: clamp(2rem, 9vw, 2.2rem);
      line-height: 1.02;
    }

    .hero p {
      order: 3;
      margin: 0;
      max-width: 100%;
      font-size: 0.98rem;
      line-height: 1.6;
    }

    .hero-actions {
      order: 5;
      display: flex;
      flex-direction: row;
      align-items: stretch;
      gap: 0.75rem;
      margin: 0;
    }

    .hero-actions .btn {
      width: 100%;
      min-width: 0;
      min-height: 52px;
      padding: 0.175rem 0.45rem;
      border-radius: 12px;
      font-size: 0.94rem;
    }

    .hero-actions .btn span {
      line-height: 50px;
    }

    .section-bg::before {
      background-attachment: scroll;
    }

  }

  @media (max-width: 480px) {

    .hero-inner {
      padding: 4rem 0.9rem 1rem;
      gap: 1rem;
    }

    .hero h1 {
      font-size: clamp(1.8rem, 10vw, 2.35rem);
    }

    .hero p {
      font-size: 0.93rem;
    }

    .btn {
      min-height: 50px;
      padding: 0.85rem 1rem;
      border-radius: 12px;
      font-size: 0.93rem;
    }

    .hero-actions .btn {
      min-height: 50px;
      font-size: 0.92rem;
    }

  }


  /* =========================================================
  IMAGE BANNER BUTTONS
  ========================================================= */

  .img-center {
    display: grid;
    justify-items: center;
    gap: 0;
    width: 100%;
  }

  .img-center-content {
    width: 100%;
    max-width: 1200px;
  }

  .img-center-content img {
    display: block;
    width: 100%;
    height: auto;
  }

  /* BUTTON WRAPPER */
  .img-center .hero-actions {
    position: static;
    transform: none;

    width: min(100%, 1200px);
    margin: 0;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;

    padding: 1rem;

    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;

    background: rgba(11, 95, 255, 0.1);
    border: 1px solid rgba(11, 95, 255, 0.14);

    box-shadow: var(--shadow);
  }

  /* BUTTON */
  .img-center .hero-actions .btn {
    display: flex !important;
    flex-direction: row !important;

    align-items: center !important;
    justify-content: center !important;

    gap: 0.65rem;

    width: 100%;
    min-width: 0;
    min-height: 64px;

    padding: 0.9rem 1rem;

    border-radius: 14px;

    text-align: center !important;
    white-space: normal !important;

    font-size: 0.9rem !important;
    line-height: 1.25 !important;
  }

  /* ICON */
  .img-center .hero-actions .btn i {
    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    flex: 0 0 auto;

    width: 38px;
    height: 38px;

    margin: 0;

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.14);

    font-size: 1rem;

    text-align: center !important;
  }

  /* TEXT */
  .img-center .hero-actions .btn span {
    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    width: auto;
    min-width: 0;
    height: auto;

    margin: 0;

    text-align: center !important;

    line-height: 1.25 !important;

    white-space: normal !important;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  /* TABLET */
  @media (max-width: 900px) {

    .img-center .hero-actions {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .img-center .hero-actions .btn {
      min-height: 60px;
      padding: 0.85rem 0.9rem;
      gap: 0.6rem;
    }

    .img-center .hero-actions .btn i {
      width: 34px;
      height: 34px;
      font-size: 0.95rem;
    }

  }

  /* MOBILE */
  @media (max-width: 520px) {

    .img-center {
      /*padding-inline: 0.75rem;*/
    }

    .img-center .hero-actions {
      grid-template-columns: repeat(4, minmax(0, 1fr));

      padding: 0.7rem;
      gap: 0.55rem;

      border-bottom-left-radius: 18px;
      border-bottom-right-radius: 18px;
    }

    /* STACK ICON + TEXT */
    .img-center .hero-actions .btn {
      display: flex !important;
      flex-direction: column !important;

      align-items: center !important;
      justify-content: center !important;

      min-height: 82px;

      padding: 0.7rem 0.35rem;

      gap: 0.4rem;

      border-radius: 12px;

      text-align: center !important;
    }

    /* ICON */
    .img-center .hero-actions .btn i {
      display: flex !important;

      align-items: center !important;
      justify-content: center !important;

      width: 28px;
      height: 28px;

      margin: 0 auto;

      font-size: 0.8rem;

      text-align: center !important;
    }

    /* TEXT */
    .img-center .hero-actions .btn span {
      display: flex !important;

      align-items: center !important;
      justify-content: center !important;

      width: 100%;

      font-size: 0 !important;

      font-weight: 600;

      line-height: 1.05 !important;

      text-align: center !important;

      letter-spacing: -0.01em;
    }

    /* SHORT MOBILE LABELS */
    #hero-primary-btn-text::after {
      content: "Heat";
    }

    #hero-secondary-btn-text::after {
      content: "Safe";
    }

    #hero-tertiary-btn-text::after {
      content: "Resources";
    }

    #hero-quaternary-btn-text::after {
      content: "Countdown";
    }

    /* GENERATED TEXT */
    #hero-primary-btn-text::after,
    #hero-secondary-btn-text::after,
    #hero-tertiary-btn-text::after,
    #hero-quaternary-btn-text::after {
      display: flex;

      align-items: center;
      justify-content: center;

      width: 100%;

      font-size: 0.62rem;

      font-weight: 600;

      line-height: 1.05;

      text-align: center;
    }

  }

  /* EXTRA SMALL MOBILE */
  @media (max-width: 450px) {

    .img-center .hero-actions {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.65rem;
    }

    .img-center .hero-actions .btn {
      min-height: 56px;
      padding: 0.7rem 0.55rem;
      gap: 0.5rem;
    }

    .img-center .hero-actions .btn i {
      width: 28px;
      height: 28px;
      font-size: 0.82rem;
    }

    #hero-primary-btn-text::after,
    #hero-secondary-btn-text::after,
    #hero-tertiary-btn-text::after,
    #hero-quaternary-btn-text::after {
      font-size: 0.7rem;
    }

  }

  @media (hover: none),
  (pointer: coarse) {

    .soccer-cursor {
      display: none;
    }

    html,
    body,
    a,
    button,
    [role="button"],
    input,
    select,
    textarea,
    label {
      cursor: auto !important;
    }

  }

  /* =========================================================
    GLOBAL BASE
    ========================================================= */

  html.has-custom-cursor .live-map-box,
  html.has-custom-cursor .live-map-box *,
  html.has-custom-cursor .leaflet-container,
  html.has-custom-cursor .leaflet-container *,
  html.has-custom-cursor .map-filter-control,
  html.has-custom-cursor .map-filter-control *,
  html.has-custom-cursor .location-limit-control,
  html.has-custom-cursor .location-limit-control * {
    cursor: pointer !important;
  }

  html.has-custom-cursor .live-map-box button,
  html.has-custom-cursor .live-map-box a,
  html.has-custom-cursor .leaflet-control button,
  html.has-custom-cursor .leaflet-control a,
  html.has-custom-cursor .map-filter-chip,
  html.has-custom-cursor .map-filter-scroll-btn,
  html.has-custom-cursor .location-limit-control button {
    cursor: pointer !important;
  }

  button:hover {
    cursor: pointer;
  }

  .has-materials-modal {
    overflow: hidden;
  }

  .resource-materials-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    width: 100%;
    min-height: 48px;
    padding: .8rem .9rem;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 183, 3, .12);
    color: #8a5300;
    font: inherit;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition:
      background .2s ease,
      transform .2s ease;
  }

  .resource-materials-trigger:hover,
  .resource-materials-trigger:focus-visible {
    background: rgba(255, 183, 3, .2);
    transform: translateY(-1px);
  }

  .resource-materials-trigger:focus-visible,
  .materials-modal a:focus-visible,
  .materials-modal__close:focus-visible {
    outline: 3px solid var(--accent-2);
    outline-offset: 3px;
  }

  .materials-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 1rem;
  }

  .materials-modal[hidden] {
    display: none;
  }

  .materials-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 27, 70, .62);
    backdrop-filter: blur(6px);
  }

  .materials-modal__dialog {
    position: relative;
    width: min(100%, 760px);
    max-height: min(86vh, 760px);
    overflow: auto;
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
    background: #fff;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .28);
  }

  .materials-modal__header {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
  }

  .materials-modal__eyebrow {
    margin: 0 0 .25rem;
    color: var(--primary-dark);
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
  }

  .materials-modal__header h2 {
    margin: 0;
    font-size: clamp(1.35rem, 4vw, 2rem);
    line-height: 1.1;
  }

  .materials-modal__close {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: var(--surface-soft);
    color: var(--text);
    cursor: pointer;
    transition:
      background .2s ease,
      transform .2s ease;
  }

  .materials-modal__close:hover {
    background: rgba(11, 95, 255, .08);
    transform: rotate(90deg);
  }

  /* ===== MODAL CONTENT ===== */

  .materials-modal__body {
    padding: 1.25rem;
    background: #f8fbff;
  }

  .materials-modal__group {
    display: grid;
    gap: .85rem;
  }

  .materials-modal__group h3 {
    display: none;
  }

  .materials-modal__links {
    display: grid;
    gap: .85rem;
  }

  .materials-modal__subgroup {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: .85rem;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(8, 27, 70, .07);
    margin-bottom: 0.75rem;
  }

  .materials-modal__subgroup h4 {
    margin: 0;
    color: var(--text);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.3;
  }

  .materials-modal__link-row {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    justify-content: flex-end;
  }

  .materials-modal a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    min-height: 40px;
    width: auto;
    padding: .65rem .9rem;
    border: 1px solid rgba(11, 95, 255, .12);
    border-radius: 999px;
    background: rgba(11, 95, 255, .08);
    color: var(--primary-dark);
    text-decoration: none;
    font-size: .88rem;
    font-weight: 900;
    white-space: nowrap;

    transition:
      background .2s ease,
      border-color .2s ease,
      transform .2s ease;
  }

  .materials-modal a:hover {
    background: rgba(11, 95, 255, .16);
    border-color: rgba(11, 95, 255, .24);
    transform: translateY(-1px);
  }

  .materials-language-dropdown {
    position: relative;
    width: 100%;
  }

  .materials-language-dropdown summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    min-height: 44px;
    padding: .75rem .9rem;
    border: 1px solid rgba(11, 95, 255, .12);
    border-radius: 14px;
    background: rgba(11, 95, 255, .08);
    color: var(--primary-dark);
    font-size: .9rem;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
    transition:
      background .2s ease,
      border-color .2s ease;
  }

  .materials-language-dropdown summary::-webkit-details-marker {
    display: none;
  }

  .materials-language-dropdown summary:hover {
    background: rgba(11, 95, 255, .14);
    border-color: rgba(11, 95, 255, .22);
  }

  .materials-language-dropdown summary i {
    transition: transform .2s ease;
  }

  .materials-language-dropdown[open] summary i {
    transform: rotate(180deg);
  }

  .materials-language-dropdown__menu {
    position: absolute;
    top: calc(100% + .45rem);
    left: 0;
    right: 0;
    z-index: 20;

    display: grid;
    gap: .45rem;

    padding: .5rem;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;

    box-shadow: 0 18px 40px rgba(8, 27, 70, .14);
  }

  .materials-language-dropdown__menu a {
    width: 100%;
    min-height: 42px;
    justify-content: space-between;
  }

  .materials-modal__subgroup h4 {
    display: flex;
    align-items: center;
    gap: .7rem;
    margin: 0;
    color: var(--text);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.3;
  }

  .materials-type-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: rgba(11, 95, 255, .08);
    color: var(--primary-dark);
    flex: 0 0 36px;
    font-size: .95rem;
  }

  @media (max-width: 600px) {
    .materials-type-icon {
      width: 34px;
      height: 34px;
      border-radius: 10px;
      font-size: .88rem;
    }

    .materials-modal__subgroup h4 {
      font-size: .95rem;
    }
  }

  .materials-modal__subgroup h4 {
    display: flex;
    align-items: center;
    gap: .7rem;
  }

  .materials-modal__title-text {
    flex: 1;
  }

  .materials-type-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: .35rem .7rem;
    border-radius: 999px;
    background: rgba(11, 95, 255, .08);
    color: var(--primary-dark);
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
  }

  /* ===== MOBILE ===== */

  @media (max-width: 600px) {

    .materials-modal {
      align-items: stretch;
      padding: 0;
    }

    .materials-modal__dialog {
      width: 100%;
      /*height: 100dvh;
      max-height: 100dvh;*/
      border-radius: 0;
    }

    .materials-modal__header {
      align-items: flex-start;
      padding: .9rem 1rem;
    }

    .materials-modal__header h2 {
      font-size: 1.25rem;
    }

    .materials-modal__eyebrow {
      font-size: .7rem;
    }

    .materials-modal__close {
      width: 40px;
      height: 40px;
      flex: 0 0 40px;
    }

    .materials-modal__body {
      padding: .9rem;
    }

    .materials-modal__subgroup {
      grid-template-columns: 1fr;
      align-items: stretch;
      padding: .9rem;
      border-radius: 16px;
    }

    .materials-modal__subgroup h4 {
      font-size: .92rem;
    }

    .materials-modal__link-row {
      justify-content: stretch;
    }

    .materials-modal a {
      width: 100%;
      min-height: 46px;
      font-size: .9rem;
    }
  }

  /* =========================================================
FIFA CALLOUT BELOW IMAGE BANNER
========================================================= */

  .fifa-callout {
    width: min(100%, 1200px);
    margin: 0 auto;
    padding: 0rem .75rem 1.5rem .75rem;

    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;

    background:
      linear-gradient(135deg,
        #0047b5 0%,
        #0b5fff 55%,
        #00b894 100%);

    box-shadow: var(--shadow);

    position: relative;
    overflow: hidden;

    transition:
      transform .2s ease,
      box-shadow .2s ease,
      filter .2s ease;
  }

  /* Soccer ball pattern */
  .fifa-callout::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
      radial-gradient(circle at center,
        rgba(255, 255, 255, .18) 0 18%,
        transparent 19%),
      radial-gradient(circle at top left,
        rgba(0, 0, 0, .12) 0 10%,
        transparent 11%),
      radial-gradient(circle at bottom right,
        rgba(0, 0, 0, .12) 0 10%,
        transparent 11%);

    background-size: 90px 90px;
    background-position: center;

    opacity: .45;
    pointer-events: none;
  }


  .fifa-callout:hover {
    box-shadow:
      0 10px 24px rgba(0, 0, 0, .25);

    filter: brightness(1.05);
  }

  /* Floating soccer balls */
  .fifa-callout-link {
    display: block;
    text-decoration: none;
    color: inherit;
  }

  .fifa-callout::after {
    content: "⚽ ⚽ ⚽";

    position: absolute;
    top: 12px;
    right: 18px;

    font-size: 1.8rem;
    opacity: .18;

    letter-spacing: 18px;
    white-space: nowrap;

    pointer-events: none;
  }

  .fifa-callout__content {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
  }

  .fifa-callout h2 {
    margin: 0;

    color: #fff;

    font-size: clamp(1.15rem, 3vw, 1.5rem);
    line-height: 1.25;
    font-weight: 900;

    text-shadow: 0 2px 8px rgba(0, 0, 0, .25);
  }

  /* MOBILE */
  @media (max-width: 768px) {

    .fifa-callout {
      /*margin-inline: 1rem;*/

      width: auto;

      padding: 1rem;

      border-bottom-left-radius: 18px;
      border-bottom-right-radius: 18px;
    }

    .fifa-callout h2 {
      max-width: 100%;

      font-size: clamp(1rem, 5vw, 1.45rem);
    }

    .fifa-callout::after {
      font-size: 1.2rem;
      right: 10px;
      top: 10px;
      letter-spacing: 10px;
    }

  }

  /* =========================================================
   SHARED RESOURCE BANNERS
========================================================= */

  .pedestrian-banner,
  .heat-banner {
    width: min(100%, var(--maxw));
    margin: 1rem auto;
    /*padding: 0 1rem;*/
  }

  .pedestrian-banner__inner,
  .heat-banner__inner {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    border-radius: 6px;
    background: #2874d9;
    color: #fff;
  }

  .pedestrian-banner__content h2,
  .heat-banner__content h2 {
    margin: 0 0 1rem;
    color: #fff;
    font-size: clamp(2.6rem, 4vw, 2rem);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
  }

  /* =========================================
   TABLET
========================================= */

  @media (max-width: 768px) {

    .pedestrian-banner__content h2,
    .heat-banner__content h2 {
      font-size: clamp(1.75rem, 6vw, 2.2rem);

      line-height: 1.05;
    }

  }

  /* =========================================
   MOBILE
========================================= */

  @media (max-width: 480px) {

    .pedestrian-banner__content h2,
    .heat-banner__content h2 {
      margin-bottom: 0.75rem;

      font-size: 1.5rem;

      line-height: 1.08;

      letter-spacing: -0.02em;

      text-align: center;
    }

  }

  .pedestrian-banner__content p,
  .heat-banner__content p,
  .heat-banner__tips li {
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.35;
    margin-top: 0.25rem !important;
  }

  .pedestrian-banner__content p,
  .heat-banner__content p {
    margin: 0 0 1rem;
  }

  .pedestrian-banner__button,
  .heat-banner__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-height: 44px;
    padding: 0.65rem 1rem 0.65rem 1.15rem;
    border-radius: 999px;
    border: 3px solid #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1;
  }

  /* =========================================================
   PEDESTRIAN / RESOURCE BANNERS
========================================================= */

  /* =========================================================
   STI PREVENTION + PEDESTRIAN SAFETY GROUND
========================================================= */

  #resource-sti-prevention .pedestrian-banner__inner::before,
  #resource-pedestrian-safety .pedestrian-banner__inner::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 54px;

    background:
      linear-gradient(#d8a383 0 0) 0 0 / 100% 4px no-repeat,
      repeating-linear-gradient(90deg,
        #efc4a9 0 170px,
        #bd8769 170px 174px);

    border-top: 4px solid #b67b5a;
    z-index: 3;
    pointer-events: none;
  }

  /* =========================================================
   PEDESTRIAN SAFETY ONLY
========================================================= */

  #resource-pedestrian-safety .pedestrian-banner__inner::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 320px;
    height: 280px;
    background:
      url('/media/winningstartswith/images/icons/grass.png') bottom right / contain no-repeat;
    z-index: 2;
    pointer-events: none;
  }

  .pedestrian-banner__mascot {
    position: absolute;
    top: 4px;
    width: 460px;
    height: 420px;
    z-index: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    /*padding: 10px;*/
  }

  .pedestrian-banner__mascot img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom left;
  }

  .pedestrian-banner__mascot img[src=""] {
    display: none;
  }

  .pedestrian-banner__content {
    position: relative;
    z-index: 5;
    width: min(480px, 52%);
    padding-top: 3.5rem;
  }

  .pedestrian-banner--image-left .pedestrian-banner__mascot {
    left: 0;
    right: auto;
  }

  .pedestrian-banner--image-left .pedestrian-banner__content {
    margin-left: 52%;
    margin-right: 0;
  }

  .pedestrian-banner--image-left .pedestrian-banner__inner::after {
    right: -8px;
    left: auto;
    transform: none;
  }

  .pedestrian-banner--image-right .pedestrian-banner__mascot {
    right: -40px;
    left: auto;
  }

  .pedestrian-banner--image-right .pedestrian-banner__content {
    margin-left: 1.5rem;
    margin-right: 45%;
  }

  .pedestrian-banner--image-right .pedestrian-banner__inner::after {
    left: -8px;
    right: auto;
    transform: scaleX(-1);
  }

  .pedestrian-banner__button,
  .heat-banner__button--primary {
    background: #ff9228;
    color: #222;
  }

  /* =========================================================
   FOOD SAFETY OVERRIDE
========================================================= */

  #resource-food-safety .pedestrian-banner__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
    align-items: center;
    gap: clamp(1.5rem, 4vw, 3rem);
    min-height: 360px;
    padding: 1.5rem;
    background: linear-gradient(135deg, #3688f3 0%, #1769d8 100%);
  }

  #resource-food-safety .pedestrian-banner__inner::before,
  #resource-food-safety .pedestrian-banner__inner::after {
    display: none;
  }

  #resource-food-safety .pedestrian-banner__content {
    width: auto;
    max-width: 560px;
    margin: 0;
    padding-top: 0;
  }

  #resource-food-safety .pedestrian-banner__mascot {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: auto;
    height: auto;
    padding: 0;
  }

  #resource-food-safety .pedestrian-banner__mascot img {
    width: 100%;
    max-width: 480px;
    height: auto;
  }

  #resource-food-safety.pedestrian-banner--image-right .pedestrian-banner__content {
    order: 1;
  }

  #resource-food-safety.pedestrian-banner--image-right .pedestrian-banner__mascot {
    order: 2;
  }

  #resource-food-safety.pedestrian-banner--image-left .pedestrian-banner__mascot {
    order: 1;
  }

  #resource-food-safety.pedestrian-banner--image-left .pedestrian-banner__content {
    order: 2;
  }

  #resource-food-safety .pedestrian-banner__inner {
    grid-template-columns: minmax(360px, 520px) minmax(0, 1fr);
    gap: 1.5rem;
  }

  #resource-food-safety .pedestrian-banner__mascot {
    justify-content: flex-start;
    align-items: center;
    margin-left: -2rem;
  }

  #resource-food-safety .pedestrian-banner__mascot img {
    width: 100%;
    max-width: 500px;
    object-fit: contain;
  }

  #resource-food-safety .pedestrian-banner__content {
    max-width: 560px;
    margin-left: 0;
    padding-right: 1rem;
  }

  .celebrate-dropdown--food-safety,
  .celebrate-dropdown--disease,
  .celebrate-dropdown--heat {
    background: rgba(0, 24, 64, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .celebrate-dropdown--disease {
    background: rgba(0, 16, 44, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .pedestrian-banner--sti .pedestrian-banner__inner {
    background:
      radial-gradient(circle at 90% 10%,
        rgba(255, 255, 255, 0.12),
        transparent 28%),
      linear-gradient(135deg,
        #0057d9 0%,
        #0047b5 100%);
  }

  #resource-preventing-disease-spread .pedestrian-banner__inner {
    align-items: center;
  }

  #resource-preventing-disease-spread .pedestrian-banner__mascot {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 100%;
  }

  #resource-preventing-disease-spread .pedestrian-banner__mascot img {
    margin: auto;
  }

  /* =========================================================
   HEAT & HYDRATION RESOURCE BANNER
========================================================= */

  .heat-banner__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
    align-items: center;
    gap: 3rem;
    min-height: 430px;
    padding: 2.5rem 3rem;
    overflow: hidden;
  }

  /* Force image/visual to the LEFT */
  .heat-banner__visual {
    position: relative;
    z-index: 4;
    grid-column: 1;
    grid-row: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
  }

  /* Force text/content to the RIGHT */
  .heat-banner__content {
    position: relative;
    z-index: 5;
    grid-column: 2;
    grid-row: 1;
  }

  .heat-banner__image-frame {
    width: 100%;
    max-width: 420px;
    overflow: hidden;
  }

  .heat-banner__image-frame img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .heat-banner__mascot {
    position: absolute;
    left: -20px;
    bottom: -12px;
    width: 260px;
    height: 320px;
    z-index: 5;
  }

  .heat-banner__mascot img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom left;
  }

  .heat-banner__tips {
    display: grid;
    gap: 0.85rem;
    margin: 0 0 1.75rem;
    padding: 0;
    list-style: none;
  }

  .heat-banner__tips li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin: 0;
  }

  .heat-banner__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .heat-banner__button--secondary {
    background: #e8e8e8;
    color: #2d2d2d;
  }

  /* =========================================================
   RESPONSIVE
========================================================= */

  @media (max-width: 900px) {
    .heat-banner__inner {
      grid-template-columns: 1fr;
      gap: 0.6rem;
      min-height: auto;
      padding: 0.5rem 1.5rem 1.5rem 1.5rem;
    }

    .heat-banner__visual {
      grid-column: 1;
      grid-row: 1;
      justify-content: center;
    }

    .heat-banner__content {
      grid-column: 1;
      grid-row: 2;
      text-align: left;
    }

    .heat-banner__image-frame {
      max-width: 360px;
      margin: 0 auto;
    }

    .heat-banner__actions,
    .heat-banner__tips li {
      justify-content: center;
    }

    .heat-banner__button {
      width: 100%;
      min-width: 0;
    }
  }

  @media (max-width: 640px) {
    .heat-banner__inner {
      padding: 1.5rem 1.25rem;
    }

    .heat-banner__image-frame {
      max-width: 300px;
    }

    .heat-banner__mascot {
      position: relative;
      left: auto;
      bottom: auto;
      width: 220px;
      height: 260px;
      margin: -70px auto 0;
    }
  }

  /* =========================================================
   DISEASE PREVENTION THEME
========================================================= */

  .pedestrian-banner.disease-prevention .pedestrian-banner__inner {
    background: #84d400;
    overflow: hidden;
  }

  .pedestrian-banner.disease-prevention .pedestrian-banner__content {
    position: relative;
    z-index: 5;
    max-width: 640px;
    padding: 1.5rem;
    border-radius: 24px;
    background: #f4f4f4;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
    margin-top: 0.65rem;
    margin-bottom: 0.65rem;
  }

  .pedestrian-banner.disease-prevention h2 {
    color: #000;
  }

  .pedestrian-banner.disease-prevention p {
    color: #222;
  }

  .pedestrian-banner.disease-prevention .celebrate-dropdown__body .celebrate-dropdown__description {
    color: #f4f4f4 !important;
  }

  .pedestrian-banner.disease-prevention .pedestrian-banner__mascot {
    align-items: center;
    justify-content: center;
  }

  .pedestrian-banner.disease-prevention .pedestrian-banner__mascot img {
    max-width: 520px;
    width: 100%;
    object-fit: contain;
  }

  .pedestrian-banner.disease-prevention .pedestrian-banner__button {
    background: #0057ff;
    border-color: #0057ff;
    color: #fff;
  }

  .pedestrian-banner.disease-prevention .pedestrian-banner__button:hover {
    background: #0045cc;
    border-color: #0045cc;
  }


  /* =========================================================
   FIFA JUMP BUTTONS
========================================================= */

  .fifa-callout__buttons {
    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 1rem;

    width: 100%;

    margin-top: 1.5rem;
  }

  /* =========================================================
   BUTTON
========================================================= */

  .fifa-callout__btn {
    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 0.5rem;

    width: 155px;

    min-height: 88px;

    padding: 0.8rem 0.85rem;

    border-radius: 22px;

    background: #ffffff;

    font-weight: 700;
    font-size: 0.88rem;
    line-height: 1.12;

    text-align: center;
    text-decoration: none;

    box-sizing: border-box;

    box-shadow:
      0 4px 14px rgba(0, 0, 0, 0.08);

    transition:
      transform 0.2s ease,
      background 0.2s ease,
      color 0.2s ease,
      box-shadow 0.2s ease;
  }

  /* =========================================================
   HOVER
========================================================= */

  .fifa-callout__btn:hover {
    background: #002b5c;

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
      0 10px 24px rgba(0, 43, 92, 0.2);
  }

  /* =========================================================
   ACCESSIBILITY
========================================================= */

  .fifa-callout__btn:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.85);

    outline-offset: 3px;
  }

  /* =========================================================
   ICON
========================================================= */

  .fifa-callout__btn-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: rgba(0, 43, 92, 0.08);

    font-size: 1rem;

    flex-shrink: 0;

    transition:
      background 0.2s ease,
      transform 0.2s ease;
  }

  .fifa-callout__btn:hover .fifa-callout__btn-icon {
    background: rgba(255, 255, 255, 0.14);

    transform: scale(1.06);
  }

  /* =========================================================
   TEXT
========================================================= */

  .fifa-callout__btn-text {
    display: block;

    max-width: 100px;
  }

  /* =========================================================
   SMALL DESKTOP / TABLET
========================================================= */

  @media (max-width: 1047px) {

    .fifa-callout__buttons {
      display: grid;

      grid-template-columns: repeat(3, minmax(0, 1fr));

      gap: 0.85rem;
    }

    .fifa-callout__btn {
      width: 100%;
    }

  }

  /* =========================================================
   MOBILE
========================================================= */

  @media (max-width: 600px) {

    .fifa-callout__buttons {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .fifa-callout__btn {
      width: 100%;

      min-height: 84px;

      font-size: 0.9rem;

      border-radius: 20px;
    }

    .fifa-callout__btn-icon {
      width: 40px;
      height: 40px;

      font-size: 0.95rem;
    }

  }

  /* =========================================================
   SMALL MOBILE
========================================================= */

  @media (max-width: 480px) {

    .fifa-callout__buttons {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

  }

  /* =========================================================
   EXTRA SMALL MOBILE
========================================================= */

  @media (max-width: 320px) {

    .fifa-callout__buttons {
      grid-template-columns: 1fr;
    }

  }


  @media (max-width: 950px) {

    .pedestrian-banner__content {
      padding: 0.5rem 0.75rem;

    }

    .pedestrian-banner__inner,
    .pedestrian-banner--image-right .pedestrian-banner__inner {
      grid-template-columns: 1fr !important;
      padding: 1rem;
    }

    /* Hide image column */
    .pedestrian-banner__mascot {
      display: none !important;
    }

    /* Full width content */
    .pedestrian-banner__content {
      width: 100% !important;
      max-width: 100% !important;

      min-width: 0 !important;
    }

    /* Prevent dropdown overflow */
    .resource-celebrate__links,
    .pedestrian-banner__dropdowns,
    .celebrate-dropdown {
      width: 100% !important;
      min-width: 0 !important;
    }

    .pedestrian-banner--image-right .pedestrian-banner__content {
      margin-left: 0;
      margin-right: 0;
    }

    .pedestrian-banner--image-left .pedestrian-banner__content {
      margin-left: 0;
    }

    .heat-banner__visual {
      display: none;
    }
  }

  /* 481px and up */
  @media (min-width: 481px) {

    .heat-banner__actions {
      display: flex;
      flex-direction: row;
      gap: 0.75rem;
    }

    .heat-banner__button {
      flex: 1 1 0;
    }

  }

  @media (max-width: 480px) {

    .heat-banner__actions {
      display: flex;
      flex-direction: row;
      gap: 0.75rem;
    }

    .heat-banner__button {
      flex: 1 1 0;
    }

  }

  .celebrate-dropdown__nested-links {
    display: grid;
    gap: 0.75rem;
  }

  /* =========================================
   ACCORDIONS OVERLAY INSTEAD OF PUSH
========================================= */

  #topic-resources,
  #generated-resource-sections {
    position: relative;
    overflow: visible;
    z-index: 10;
  }

  .pedestrian-banner,
  .heat-banner {
    position: relative;
    overflow: visible;
    z-index: 1;
  }

  .pedestrian-banner:has(.celebrate-dropdown[open]),
  .heat-banner:has(.celebrate-dropdown[open]) {
    z-index: 999;
  }

  .pedestrian-banner__inner,
  .heat-banner__inner {
    position: relative;
  }

  .pedestrian-banner__inner:has(.celebrate-dropdown[open]),
  .heat-banner__inner:has(.celebrate-dropdown[open]) {
    overflow: visible !important;
    z-index: 999;
  }

  .pedestrian-banner__content,
  .heat-banner__content {
    position: relative;
    z-index: 20;
  }

  .pedestrian-banner__dropdowns,
  .heat-banner__dropdowns {
    position: relative;
    overflow: visible;
    z-index: 1000;
  }

  .celebrate-dropdown {
    position: relative;
    overflow: visible;
    z-index: 1;
  }

  .celebrate-dropdown[open] {
    z-index: 1001;
  }

  .celebrate-dropdown__content {
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 0;
    right: 0;
    z-index: 1002;

    height: auto !important;
    overflow: visible !important;

    padding: 0.85rem;
    border-radius: 16px;
    background: rgba(0, 48, 126, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    animation: dropdownFade 0.18s ease;
  }

  /* Open upward for last banner */
  .pedestrian-banner:last-of-type .celebrate-dropdown__content {
    top: auto;
    bottom: calc(100% + 0.65rem);
  }

  .celebrate-dropdown__body {
    padding: 0;
    gap: 0.75rem;
    overflow: visible;
  }

  .celebrate-dropdown__description {
    margin: 0;
  }

  @keyframes dropdownFade {
    from {
      opacity: 0;
      transform: translateY(-6px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* =========================================
   RESPONSIVE
========================================= */

  @media (max-width: 900px) {
    .celebrate-dropdown__content {
      padding: 0.75rem;
      border-radius: 14px;
    }

    .celebrate-dropdown__body {
      grid-template-columns: 1fr !important;
    }

    .celebrate-dropdown__description {
      font-size: 0.88rem;
      line-height: 1.5;
    }
  }

  @media (max-width: 640px) {

    .pedestrian-banner__dropdowns,
    .heat-banner__dropdowns {
      position: static;
    }

    .celebrate-dropdown__content,
    .pedestrian-banner:last-of-type .celebrate-dropdown__content {
      position: relative;
      top: auto;
      bottom: auto;
      left: auto;
      right: auto;
      z-index: 1;

      margin-top: 0.65rem;
      width: 100%;

      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
    }
  }

  /* Celebrate Safely dropdown overlay fix */
  .resource-celebrate,
  .resource-celebrate__panel,
  .resource-celebrate__content,
  .resource-celebrate__copy,
  .resource-celebrate__links {
    overflow: visible !important;
    position: relative;
  }

  .resource-celebrate__panel {
    z-index: 20;
  }

  .resource-celebrate__panel:has(.celebrate-dropdown[open]) {
    z-index: 9999;
  }

  .celebrate-dropdown {
    position: relative;
    overflow: visible !important;
    z-index: 1;
  }

  .celebrate-dropdown[open] {
    z-index: 10000;
  }

  .celebrate-dropdown__content {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.45rem);
    z-index: 10001;

    height: auto !important;
    overflow: visible !important;

    background: rgba(0, 48, 126, 0.96);
    border-radius: 14px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  }

  .celebrate-dropdown__body,
  .celebrate-dropdown__content>div {
    overflow: visible !important;
  }

  .celebrate-dropdown.opens-up .celebrate-dropdown__content {
    top: auto;
    bottom: calc(100% + 0.45rem);
  }

  .celebrate-dropdown--last .celebrate-dropdown__content {
    top: auto !important;
    bottom: calc(100% + 0.45rem) !important;
  }

  .celebrate-dropdown--second-last {
    position: relative;
    z-index: 9998;
  }

  .celebrate-dropdown--second-last[open] {
    z-index: 10000;
  }

  .celebrate-dropdown--second-last .celebrate-dropdown__content {
    z-index: 10001;
  }

  .resource-celebrate:has(.celebrate-dropdown[open]),
  .resource-celebrate__panel:has(.celebrate-dropdown[open]) {
    position: relative;
    z-index: 9999;
  }

  @media (max-width: 950px) {
    .heat-banner__inner {
      display: grid;
      grid-template-columns: 1fr !important;
      padding: 1.5rem !important;
      min-height: auto;
    }

    .heat-banner__content {
      grid-column: 1 / -1 !important;
      grid-row: 1 !important;
      width: 100% !important;
      max-width: 100% !important;
      min-width: 0 !important;
    }

    .heat-banner__content h2,
    .heat-banner__content p,
    .heat-banner__tips,
    .heat-banner__dropdowns,
    .resource-celebrate__links.heat-banner__dropdowns {
      width: 100% !important;
      max-width: 100% !important;
    }

    .heat-banner__visual {
      display: none !important;
    }

    .heat-banner__tips li {
      display: flex;
      align-items: flex-start;
      gap: 0.65rem;
    }

    .heat-banner__tips li i {
      flex-shrink: 0;
      width: 16px;
      margin-top: 0.2rem;
    }

    .heat-banner__tips li span {
      flex: 1;
    }
  }

  .materials-modal__language-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
  }

  .materials-modal__language-pill {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;
    padding: 10px 14px;

    border: 1px solid #d7e2ea;
    border-radius: 999px;

    text-decoration: none;
    text-align: center;
    font-weight: 600;
  }

  .materials-modal__language-pill:hover {
    transform: translateY(-1px);
  }

  .materials-modal__description {
    margin: 0 0 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-secondary, #555);
  } 

  @media (max-width: 900px) {
    .materials-modal__language-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 600px) {
    .materials-modal__language-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }