.llh-header,
  .llh-header * {
    box-sizing: border-box;
  }

  .llh-header {
    --llh-blue: #0D47A1;
    --llh-blue-dark: #0A3478;
    --llh-blue-deep: #08285f;
    --llh-red: #9A0404;
    --llh-red-hover: #7f0303;
    --llh-red-dark: #7f0303;
    --llh-white: #ffffff;
    --llh-text: #13203a;
    --llh-muted: #647493;
    --llh-soft: #f7f9fc;
    --llh-border: rgba(255, 255, 255, 0.18);
    --llh-blue-hover-soft: rgba(13, 71, 161, 0.08);
    --llh-blue-icon-soft: rgba(13, 71, 161, 0.09);
    --llh-nav-h: 62px;

    position: relative;
    z-index: 9999;
    width: 100%;
    font-family: Inter, Arial, sans-serif;
    background: var(--llh-blue);
    color: var(--llh-white);
  }

  .llh-header a {
    color: inherit;
    text-decoration: none;
  }

  .llh-nav {
    width: 100%;
    min-height: var(--llh-nav-h);
    display: flex;
    align-items: stretch;
    background: var(--llh-blue);
    border-bottom: 1px solid var(--llh-border);
  }

  .llh-logo {
    width: 108px;
    min-height: var(--llh-nav-h);
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--llh-red);
  }

  .llh-logo img {
    display: block;
    width: auto;
    height: 58px;
    max-width: 86px;
    object-fit: contain;
  }

  .llh-menu-wrap {
    flex: 1;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
  }

  .llh-menu {
    list-style: none;
    display: flex;
    align-items: stretch;
    margin: 0;
    padding: 0;
  }

  .llh-item {
    position: relative;
    display: flex;
    align-items: stretch;
  }

  .llh-link,
  .llh-trigger {
    appearance: none;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.94);
    min-height: var(--llh-nav-h);
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.16s ease, color 0.16s ease;
  }

  .llh-link:hover,
  .llh-trigger:hover,
  .llh-item:hover > .llh-trigger,
  .llh-item.is-open > .llh-trigger {
    background: rgba(0, 0, 0, 0.18);
    color: #ffffff;
  }

  .llh-chevron {
    width: 10px;
    height: 10px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.85;
    transition: transform 0.18s ease;
  }

  .llh-item:hover .llh-chevron,
  .llh-item.is-open .llh-chevron {
    transform: rotate(180deg);
  }

  .llh-live {
    min-height: var(--llh-nav-h);
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--llh-red);
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background 0.16s ease;
  }

  .llh-live:hover {
    background: var(--llh-red-hover);
    color: #ffffff;
  }

  .llh-live svg {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
  }


  .llh-live-icon {
    width: 17px;
    height: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 999px;
    transform-origin: center;
    animation: llh-play-pulse 2.4s ease-in-out infinite;
  }

  .llh-live:hover .llh-live-icon {
    animation-duration: 1.8s;
  }

  @keyframes llh-play-pulse {
    0%, 100% {
      transform: scale(1);
      filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
    }
    50% {
      transform: scale(1.14);
      filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.52));
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .llh-live-icon {
      animation: none;
    }
  }

  .llh-mega {
    position: absolute;
    top: 100%;
    left: 0;
    width: min(760px, calc(100vw - 28px));
    background: #ffffff;
    color: var(--llh-text);
    border-top: 4px solid var(--llh-red);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
  }

  .llh-item:hover > .llh-mega,
  .llh-item:focus-within > .llh-mega,
  .llh-mega:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s;
  }

  .llh-mega-app {
    width: min(680px, calc(100vw - 28px));
  }

  .llh-mega-inner {
    padding: 24px;
  }

  .llh-mega-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(13, 71, 161, 0.14);
  }

  .llh-mega-title {
    margin: 0 0 4px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    line-height: 1;
    color: var(--llh-text);
  }

  .llh-mega-sub {
    margin: 0;
    font-size: 13px;
    color: var(--llh-muted);
  }

  .llh-mega-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--llh-blue-hover-soft);
    color: var(--llh-blue);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
    transition: background 0.16s ease, color 0.16s ease;
  }

  .llh-mega-all:hover {
    background: var(--llh-blue);
    color: #ffffff;
  }

  .llh-mega-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 18px;
  }

  .llh-drop-link {
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 9px 10px;
    border-radius: 8px;
    color: var(--llh-text);
    font-size: 14px;
    font-weight: 750;
    line-height: 1.25;
    transition: background 0.14s ease, color 0.14s ease;
  }

  .llh-drop-link:hover {
    background: var(--llh-blue-hover-soft);
    color: var(--llh-blue);
  }

  .llh-drop-label {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    min-width: 0;
  }

  .llh-coming-soon-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 3px 7px;
    background: var(--llh-red);
    color: #ffffff;
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 3px 8px rgba(154, 4, 4, 0.18);
  }

  .llh-drop-link:hover .llh-coming-soon-pill {
    background: var(--llh-red-dark);
    color: #ffffff;
  }

  .llh-drop-icon,
  .llh-app-mini-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
  }

  .llh-drop-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    flex: 0 0 auto;
    background: var(--llh-blue-icon-soft);
    color: var(--llh-blue);
  }

  .llh-drop-link:hover .llh-drop-icon {
    background: var(--llh-blue);
    color: #ffffff;
  }

  .llh-drop-thumb-icon {
    overflow: hidden;
    background: #f1f4f8;
    color: transparent;
    border: 1px solid rgba(13, 71, 161, 0.14);
  }

  .llh-drop-thumb-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .llh-drop-link:hover .llh-drop-thumb-icon {
    background: #f1f4f8;
    color: transparent;
  }

  .llh-drop-icon svg {
    width: 15px;
    height: 15px;
    display: block;
    margin: 0;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .llh-app-panel {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 20px;
    align-items: stretch;
  }

  .llh-app-card {
    position: relative;
    overflow: hidden;
    min-height: 250px;
    border-radius: 16px;
    padding: 24px;
    background:
      radial-gradient(circle at 85% 12%, rgba(255, 255, 255, 0.22), transparent 24%),
      linear-gradient(135deg, var(--llh-blue), var(--llh-blue-deep));
    color: #ffffff;
  }

  .llh-app-card::after {
    content: "";
    position: absolute;
    right: -38px;
    bottom: -52px;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: rgba(154, 4, 4, 0.72);
  }

  .llh-app-kicker {
    position: relative;
    z-index: 1;
    margin: 0 0 10px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
  }

  .llh-app-title {
    position: relative;
    z-index: 1;
    margin: 0 0 12px;
    max-width: 300px;
    font-size: 31px;
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: #ffffff;
  }

  .llh-app-copy {
    position: relative;
    z-index: 1;
    max-width: 350px;
    margin: 0 0 20px;
    font-size: 13.5px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.86);
  }

  .llh-app-buttons {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
  }

  .llh-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    width: fit-content;
    min-width: 176px;
    padding: 11px 15px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: transform 0.16s ease, background 0.16s ease, border-color 0.16s ease;
  }

  .llh-store-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.62);
    color: #ffffff;
  }

  .llh-store-btn svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    flex: 0 0 auto;
  }

  .llh-store-btn span {
    display: block;
    font-size: 10px;
    line-height: 1.1;
    color: rgba(255, 255, 255, 0.74);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .llh-store-btn strong {
    display: block;
    font-size: 14px;
    line-height: 1.1;
    color: #ffffff;
  }

  .llh-app-links {
    display: grid;
    align-content: start;
    gap: 10px;
  }

  .llh-app-mini-link {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px;
    border-radius: 12px;
    background: var(--llh-soft);
    color: var(--llh-text);
    transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease;
  }

  .llh-app-mini-link:hover {
    background: var(--llh-blue-hover-soft);
    color: var(--llh-blue);
    transform: translateX(2px);
  }

  .llh-app-mini-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    flex: 0 0 auto;
    background: var(--llh-blue-icon-soft);
    color: var(--llh-blue);
  }

  .llh-app-mini-link:hover .llh-app-mini-icon {
    background: var(--llh-blue);
    color: #ffffff;
  }

  .llh-app-mini-icon svg {
    width: 18px;
    height: 18px;
    display: block;
    margin: 0;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .llh-app-mini-link strong {
    display: block;
    font-size: 13px;
    line-height: 1.15;
  }

  .llh-app-mini-link span span {
    display: block;
    margin-top: 2px;
    font-size: 11px;
    color: var(--llh-muted);
  }

  .llh-mobile-toggle {
    display: none;
    width: 54px;
    min-height: var(--llh-nav-h);
    margin-left: auto;
    border: 0 !important;
    border-radius: 0;
    background: transparent !important;
    color: #ffffff !important;
    cursor: pointer;
    box-shadow: none !important;
    outline: none;
    -webkit-tap-highlight-color: transparent;
  }

  .llh-mobile-toggle:hover,
  .llh-mobile-toggle:focus,
  .llh-mobile-toggle:active {
    background: var(--llh-blue-dark) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    box-shadow: none !important;
  }

  .llh-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: currentColor;
    border-radius: 999px;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

  .llh-header.is-mobile-open .llh-mobile-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .llh-header.is-mobile-open .llh-mobile-toggle span:nth-child(2) {
    opacity: 0;
  }

  .llh-header.is-mobile-open .llh-mobile-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .llh-mobile-backdrop,
  .llh-mobile-only,
  .llh-mobile-expand {
    display: none;
  }

  @media (max-width: 1120px) {
    .llh-link,
    .llh-trigger {
      padding: 0 11px;
      font-size: 13px;
      letter-spacing: 0.12em;
    }

    .llh-live {
      padding: 0 15px;
      font-size: 13px;
    }
  }

  @media (max-width: 900px) {
    .llh-logo {
      width: 92px;
    }

    .llh-logo img {
      height: 54px;
      max-width: 76px;
    }

    .llh-mobile-toggle {
      display: block;
    }

    .llh-mobile-backdrop {
      display: block;
      position: fixed;
      inset: 0;
      z-index: 9997;
      background: rgba(5, 15, 34, 0.56);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.2s ease, visibility 0s linear 0.2s;
    }

    .llh-header.is-mobile-open .llh-mobile-backdrop {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transition: opacity 0.2s ease, visibility 0s;
    }

    .llh-menu-wrap {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      z-index: 9998;
      width: min(390px, 88vw);
      display: flex;
      flex-direction: column;
      background:
        radial-gradient(circle at 90% 8%, rgba(154, 4, 4, 0.5), transparent 26%),
        linear-gradient(180deg, var(--llh-blue), var(--llh-blue-deep));
      box-shadow: -24px 0 60px rgba(0, 0, 0, 0.32);
      transform: translateX(105%);
      transition: transform 0.24s ease;
      padding: 82px 20px 18px;
      overflow: hidden;
    }

    .llh-header.is-mobile-open .llh-menu-wrap {
      transform: translateX(0);
    }

    .llh-menu {
      width: 100%;
      display: grid;
      gap: 10px;
      overflow-y: auto;
      padding-bottom: 16px;
      overscroll-behavior: contain;
    }

    .llh-item {
      width: 100%;
      display: block;
      border: 0;
    }

    .llh-link,
    .llh-trigger {
      width: 100%;
      min-height: auto;
      justify-content: space-between;
      padding: 15px 16px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.09);
      letter-spacing: 0.12em;
    }

    .llh-link:hover,
    .llh-trigger:hover {
      background: rgba(255, 255, 255, 0.15);
      color: #ffffff;
    }

    .llh-trigger {
      cursor: default;
    }

    .llh-chevron {
      display: none;
    }

    .llh-mega {
      position: static;
      width: 100%;
      margin-top: 8px;
      box-shadow: none;
      border-top: 0;
      border-radius: 16px;
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: none;
      display: block;
      background: rgba(255, 255, 255, 0.96);
      overflow: hidden;
      max-height: 420px;
      transition: max-height 0.24s ease;
    }

    .llh-mega::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 70px;
      background: linear-gradient(to bottom, rgba(247, 249, 252, 0), rgba(247, 249, 252, 1));
      pointer-events: none;
    }

    .llh-item.is-expanded .llh-mega {
      max-height: 1600px;
    }

    .llh-item.is-expanded .llh-mega::after {
      display: none;
    }

    .llh-mega-inner {
      padding: 16px;
    }

    .llh-mega-top {
      align-items: flex-start;
      flex-direction: column;
      gap: 12px;
      padding-bottom: 12px;
      margin-bottom: 12px;
    }

    .llh-mega-title {
      font-size: 24px;
    }

    .llh-mega-grid {
      grid-template-columns: 1fr;
      gap: 6px;
    }

    .llh-drop-link {
      min-height: 44px;
      padding: 9px 8px;
    }

    .llh-mobile-expand {
      display: flex;
      align-items: center;
      justify-content: center;
      width: calc(100% - 24px);
      margin: 10px 12px 16px;
      padding: 12px 14px;
      border: 0;
      border-radius: 999px;
      background: rgba(13, 71, 161, 0.88);
      color: #ffffff;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.11em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.16s ease;
    }

    .llh-mobile-expand:hover {
      background: var(--llh-blue-dark);
      color: #ffffff;
    }

    .llh-app-panel {
      grid-template-columns: 1fr;
    }

    .llh-app-card {
      min-height: 0;
      padding: 20px;
    }

    .llh-app-title {
      font-size: 25px;
    }

    .llh-app-copy {
      font-size: 13px;
    }

    .llh-store-btn {
      width: 100%;
      justify-content: center;
    }

    .llh-live {
      position: sticky;
      bottom: 0;
      z-index: 5;
      width: 100%;
      min-height: 58px;
      justify-content: center;
      margin-top: 14px;
      border-radius: 16px;
      box-shadow: 0 -10px 28px rgba(0, 0, 0, 0.18);
      flex: 0 0 auto;
    }

    .llh-mobile-only {
      display: block;
    }

    .llh-mobile-close {
      position: absolute;
      top: 18px;
      right: 18px;
      width: 42px;
      height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      border: 1px solid rgba(255, 255, 255, 0.24);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.1);
      color: #ffffff;
      font-size: 28px;
      line-height: 1;
      text-align: center;
      cursor: pointer;
    }

    .llh-mobile-close:hover {
      background: rgba(255, 255, 255, 0.18);
      color: #ffffff;
    }

    .llh-mobile-drawer-logo {
      position: absolute;
      top: 16px;
      left: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #ffffff;
    }

    .llh-mobile-drawer-logo img {
      width: 42px;
      height: 42px;
      object-fit: cover;
      border-radius: 4px;
    }
  }

  @media (max-width: 460px) {
    .llh-logo {
      width: 82px;
    }

    .llh-logo img {
      height: 48px;
      max-width: 70px;
    }

    .llh-menu-wrap {
      width: 90vw;
      padding-left: 16px;
      padding-right: 16px;
    }
  }


  /* Homepage holiday effects */
  .llh-holiday-effect {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 190px;
    pointer-events: none;
    overflow: hidden;
    z-index: 10000;
  }

  .llh-header.is-holiday-home .llh-holiday-effect {
    display: block;
  }

  .llh-fireworks {
    height: 220px;
    overflow: visible;
  }

  .llh-fireworks span {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    opacity: 0;
    background: #ffffff;
    transform-origin: center;
    box-shadow:
      0 -66px 0 rgba(255, 255, 255, 0.98),
      18px -56px 0 rgba(214, 39, 64, 0.96),
      34px -48px 0 rgba(255, 255, 255, 0.96),
      50px -32px 0 rgba(42, 114, 217, 0.95),
      62px -8px 0 rgba(255, 255, 255, 0.92),
      58px 18px 0 rgba(214, 39, 64, 0.94),
      42px 42px 0 rgba(255, 255, 255, 0.92),
      22px 58px 0 rgba(42, 114, 217, 0.94),
      0 66px 0 rgba(255, 255, 255, 0.92),
      -22px 58px 0 rgba(214, 39, 64, 0.94),
      -42px 42px 0 rgba(255, 255, 255, 0.92),
      -58px 18px 0 rgba(42, 114, 217, 0.94),
      -62px -8px 0 rgba(255, 255, 255, 0.92),
      -50px -32px 0 rgba(214, 39, 64, 0.95),
      -34px -48px 0 rgba(255, 255, 255, 0.96),
      -18px -56px 0 rgba(42, 114, 217, 0.95),
      10px -24px 0 rgba(214, 39, 64, 0.94),
      26px -10px 0 rgba(255, 255, 255, 0.9),
      30px 16px 0 rgba(42, 114, 217, 0.92),
      12px 28px 0 rgba(255, 255, 255, 0.88),
      -12px 30px 0 rgba(214, 39, 64, 0.9),
      -28px 14px 0 rgba(255, 255, 255, 0.88),
      -26px -10px 0 rgba(42, 114, 217, 0.92),
      -10px -24px 0 rgba(255, 255, 255, 0.9),
      0 0 20px rgba(255, 255, 255, 0.68),
      0 0 34px rgba(42, 114, 217, 0.22);
    animation: llh-firework-boom 2.8s ease-out infinite;
  }

  .llh-fireworks span:nth-child(1) {
    left: 18%;
    top: 72px;
    animation-delay: 0s;
    --llh-boom-scale: .9;
  }

  .llh-fireworks span:nth-child(2) {
    left: 49%;
    top: 34px;
    animation-delay: .8s;
    --llh-boom-scale: 1.04;
  }

  .llh-fireworks span:nth-child(3) {
    left: 80%;
    top: 94px;
    animation-delay: 1.6s;
    --llh-boom-scale: .96;
  }

  @keyframes llh-firework-boom {
    0% {
      opacity: 0;
      transform: scale(0.05);
      filter: blur(0);
    }
    10% {
      opacity: 1;
    }
    28% {
      opacity: 0.98;
      transform: scale(var(--llh-boom-scale, 1));
      filter: blur(0);
    }
    46% {
      opacity: 0.36;
      transform: scale(calc(var(--llh-boom-scale, 1) * 1.16));
      filter: blur(0.25px);
    }
    64%, 100% {
      opacity: 0;
      transform: scale(calc(var(--llh-boom-scale, 1) * 1.24));
      filter: blur(0.55px);
    }
  }

  .llh-snow {
    height: 210px;
    background: transparent;
  }

  .llh-snow span {
    position: absolute;
    top: -18px;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 0 9px rgba(255, 255, 255, 0.72);
    animation: llh-snow-fall 4.8s linear infinite;
  }

  .llh-snow span:nth-child(1) { left: 3%; animation-delay: 0s; animation-duration: 4.8s; }
  .llh-snow span:nth-child(2) { left: 7%; animation-delay: .6s; animation-duration: 5.4s; width: 4px; height: 4px; }
  .llh-snow span:nth-child(3) { left: 11%; animation-delay: 1.1s; animation-duration: 4.5s; width: 7px; height: 7px; }
  .llh-snow span:nth-child(4) { left: 16%; animation-delay: .2s; animation-duration: 5.1s; }
  .llh-snow span:nth-child(5) { left: 20%; animation-delay: 1.4s; animation-duration: 4.2s; width: 4px; height: 4px; }
  .llh-snow span:nth-child(6) { left: 24%; animation-delay: .9s; animation-duration: 5.6s; }
  .llh-snow span:nth-child(7) { left: 28%; animation-delay: .1s; animation-duration: 4.6s; width: 5px; height: 5px; }
  .llh-snow span:nth-child(8) { left: 32%; animation-delay: 1.8s; animation-duration: 4.9s; }
  .llh-snow span:nth-child(9) { left: 36%; animation-delay: .4s; animation-duration: 5.2s; width: 4px; height: 4px; }
  .llh-snow span:nth-child(10) { left: 40%; animation-delay: 1.2s; animation-duration: 4.4s; }
  .llh-snow span:nth-child(11) { left: 44%; animation-delay: .7s; animation-duration: 5.7s; width: 7px; height: 7px; }
  .llh-snow span:nth-child(12) { left: 48%; animation-delay: 1.6s; animation-duration: 4.7s; }
  .llh-snow span:nth-child(13) { left: 52%; animation-delay: .3s; animation-duration: 5.3s; width: 5px; height: 5px; }
  .llh-snow span:nth-child(14) { left: 56%; animation-delay: 1.9s; animation-duration: 4.3s; }
  .llh-snow span:nth-child(15) { left: 60%; animation-delay: .8s; animation-duration: 5.0s; width: 4px; height: 4px; }
  .llh-snow span:nth-child(16) { left: 64%; animation-delay: 1.3s; animation-duration: 4.6s; }
  .llh-snow span:nth-child(17) { left: 68%; animation-delay: .2s; animation-duration: 5.5s; width: 7px; height: 7px; }
  .llh-snow span:nth-child(18) { left: 72%; animation-delay: 1.5s; animation-duration: 4.5s; }
  .llh-snow span:nth-child(19) { left: 76%; animation-delay: .5s; animation-duration: 5.4s; width: 4px; height: 4px; }
  .llh-snow span:nth-child(20) { left: 80%; animation-delay: 1.1s; animation-duration: 4.2s; }
  .llh-snow span:nth-child(21) { left: 84%; animation-delay: .1s; animation-duration: 5.1s; width: 6px; height: 6px; }
  .llh-snow span:nth-child(22) { left: 88%; animation-delay: 1.7s; animation-duration: 4.8s; }
  .llh-snow span:nth-child(23) { left: 92%; animation-delay: .6s; animation-duration: 5.6s; width: 5px; height: 5px; }
  .llh-snow span:nth-child(24) { left: 96%; animation-delay: 1.4s; animation-duration: 4.4s; }
  .llh-snow span:nth-child(25) { left: 13%; animation-delay: 2.1s; animation-duration: 4.9s; width: 4px; height: 4px; }
  .llh-snow span:nth-child(26) { left: 38%; animation-delay: 2.4s; animation-duration: 4.6s; }
  .llh-snow span:nth-child(27) { left: 57%; animation-delay: 2.2s; animation-duration: 5.2s; width: 5px; height: 5px; }
  .llh-snow span:nth-child(28) { left: 73%; animation-delay: 2.5s; animation-duration: 4.3s; }
  .llh-snow span:nth-child(29) { left: 87%; animation-delay: 2.8s; animation-duration: 5.0s; width: 7px; height: 7px; }
  .llh-snow span:nth-child(30) { left: 98%; animation-delay: 2.3s; animation-duration: 4.7s; }
  .llh-snow span:nth-child(31) { left: 5%; animation-delay: 3.0s; animation-duration: 5.5s; width: 4px; height: 4px; }
  .llh-snow span:nth-child(32) { left: 46%; animation-delay: 3.1s; animation-duration: 4.8s; }
  .llh-snow span:nth-child(33) { left: 67%; animation-delay: 3.3s; animation-duration: 5.1s; width: 5px; height: 5px; }
  .llh-snow span:nth-child(34) { left: 90%; animation-delay: 3.4s; animation-duration: 4.5s; }

  @keyframes llh-snow-fall {
    0% {
      transform: translate3d(-12px, -18px, 0);
      opacity: 0;
    }
    8% {
      opacity: 0.98;
    }
    100% {
      transform: translate3d(24px, 224px, 0);
      opacity: 0;
    }
  }

  @media (max-width: 900px) {
    .llh-holiday-effect {
      height: 120px;
    }

    .llh-snow {
      height: 138px;
    }

    .llh-fireworks span:nth-child(n+9) {
      display: none;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .llh-holiday-effect {
      display: none;
    }
  }


  /* v1.0.12 mobile polish: keep off-brand theme button styles from bleeding in, and let the podcast list scroll naturally. */
  @media (max-width: 900px) {
    .llh-header .llh-link,
    .llh-header .llh-trigger {
      background: rgba(255, 255, 255, 0.09) !important;
      color: #ffffff !important;
      border: 0 !important;
      box-shadow: none !important;
      outline: none !important;
      -webkit-tap-highlight-color: transparent;
    }

    .llh-header .llh-link:hover,
    .llh-header .llh-link:focus,
    .llh-header .llh-link:active,
    .llh-header .llh-trigger:hover,
    .llh-header .llh-trigger:focus,
    .llh-header .llh-trigger:active,
    .llh-header .llh-item:hover > .llh-trigger,
    .llh-header .llh-item.is-open > .llh-trigger {
      background: rgba(255, 255, 255, 0.15) !important;
      color: #ffffff !important;
      border-color: transparent !important;
      box-shadow: none !important;
      outline: none !important;
    }

    .llh-header .llh-menu-wrap {
      overflow: hidden;
    }

    .llh-header .llh-menu {
      flex: 1 1 auto;
      min-height: 0;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
    }

    .llh-header .llh-mega {
      max-height: none;
      overflow: visible;
    }

    .llh-header .llh-mega::after {
      display: none !important;
    }

    .llh-header .llh-mobile-expand {
      display: none !important;
    }
  }
