/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 12 2025 | 10:43:36 */
  .night-marquee {
    border-radius: 22px;
    background: #0a0d14;
    border: 1px solid rgba(255,255,255,0.12);
    color: #eaf0ff;
    overflow: hidden;
    position: relative;
    box-shadow: 0 18px 55px rgba(0,0,0,0.55);
  }

  .night-marquee::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(800px 220px at 20% 0%, rgba(0, 153, 255, 0.18), transparent 60%),
      radial-gradient(700px 240px at 90% 120%, rgba(0, 255, 170, 0.10), transparent 55%);
    pointer-events: none;
  }

  .night-row {
    display: grid;
    grid-template-columns: 170px 1fr 240px;
    align-items: center;
    gap: 18px;
    padding: 22px 22px;
    position: relative;
    z-index: 1;
  }

  .night-logo {
    width: 170px;
    height: 86px;
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .night-logo img {
    width: 72%;
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 10px 18px rgba(0,0,0,0.55));
  }

  .night-copy {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 4px 6px;
  }

  .night-kicker {
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(234,240,255,0.70);
    font-weight: 600;
  }

  .night-title {
    font-size: 1.75rem;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #f3f6ff;
  }

  .night-title span {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 999px;
    background: rgba(0,153,255,0.16);
    border: 1px solid rgba(0,153,255,0.28);
    color: #bfe6ff;
    font-weight: 900;
  }

  .night-sub {
    font-size: 0.98rem;
    color: rgba(234,240,255,0.78);
    max-width: 62ch;
  }

  .night-cta {
    justify-self: end;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .night-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #08101c;
    background: #eaf0ff;
    border: 1px solid rgba(255,255,255,0.18);
    transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
    box-shadow: 0 14px 30px rgba(0,0,0,0.35);
  }

  .night-btn:hover {
    transform: translateY(-2px);
    background: #ffffff;
    box-shadow: 0 18px 38px rgba(0,0,0,0.45);
  }

  .night-btn svg {
    width: 16px;
    height: 16px;
  }

  .night-note {
    font-size: 12px;
    color: rgba(234,240,255,0.62);
    text-align: center;
  }

  @media (max-width: 920px) {
    .night-row {
      grid-template-columns: 1fr;
      gap: 16px;
      padding: 20px 18px 18px;
      text-align: center;
    }

    .night-logo {
      width: 100%;
      height: 92px;
    }

    .night-cta {
      justify-self: stretch;
    }

    .night-title {
      font-size: 1.45rem;
    }
  }