
  @import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&family=Roboto:wght@400;700&display=swap');

  :root {
    --primary: #ffffff;
    --accent: #ff4500;
    --bg-dark: #1a1a1a;
  }

  * { box-sizing: border-box; }

  html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    overscroll-behavior: none;
    touch-action: none;
    -webkit-overflow-scrolling: auto;
    background-color: var(--bg-dark);
    color: var(--primary);
    font-family: 'Roboto', sans-serif;
  }

  .header {
    text-align: center;
    padding: 70px 20px 30px; /* added top padding to account for top bar */
  }

  .header h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--accent);
    margin: 0;
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.9);
    line-height: 1.1;
  }

  .header p {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin: 10px 0 0 0;
    color: #e0e0e0;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.9);
  }

  .top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    z-index: 2000;
    flex-wrap: wrap;
    gap: 8px;
    pointer-events: none;
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
  }
  
  .top-bar > * {
    pointer-events: auto;
  }

  .course-name-badge {
    background: rgba(0,0,0,0.5); 
    padding: 4px 8px; 
    border-radius: 4px; 
    font-size: 0.75rem; 
    color: #ccc; 
    max-width: 120px; 
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis; 
    border: 1px solid #444;
  }

  .top-bar-icons {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .top-bar .control-btn {
    padding: 6px 12px;
    font-size: 0.9rem;
  }

  /* Offset Leaflet Controls to avoid top bar */
  .leaflet-top {
    margin-top: 60px !important;
  }

  .recenter-btn {
    background: rgba(0,0,0,0.5);
    display: inline-block;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.9rem;
    color: #00e676;
    border: 1px solid #00e676;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    white-space: nowrap;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: background 0.2s, transform 0.2s;
  }
  
  .recenter-btn:hover {
    background: rgba(0, 230, 118, 0.2);
  }

  .recenter-btn:active {
    transform: scale(0.95);
  }
  
  .dist-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px !important;
    height: 18px !important;
    margin-left: -9px !important;
    margin-top: -9px !important;
    background-color: #ffaa00 !important;
    color: #000;
    border-radius: 50%;
    font-size: 0.6rem;
    transition: all 0.2s ease-in-out;
    border: none !important;
  }
  .dist-marker.passed-marker {
    background-color: #b39ddbcc !important;
    font-size: 0.5rem !important;
    width: 20px !important;
    height: 20px !important;
    margin-left: -10px !important;
    margin-top: -10px !important;
  }
  
  #leaflet-map.zoom-out .dist-marker {
    display: none !important;
  }
  #leaflet-map.zoom-out .dist-marker.km-5,
  #leaflet-map.zoom-out .dist-marker.km-last {
    display: flex !important;
    width: 10.8px !important;
    height: 10.8px !important;
    margin-left: -5.4px !important;
    margin-top: -5.4px !important;
    font-size: 0.4rem;
  }
  #leaflet-map.zoom-out .dist-marker.passed-marker.km-5,
  #leaflet-map.zoom-out .dist-marker.passed-marker.km-last {
    width: 12px !important;
    height: 12px !important;
    margin-left: -6px !important;
    margin-top: -6px !important;
  }
  
  #leaflet-map.zoom-in .dist-marker {
    width: 24px !important;
    height: 24px !important;
    margin-left: -12px !important;
    margin-top: -12px !important;
    font-size: 0.8rem;
  }
  #leaflet-map.zoom-in .dist-marker.passed-marker {
    width: 25px !important;
    height: 25px !important;
    margin-left: -12.5px !important;
    margin-top: -12.5px !important;
    font-size: 0.7rem !important;
  }

  .tips-section {
    max-width: 800px;
    margin: 0 auto 60px;
    background: rgba(20, 20, 20, 0.85);
    border-left: 5px solid var(--accent);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    width: 90%;
  }

  .tips-section h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    margin: 0 0 15px 0;
    color: var(--accent);
    text-transform: uppercase;
  }

  .tips-section ul {
    font-size: 1.1rem;
    line-height: 1.6;
    padding-left: 20px;
    margin: 0;
    color: #f0f0f0;
  }

  .tips-section li {
    margin-bottom: 8px;
  }

  .last-seen-badge {
    grid-column: 1 / span 3;
    text-align: center;
    font-size: 0.75rem;
    color: #aaa;
    background: transparent;
    padding: 2px 0;
    margin-top: -5px;
    border: none;
    box-shadow: none;
  }

  .last-seen-badge.badge-error {
    color: #ff5555;
  }
  
  .last-seen-badge.badge-stale {
    color: #ff9800;
    font-weight: 500;
  }
  
  .badge-error {
    border-color: #ff3333;
    color: #ff3333;
    box-shadow: 0 0 10px #ff3333;
  }

  /* TELEMETRY PANEL */
  .telemetry-panel {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    background: rgba(20, 20, 20, 0.9);
    border-top: 2px solid var(--accent);
    padding: 10px 5px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    touch-action: none;
    overscroll-behavior: none;
    user-select: none;
    -webkit-user-select: none;
  }

  .metric-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(40, 40, 40, 0.8);
    padding: 8px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 69, 0, 0.3);
    min-width: 90px;
  }

  .metric-value {
    font-family: 'Roboto', sans-serif;
    font-size: 1.6rem;
    color: #0f0;
    font-weight: bold;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
  }

  .metric-label {
    font-size: 0.75rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
  }

  /* Push last seen badge up so it doesn't overlap telemetry */
  @media (min-width: 768px) {
    .telemetry-panel ~ .last-seen-badge {
      bottom: 120px;
    }
  }

  /* MODALS & CONTROLS */
  .control-btn {
    background: rgba(40, 40, 40, 0.9);
    border: 1px solid var(--accent);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    box-shadow: 0 0 10px rgba(255, 69, 0, 0.3);
    transition: background 0.3s, box-shadow 0.3s;
  }
  .control-btn:hover {
    background: rgba(255, 69, 0, 0.2);
    box-shadow: 0 0 15px rgba(255, 69, 0, 0.6);
  }

  /* HERO LANDING (NOT LOGGED IN) */
  .hero-landing {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    z-index: 1800;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    background-image: linear-gradient(135deg, rgba(11, 15, 25, 0.8) 0%, rgba(11, 15, 25, 0.35) 35%, rgba(11, 15, 25, 0) 65%), url('hero.jpg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    padding: clamp(24px, 5vh, 48px) clamp(24px, 5vw, 56px);
  }

  .hero-content {
    max-width: 440px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    animation: fadeIn 0.4s ease;
  }

  .hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    margin: 0;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.95);
    line-height: 1.05;
  }

  .hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    color: #f1f5f9;
    margin: 8px 0 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95);
    font-weight: 500;
    line-height: 1.35;
  }

  .hero-track-btn {
    background: linear-gradient(135deg, #ff5722, #e64a19);
    color: #ffffff;
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.5);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  }

  .hero-track-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(255, 87, 34, 0.7);
    filter: brightness(1.1);
  }

  .hero-track-btn:active {
    transform: translateY(1px);
  }

  @media (max-width: 767px) {
    .hero-landing {
      padding: 28px 20px;
      background-image: linear-gradient(180deg, rgba(11, 15, 25, 0.82) 0%, rgba(11, 15, 25, 0.4) 40%, rgba(11, 15, 25, 0) 70%), url('hero.jpg');
      background-position: 60% center;
    }

    .hero-content {
      max-width: 100%;
    }

    .hero-title {
      font-size: clamp(2.2rem, 9vw, 3rem);
    }

    .hero-subtitle {
      margin: 6px 0 16px;
      font-size: clamp(0.9rem, 3.5vw, 1.05rem);
    }

    .hero-track-btn {
      padding: 12px 28px;
      font-size: 1.15rem;
    }
  }

  .track-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(0,0,0,0.85);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 10px 20px;
    border-radius: 8px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 0 10px rgba(255, 69, 0, 0.5);
    backdrop-filter: blur(5px);
  }

  #activity-state-badge {
    background: rgba(40, 40, 40, 0.9);
    backdrop-filter: blur(5px);
    display: none;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #888;
    border: 1px solid #555;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    white-space: nowrap;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: transform 0.15s ease, filter 0.15s ease;
  }
  #activity-state-badge:hover {
    filter: brightness(1.15);
    transform: scale(1.02);
  }
  #activity-state-badge:active {
    transform: scale(0.98);
  }
  #activity-state-badge.active {
    color: #00ff88;
    border-color: #00e676;
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.3);
  }
  #activity-state-badge.paused {
    color: #ffaa00;
    border-color: #ffaa00;
    box-shadow: 0 0 10px rgba(255, 170, 0, 0.3);
  }
  #activity-state-badge.finished {
    background: rgba(40, 40, 40, 0.9) !important;
    backdrop-filter: blur(5px);
    color: #00ff88 !important;
    border: 1px solid #00e676 !important;
    box-shadow: 0 0 12px rgba(0, 230, 118, 0.4) !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    padding: 6px 12px !important;
    border-radius: 8px !important;
    letter-spacing: 0.6px !important;
    animation: pulse-green 2s infinite;
  }

  .modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
  }

  .modal-content {
    background-color: #222;
    margin: 5% auto;
    max-height: 90vh;
    overflow-y: auto;
    padding: 20px;
    border: 1px solid var(--accent);
    border-radius: 12px;
    width: 80%;
    max-width: 600px;
    color: white;
    text-align: center;
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.4);
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .modal-content h2 {
    margin-block-end: 0.5rem;
    margin-block-start: 0.5rem;
  }
  
  #eta-modal .modal-content {
    max-width: 700px;
  }

  .wpt-icon {
    font-size: 1.5rem !important;
    text-align: center;
    line-height: 1;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.8));
    width: 24px !important;
    height: 24px !important;
    margin-left: -12px !important;
    margin-top: -12px !important;
    background: transparent !important;
    border: none !important;
    transition: all 0.2s ease-in-out;
  }
  
  #leaflet-map.zoom-out .wpt-icon {
    width: 14.4px !important;
    height: 14.4px !important;
    margin-left: -7.2px !important;
    margin-top: -7.2px !important;
    font-size: 0.9rem !important;
  }
  
  #leaflet-map.zoom-in .wpt-icon {
    width: 32px !important;
    height: 32px !important;
    margin-left: -16px !important;
    margin-top: -16px !important;
    font-size: 2rem !important;
  }

  .wpt-tooltip {
    background-color: #222;
    color: #fff;
    border: 1px solid #555;
    border-radius: 4px;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0,0,0,0.4);
  }
  .wpt-tooltip::before {
    border-top-color: #555;
  }

  .dist-marker {
    background-color: rgba(255, 170, 0, 0.55);
    color: #1a202c;
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: 50%;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.6);
  }

  .modal-input, .modal-select {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
    background: #333;
    border: 1px solid #555;
    color: white;
    border-radius: 6px;
  }
  
  /* Hide Number Spinners */
  input[type=number]::-webkit-inner-spin-button, 
  input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none; 
    margin: 0; 
  }
  input[type=number] {
    -moz-appearance: textfield;
  }

  /* --- CLEAN DEVICE SETTINGS UI --- */

  .config-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
  }

  .config-row-stacked {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 6px;
  }

  .config-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    border-bottom: 1px solid #444;
    padding-bottom: 4px;
  }
  .config-section-header:first-of-type {
    margin-top: 10px;
  }

  .config-section-title {
    color: var(--accent);
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 6px;
    text-align: left;
    margin-top: 20px;
    border-bottom: 1px solid #444;
    padding-bottom: 4px;
  }
  
  .config-section-header .config-section-title {
    margin-top: 0;
    border-bottom: none;
    padding-bottom: 0;
  }

  .file-upload-container {
    display: flex;
    width: 100%;
    align-items: center;
  }

  .file-loaded-container {
    gap: 8px;
    width: 100%;
    align-items: center;
    background: rgba(0,0,0,0.2);
    padding: 4px 8px;
    border-radius: 6px;
    margin-top: 8px;
  }

  .filename-display {
    flex-grow: 1;
    font-family: monospace;
    font-size: 0.85rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .btn-upload-label {
    cursor: pointer;
    padding: 6px 12px !important;
    width: auto;
    display: inline-block;
  }
  
  .info-icon {
    font-size: 0.8rem;
    color: #888;
    cursor: help;
    position: relative;
    display: inline-block;
    margin-left: 4px;
  }
  
  .info-icon:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: #222;
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    white-space: normal;
    width: max-content;
    max-width: 200px;
    z-index: 1000;
    pointer-events: none;
    border: 1px solid #555;
    box-shadow: 0 4px 6px rgba(0,0,0,0.5);
    text-align: center;
  }

  .config-row label {
    font-size: 0.92rem;
    font-weight: 500;
  }

  .modal-select-inline {
    width: auto;
    min-width: 140px;
    padding: 6px 12px;
    margin: 0;
    background: #333;
    border: 1px solid #555;
    color: white;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
  }

  .modal-actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 14px;
  }

  .btn-save, .btn-cancel {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    flex: 1;
  }
  
  .btn-save {
    background-color: var(--accent);
    color: white;
  }

  .btn-cancel {
    background-color: #555;
    color: white;
  }

  /* iOS Toggle Switch */
  .switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
  }
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #555;
    transition: .4s;
  }
  .slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
  }
  input:checked + .slider {
    background-color: #0f0;
  }
  input:checked + .slider:before {
    transform: translateX(26px);
  }
  .slider.round {
    border-radius: 24px;
  }
  .slider.round:before {
    border-radius: 50%;
  }
  
  input:disabled + .slider {
    opacity: 0.5;
    cursor: not-allowed;
  }

  .metric-unit {
    font-size: 0.55em;
    color: #aaa;
    font-weight: 500;
    margin-left: 1px;
  }

  .help-text {
    font-size: 0.8rem;
    color: #aaa;
    margin-top: 10px;
  }

  /* Leaflet Blinking Blue Dot */
  .leaflet-blue-dot {
    width: 15px;
    height: 15px;
    background-color: #4285F4;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 10px rgba(66, 133, 244, 0.8);
    animation: pulse-blue 1.5s infinite;
  }

  @keyframes pulse-blue {
    0% {
      box-shadow: 0 0 0 0 rgba(66, 133, 244, 0.7);
    }
    70% {
      box-shadow: 0 0 0 15px rgba(66, 133, 244, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(66, 133, 244, 0);
    }
  }

  /* Leaflet Blinking Green Dot */
  .leaflet-green-dot {
    width: 15px;
    height: 15px;
    background-color: #00e676;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.8);
    animation: pulse-green 1.5s infinite;
  }

  @keyframes pulse-green {
    0% {
      box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7);
    }
    70% {
      box-shadow: 0 0 0 15px rgba(0, 230, 118, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(0, 230, 118, 0);
    }
  }

  .runner-tooltip {
    background-color: rgba(0, 0, 0, 0.5) !important;
    color: #ddd !important;
    border: none !important;
    border-radius: 6px !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    font-variant-numeric: tabular-nums;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3) !important;
  }
  .leaflet-tooltip-top.runner-tooltip:before {
    border-top-color: transparent !important;
  }
  
  #leaflet-map.zoom-out .runner-tooltip {
    font-size: 0.55rem !important;
    padding: 2px 4px !important;
  }
  

  /* Toast Notification */
  .toast {
    position: fixed;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 69, 0, 0.9);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    z-index: 3000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(0,0,0,0.6);
  }
  .toast.show {
    opacity: 1;
  }


