    html {
      /* Gives you that smooth, sliding scroll effect */
      scroll-behavior: smooth; 
      
      /* Tells the browser to stop scrolling 90px before the top of the element */
      scroll-padding-top: 140px; 
    }
    /* 1. Global Color Lockdown */
    html, body, article, nav, header, footer, section {
      background-color: rgb(1, 0, 97) !important;
      color: #ededed !important;
    }

    article img {
      border: 1px solid rgb(255, 86, 86);
    }
    
    /* 2. Specific Overrides for Elements */
    h1, h2, h3, h4, h5, h6, strong {
      color: rgb(255, 86, 86) !important;
    }

    p, ul, ol, li, small, em {
      color: #ededed !important;
    }

    /* Standard Links & Hover States */
    a {
      color: #ededed !important;
      text-decoration-color: #ededed !important;
      transition: color 0.2s ease, text-decoration-color 0.2s ease;
    }

    a:hover, a:focus {
      color: rgb(255, 86, 86) !important;
      text-decoration-color: rgb(255, 86, 86) !important;
    }

    /* Ensure links inside headers retain the red-orange color */
    h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
      color: rgb(255, 86, 86) !important;
      text-decoration-color: rgb(255, 86, 86) !important;
    }

    /* Optional: Invert to the light color on hover for feedback */
    h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
      color: #ededed !important;
      text-decoration-color: #ededed !important;
    }

    .active-nav-item {
      font-weight: bold;
      text-decoration: underline;
      text-underline-offset: 4px;
      color: rgb(255, 86, 86) !important;
      text-decoration-color: rgb(255, 86, 86) !important;
    }

    /* 3. Structural Defaults */
    :root {
      --pico-font-family: "Courier New", Courier, monospace;
      --pico-border-radius: 0;
      --pico-box-shadow: none;
      --pico-block-spacing-vertical: 4rem;
      --pico-block-spacing-horizontal: 2rem;
    }

    /* 4. Borders, Tables, Quotes & Inputs */
    hr {
      border-color: rgb(255, 86, 86) !important;
    }

    table, th, td, tr, tbody, thead {
      border-color: rgb(255, 86, 86) !important;
      color: #ededed !important;
      background-color: transparent !important;
    }

    blockquote {
      border-left: 4px solid rgb(255, 86, 86) !important;
      background-color: transparent !important;
    }
    
    label {
      color: #ededed !important;
    }

    input, textarea, select {
      background-color: transparent !important;
      border: 1px solid rgb(255, 86, 86) !important;
      color: #ededed !important;
      border-radius: 0 !important;
    }

    input:focus, textarea:focus, select:focus {
      border-color: #ededed !important;
      outline: none !important;
      box-shadow: none !important; 
    }
    
    input::placeholder, textarea::placeholder {
      color: rgb(255, 86, 86) !important;
      opacity: 0.7;
    }

    button, [type="submit"] {
      background-color: rgb(255, 86, 86) !important;
      color: rgb(1, 0, 97) !important;
      border: none !important;
      border-radius: 0 !important;
      text-transform: uppercase;
      font-weight: bold;
      cursor: pointer;
      transition: opacity 0.2s ease;
    }

    button:hover, [type="submit"]:hover {
      opacity: 0.8;
    }

    .btn {
      /* Anchor tag resets to behave like a button */
      display: inline-block;
      text-decoration: none;
      padding: 10px 20px; /* Adjust this to match your other buttons */
      text-align: center;
      font-family: inherit;

      /* Your exact styles */
      background-color: rgb(255, 86, 86) !important;
      color: rgb(1, 0, 97) !important;
      border: none !important;
      border-radius: 0 !important;
      text-transform: uppercase;
      font-weight: bold;
      cursor: pointer;
      transition: opacity 0.2s ease;
    }

    .btn:hover {
      opacity: 0.8;
      color: rgb(1, 0, 97) !important;
    }

    .btn:focus {
      color: rgb(1, 0, 97) !important;
    }

    .btn-inverse {
      background-color: rgb(1, 0, 97) !important;
      color: #ffffff !important;
      border: 1px solid rgb(255, 86, 86) !important;
    }

    .btn-inverse:hover {
      background-color: rgb(255, 86, 86) !important;
      color: rgb(1, 0, 97) !important;
      border: 1px solid rgb(1, 0, 97) !important; /* Swaps to deep blue on hover */
      opacity: 1;
    }

    /* 5. Custom Component Layouts */
    .cinematic-hero {
      height: 70vh;
      background-color: rgb(255, 86, 86) !important;
      display: flex;
      align-items: flex-end;
      padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
      margin-bottom: var(--pico-block-spacing-vertical);
      border-bottom: 2px solid rgb(255, 86, 86);
    }

    .cinematic-hero h1 {
      margin: 0;
      color: rgb(1, 0, 97) !important; 
      background: rgb(255, 86, 86) !important;
      padding: 0.5rem 1rem;
    }

    .masonry-grid {
      column-count: 1;
      column-gap: 1rem;
    }
    @media (min-width: 768px) { .masonry-grid { column-count: 2; } }
    @media (min-width: 1024px) { .masonry-grid { column-count: 3; } }
    
    .masonry-grid img {
      width: 100%;
      margin-bottom: 1rem;
      display: block;
      border: 1px solid rgb(255, 86, 86);
    }

    .two-column-text {
      column-count: 1;
      column-gap: 2rem;
    }
    @media (min-width: 768px) { .two-column-text { column-count: 2; } }

    .horizontal-slider {
      display: flex;
      overflow-x: auto;
      gap: 1rem;
      padding-bottom: 1rem;
      scroll-snap-type: x mandatory;
    }
    .horizontal-slider img {
      height: 400px;
      width: auto;
      scroll-snap-align: start;
      border: 1px solid rgb(255, 86, 86);
    }

    .component-divider {
      border-top: 4px solid rgb(255, 86, 86);
      margin: 6rem 0;
    }

    /* 6. Hero Header - Chunky Block Buttons */
    #hero-header nav {
      display: flex !important;
      justify-content: center !important;
      width: 100%;
      margin-top: 3rem;
    }
    
    #hero-header nav ul {
      display: flex !important;
      justify-content: center !important;
      gap: 1.5rem;
      padding: 0;
      margin: 0;
      flex-wrap: wrap; 
    }

    #hero-header nav li {
      list-style: none;
      padding: 0;
    }

    #hero-header nav a {
      display: block;
      background-color: rgb(1, 0, 97) !important;
      color: rgb(255, 86, 86) !important;
      border: 2px solid rgb(255, 86, 86) !important;
      padding: 1rem 2rem;
      font-weight: bold;
      text-transform: uppercase;
      text-decoration: none !important;
      transition: all 0.2s ease;
    }

    /* Hero Buttons: Invert to solid red-orange on hover, focus, and active state */
    #hero-header nav a:hover,
    #hero-header nav a:focus,
    #hero-header nav a.active-nav-item {
      background-color: rgb(255, 86, 86) !important;
      color: rgb(1, 0, 97) !important;
    }

