body {
    background-color: #0A192F !important; /* Premium Sapphire fallback */
    background-image: url('/assets/media/2026/02/20260207_160837-V12-performance.webp') !important;
    background-attachment: fixed !important;
    background-size: cover !important;
    background-position: center center !important;
    margin: 0 !important;
  }

@media (max-width: 768px) {
  body {
    background-image: url('/assets/media/2026/02/episodes-background-mobile.webp') !important;
  }
}

.gt-vessel-sub {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    margin: 20px 0;
    /* This matches your main page exactly */
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    z-index: 9999;
  }

  .gt-menu-item {
    position: relative;
    display: inline-block;
  }

  /* The Hover Trigger */
  .gt-menu-item:hover .gt-dropdown {
    display: block;
  }

  .gt-btn {
    background-color: #2e7d32; /* Logo Green */
    color: #ffffff;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1.5px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    text-transform: uppercase;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    transition: 0.5s;
  }

  .gt-btn:hover {
    background-color: #1b5e20;
  }

  .gt-dropdown {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%); /* Keeps it perfectly centered under the button */
    background-color: #2e7d32;
    min-width: 220px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    margin-top: 0; 
  }

  .gt-dropdown a {
    color: #ffffff;
    padding: 14px 20px;
    text-decoration: none;
    display: block;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .gt-dropdown a:hover {
    background-color: #1b5e20;
  }

/* 1. THE BIG "COMING SOON" (Already good, but added centering safety) */
  .hero-coming-soon {
    font-family: 'Georgia', Times, serif !important;
    font-size: 85px !important;
    font-style: italic !important;
    color: #ffffff !important;
    text-align: center !important;
    margin: 0 auto !important;
    width: 100% !important;
    display: block !important;
  }

  /* 2. THE FOOTER TAGLINE - THE CENTERING FIX */
  .footer-tagline { 
    font-family: 'Georgia', Times, serif !important;
    font-size: 22px !important; 
    font-style: italic !important; 
    color: #1b5e20 !important;
    text-transform: none !important; 
    letter-spacing: normal !important;
    white-space: nowrap !important; /* Keeps it on one line */
    margin: 0 !important;
    display: block !important; /* Changed to block for easier centering */
    text-align: center !important;
  }

  /* 3. THE HORIZONTAL LINE CONTAINER */
  .garage-signoff {
    display: flex;
    flex-direction: column;
    align-items: center;      /* THE KEY: Forces everything to the dead center */
    justify-content: center;
    margin-top: 50px;
    width: 100% !important;   /* Full width so 'center' has meaning */
  }

  /* 4. THE LINE ITSELF (Separate from the text for perfect control) */
  .garage-signoff::before {
    content: "";
    width: 300px;             /* Length of the horizontal line */
    border-top: 1px solid rgba(255,255,255,0.4);
    margin-bottom: 90px;      /* Gap between line and text */
  }

  /* Mobile Fix: Shrinks text so it doesn't leak off the phone screen */
  @media (max-width: 768px) {
    .hero-coming-soon { font-size: 40px !important; }
    .footer-tagline { font-size: 18px !important; white-space: normal !important; }
    .garage-signoff::before { width: 150px; }
  }