/* Push leaflet bottom controls above telemetry dashboard */
.leaflet-control-container,
.leaflet-bottom {
    bottom: 0 !important;
    z-index: 2000 !important;
    transition: padding-bottom 0.2s ease-in-out;
}

#gps-drift-badge {
  background: rgba(255, 69, 0, 0.15);
  display: inline-block;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 0.9rem;
  color: #ff4500;
  border: 1px solid #ff4500;
  font-family: 'Oswald', sans-serif;
  font-weight: bold;
  white-space: nowrap;
  animation: pulse-flash 1.5s infinite;
}

#off-course-badge {
  background: rgba(255, 0, 0, 0.15);
  display: inline-block;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 0.9rem;
  color: #ff3333;
  border: 1px solid #ff3333;
  font-family: 'Oswald', sans-serif;
  font-weight: bold;
  white-space: nowrap;
  animation: pulse-flash 1.5s infinite;
}

@keyframes pulse-flash {
  0% { opacity: 0.6; }
  50% { opacity: 1.0; }
  100% { opacity: 0.6; }
}

#box-eta {
  cursor: pointer;
}

.leaflet-control-attribution {
  display: none !important;
}

#crew-tips-list h1, #crew-tips-list h2, #crew-tips-list h3 {
  margin-block: 10px 4px;
  font-family: 'Oswald', sans-serif;
  color: var(--accent);
  text-align: left;
}
#crew-tips-list h1 { font-size: 1.4rem; }
#crew-tips-list h2 { font-size: 1.2rem; }
#crew-tips-list h3 { font-size: 1.1rem; }

#crew-tips-list p {
  margin-block: 4px 10px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ddd;
}

#crew-tips-list li {
  list-style-type: disc;
  margin-left: 20px;
  margin-block: 4px;
  font-size: 0.95rem;
  color: #ddd;
  display: list-item;
}