/* 7. Sticky Header & Mobile Nav Logic */
    #sticky-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background-color: rgb(1, 0, 97) !important;
      z-index: 100;
      transform: translateY(-100%);
      transition: transform 0.3s ease-in-out;
      border-bottom: 2px solid rgb(255, 86, 86);
      padding: 0.25rem 0 !important; /* Drastically reduced vertical padding */
    }

    #sticky-header nav,
    #sticky-header nav ul {
      align-items: center;
      margin-bottom: 0 !important; /* Strips Pico's default bottom spacing */
      padding-top: 0 !important; 
      padding-bottom: 0 !important; 
    }

    #sticky-header.is-scrolled {
      transform: translateY(0);
    }
    
    /* Typographic Dominance for the Brand Title */
    .brand-title {
      color: rgb(255, 86, 86) !important;
      white-space: nowrap; 
      font-size: 1.5rem;
      font-weight: 900;
      letter-spacing: -0.02em;
      text-decoration: none !important; /* Removes default link underline */
    }

    /* Inverts to the light color on hover for click feedback */
    .brand-title:hover, .brand-title:focus {
      color: #ededed !important;
    }

    /* Mini Utility Buttons for Sticky Header */
    #sticky-header .nav-links {
      gap: 0.5rem;
    }

    #sticky-header .nav-links li {
      list-style: none;
      padding: 0 !important;
      margin: 0 !important; /* Strips Pico's default trailing margins */
    }

    #sticky-header .nav-links a {
      display: block;
      text-align: center; /* Forces exact text centering */
      margin: 0 !important;
      background-color: rgb(1, 0, 97) !important;
      color: rgb(255, 86, 86) !important;
      border: 1px solid rgb(255, 86, 86) !important;
      padding: 0.35rem 0.75rem !important; /* Overrides Pico's internal link padding */
      font-size: 0.75rem;
      font-weight: bold;
      text-transform: uppercase;
      text-decoration: none !important;
      transition: all 0.2s ease;
    }

    #sticky-header .nav-links a:hover,
    #sticky-header .nav-links a:focus,
    #sticky-header .nav-links a.active-nav-item {
      background-color: rgb(255, 86, 86) !important;
      color: rgb(1, 0, 97) !important;
    }

    /* Mobile Overlay Menu Styling */
    .hamburger, .mobile-close {
      display: none;
      background: transparent !important;
      border: none !important;
      color: rgb(255, 86, 86) !important;
    }

    .hamburger {
      font-size: 1.5rem;
      padding: 0.5rem 1rem;
    }

    .mobile-close {
      position: absolute;
      top: 1rem;
      right: 1.5rem;
      font-size: 3rem;
      padding: 0;
      line-height: 1;
    }

    @media (max-width: 768px) {
      .hamburger {
        display: block; 
      }
      
      #sticky-header .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgb(1, 0, 97) !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        opacity: 0;
        pointer-events: none; 
        transition: opacity 0.3s ease;
        margin: 0;
      }

      #sticky-header .nav-links.is-open {
        opacity: 1;
        pointer-events: auto;
      }
      
      #sticky-header .nav-links li {
        margin: 1.5rem 0;
        width: 80%; /* Ensure buttons span nicely on mobile */
        text-align: center;
      }

      /* Scale utility buttons up into massive chunky blocks on mobile */
      #sticky-header .nav-links a {
        font-size: 1.5rem;
        padding: 1rem 2rem;
        border: 2px solid rgb(255, 86, 86) !important;
      }

      #sticky-header .mobile-close {
        display: block; 
      }
    }

    /* 8. Tab Component Styles */
    .tab-component {
      border: 1px solid rgb(255, 86, 86);
      margin-bottom: 4rem;
    }
    
    .tab-buttons {
      display: flex;
      border-bottom: 1px solid rgb(255, 86, 86);
    }
    
    .tab-btn {
      flex: 1;
      background-color: transparent !important;
      color: rgb(255, 86, 86) !important;
      border: none !important;
      border-right: 1px solid rgb(255, 86, 86) !important;
      padding: 1rem;
      cursor: pointer;
      font-weight: bold;
      text-transform: uppercase;
      border-radius: 0 !important;
      transition: all 0.2s ease;
    }
    
    .tab-btn:last-child {
      border-right: none !important;
    }
    
    .tab-btn:hover, .tab-btn.active {
      background-color: rgb(255, 86, 86) !important;
      color: rgb(1, 0, 97) !important;
    }
    
    .tab-panel {
      display: none;
      padding: 2rem;
    }
    
    .tab-panel.active {
      display: block;
    }

    /* 9. Decorative Image Sections */
    .image-only-section {
      display: block;
      line-height: 0;
      font-size: 0;
      padding: 0; /* Overrides default Pico section padding */
    }

    .image-only-section img {
      display: block;
      height: auto;
      margin: 0 auto 0 auto; 
    }

    /* Margin utility classes for mix-and-match control */
    .margin-none { margin: 0 !important; }
    .margin-top { margin-top: 4rem !important; }
    .margin-bottom { margin-bottom: 4rem !important; }

.center-button {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

.red-border {
        border: 1px solid rgb(255, 86, 86) !important;
}

.responsive-iframe {
  width: 100%;
  max-width: 800px; /* Set this to your maximum desired width */
  height: auto;
  aspect-ratio: 16 / 9; /* Standard YouTube video ratio */
}