body {
  min-height: 100vh;
  background: #1a0b2e;
  color: #fff;
  font-family: Outfit, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

.rayist-shell {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  overflow: hidden;
}

.rayist-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(to bottom, rgba(26, 11, 46, 0.9), rgba(26, 11, 46, 0.95)),
    url("https://media.istockphoto.com/id/503460700/tr/foto%C4%9Fraf/subway-istanbul.jpg?s=612x612&w=0&k=20&c=q8XMHamwoIhxta3HVm-r-CTQfSOgOTrDgC9d7CFDKSE=");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: blur(2px);
  transform: scale(1.02);
}

.rayist-shell::after {
  content: "";
  position: fixed;
  inset: auto 0 0;
  z-index: -2;
  height: min(42vh, 400px);
  background:
    linear-gradient(to top, rgba(26, 11, 46, 0.9), rgba(26, 11, 46, 0.12) 72%, transparent),
    url("https://upload.wikimedia.org/wikipedia/commons/4/4e/Istanbul_skyline_silhouette.svg");
  background-position: bottom center;
  background-size: cover;
  opacity: 0.22;
  pointer-events: none;
}

.rayist-shell > nav,
.rayist-shell > main,
.rayist-shell > footer {
  position: relative;
}

.rayist-shell > nav {
  z-index: 10000;
}

.rayist-shell > main,
.rayist-shell > footer {
  z-index: 1;
}

.rayist-shell > main {
  min-height: calc(100vh - 164px);
}

.rayist-shell > main::before {
  content: "";
  position: fixed;
  left: 14%;
  right: 14%;
  bottom: 31vh;
  z-index: -1;
  height: 150px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 0 0 50% 50%;
  box-shadow:
    -30vw 78px 0 -74px rgba(255, 255, 255, 0.2),
    30vw 78px 0 -74px rgba(255, 255, 255, 0.2),
    0 2px 22px rgba(255, 217, 61, 0.16);
  opacity: 0.6;
  pointer-events: none;
}

.rayist-shell > footer::before {
  content: "";
  position: fixed;
  left: -45vw;
  bottom: 24px;
  z-index: -1;
  width: 880px;
  max-width: none;
  height: 72px;
  border-bottom: 4px solid rgba(255, 255, 255, 0.38);
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.55) 50%, transparent 100%) 0 58px / 100% 4px no-repeat,
    repeating-linear-gradient(90deg, #d7d7d7 0 86px, #95a5a6 86px 88px, #d7d7d7 88px 174px);
  border-radius: 8px 80px 18px 8px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.55);
  opacity: 0.32;
  animation: rayistTrainPass 18s linear infinite;
  pointer-events: none;
}

@keyframes rayistTrainPass {
  from { transform: translateX(-10vw); }
  to { transform: translateX(170vw); }
}

.glass-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.glass-input {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 6, 22, 0.72);
  color: #fff;
  padding: 14px 16px;
  outline: none;
}

input[type="time"].glass-input {
  display: block;
  width: min(100%, 220px);
  min-inline-size: 0;
  color-scheme: dark;
  max-width: 100%;
  height: 54px;
  padding: 12px 10px;
  line-height: 1.2;
  font-size: 16px;
  appearance: none;
  -webkit-appearance: none;
}

input[type="time"].glass-input::-webkit-datetime-edit,
input[type="time"].glass-input::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}

input[type="time"].glass-input::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.82;
  margin: 0;
  padding: 0;
}

.glass-input:focus {
  border-color: rgba(255, 217, 61, 0.7);
  box-shadow: 0 0 0 4px rgba(255, 217, 61, 0.12);
}

.rayist-btn {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 217, 61, 0.35);
  background: rgba(255, 217, 61, 0.08);
  color: #fff;
  font-weight: 900;
  padding: 14px 18px;
  box-shadow: 0 0 0 rgba(255, 217, 61, 0);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.rayist-btn::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -100%;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transition: left 0.5s ease;
}

.rayist-btn:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 217, 61, 0.6);
  background: rgba(255, 217, 61, 0.15);
  box-shadow: 0 0 30px rgba(255, 217, 61, 0.24);
}

.rayist-btn:hover::before {
  left: 100%;
}

.rayist-btn:disabled {
  cursor: not-allowed;
  opacity: 0.65;
  transform: none;
  box-shadow: none;
}

.rayist-btn-blue {
  border-color: rgba(56, 189, 248, 0.42);
  background: rgba(14, 116, 144, 0.16);
}

.rayist-btn-blue:hover {
  border-color: rgba(56, 189, 248, 0.72);
  background: rgba(14, 116, 144, 0.26);
  box-shadow: 0 0 30px rgba(56, 189, 248, 0.24);
}

.route-preview-map {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 217, 61, 0.18), transparent 26%),
    radial-gradient(circle at 78% 68%, rgba(255, 107, 107, 0.18), transparent 30%),
    linear-gradient(145deg, rgba(10, 6, 22, 0.92), rgba(26, 11, 46, 0.62));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 24px 70px rgba(0,0,0,0.24);
}

.route-preview-map.is-live-locked .route-google-map,
.route-preview-map.is-live-locked .route-path,
.route-preview-map.is-live-locked .route-station,
.route-preview-map.is-live-locked .route-live-vehicle {
  filter: blur(8px) saturate(0.45) brightness(0.68);
}

.route-preview-map.is-live-locked::after {
  content: "Önizleme hakkınız doldu. Sınırsız canlı takip için uygulamayı indirin, Premium olun.";
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(2, 6, 23, 0.48);
  color: white;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
  backdrop-filter: blur(2px);
}

.route-map-loading {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: grid;
  place-items: center;
  gap: 10px;
  background: rgba(2, 6, 23, 0.58);
  color: white;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  backdrop-filter: blur(6px);
}

.route-map-loading.hidden {
  display: none;
}

.route-map-loading i {
  font-size: 24px;
  color: #ffd93d;
}

.route-map-fullscreen-btn {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 7;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(2,6,23,0.72);
  color: white;
  box-shadow: 0 12px 28px rgba(0,0,0,0.3);
  backdrop-filter: blur(12px);
}

.route-map-fullscreen-btn:hover {
  background: rgba(15,23,42,0.88);
}

#liveMapCard.route-map-fullscreen {
  position: fixed;
  inset: 12px;
  z-index: 2147483000;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 10px;
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.96);
}

#liveMapCard.route-map-fullscreen .route-preview-map {
  min-height: 0;
  flex: 1;
  border-radius: 20px;
}

#liveMapCard.route-map-fullscreen .route-preview-map + div {
  max-height: 42vh;
  overflow-y: auto;
}

body.route-map-fullscreen-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .route-preview-map {
    min-height: 330px;
    border-radius: 24px;
  }

  #liveMapCard.route-map-fullscreen {
    inset: 0;
    border-radius: 0;
    padding: 8px;
  }

  #liveMapCard.route-map-fullscreen .route-preview-map {
    border-radius: 18px;
  }

  .route-map-fullscreen-btn {
    right: 12px;
    top: 12px;
    width: 38px;
    height: 38px;
  }
}

.route-google-map {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.route-preview-map.has-google-map .route-google-map {
  opacity: 1;
}

.route-preview-map.has-google-map .route-path,
.route-preview-map.has-google-map .route-station,
.route-preview-map.has-google-map .route-live-vehicle,
.route-preview-map.has-google-map::before {
  opacity: 0;
  pointer-events: none;
}

.route-preview-map.has-google-map::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(10,6,22,0.28), transparent 34%, rgba(10,6,22,0.42));
}

.route-preview-map.has-google-map.is-live-locked::after {
  content: "Önizleme hakkınız doldu. Sınırsız canlı takip için uygulamayı indirin, Premium olun.";
  z-index: 5;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(2, 6, 23, 0.50);
  color: white;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
  backdrop-filter: blur(2px);
}

.route-preview-map > .absolute {
  z-index: 3;
}

.route-preview-map::before {
  content: "";
  position: absolute;
  inset: 34px 22px;
  border-radius: 999px;
  border: 1px dashed rgba(255,255,255,0.13);
  opacity: 0.8;
}

.route-path {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 46%;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00a650 0 44%, #ffd93d 44% 51%, #9ca3af 51% 100%);
  box-shadow: 0 0 24px rgba(255,217,61,0.18);
}

.route-station {
  position: absolute;
  top: calc(46% - 13px);
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: #1a0b2e;
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(0,0,0,0.28);
}

.route-station small {
  position: absolute;
  top: 42px;
  left: 50%;
  width: 92px;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.78);
  font-size: 10px;
  line-height: 1.2;
  text-align: center;
}

.route-station-start { left: 10%; }
.route-station-transfer { left: calc(50% - 17px); }
.route-station-end { right: 10%; }

.route-live-vehicle {
  position: absolute;
  left: 12%;
  top: calc(46% - 26px);
  display: grid;
  width: 52px;
  height: 28px;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(180deg, #fff, #dbe3ef);
  color: #111827;
  font-size: 10px;
  font-weight: 900;
  box-shadow: 0 16px 28px rgba(0,0,0,0.36);
  animation: routeVehiclePreview 9s linear infinite;
}

.route-live-vehicle::after {
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  bottom: -5px;
  height: 4px;
  border-radius: 999px;
  background: rgba(0,0,0,0.38);
  filter: blur(2px);
}

@keyframes routeVehiclePreview {
  0% { transform: translateX(0); }
  44% { transform: translateX(31vw); }
  51% { transform: translateX(36vw); }
  100% { transform: translateX(68vw); }
}

.route-limit-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 217, 61, 0.28);
  background: rgba(255, 217, 61, 0.1);
  padding: 8px 12px;
  color: rgba(255,255,255,0.84);
  font-size: 12px;
  font-weight: 800;
}

.route-step-card {
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.045);
  padding: 16px;
}

.route-step-icon {
  display: grid;
  width: 46px;
  min-width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--step-color) 58%, white 16%);
  background: color-mix(in srgb, var(--step-color) 24%, rgba(2,6,23,0.92));
  color: white;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--step-color) 24%, transparent);
}

.route-step-icon i {
  font-size: 15px;
  line-height: 1;
}

.route-step-icon span {
  max-width: 38px;
  overflow: hidden;
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@supports not (background: color-mix(in srgb, red, blue)) {
  .route-step-icon {
    border-color: rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.10);
    box-shadow: 0 10px 24px rgba(0,0,0,0.24);
  }
}

.route-locked {
  border-color: rgba(255, 217, 61, 0.28);
  background: rgba(255, 217, 61, 0.08);
}

.live-line-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  padding: 8px 12px;
  color: rgba(255,255,255,0.82);
  font-size: 12px;
  font-weight: 900;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.live-line-button:hover:not(:disabled),
.live-line-button.active {
  transform: translateY(-1px);
  border-color: rgba(255, 217, 61, 0.46);
  background: rgba(255, 217, 61, 0.14);
}

.live-line-button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.live-line-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  box-shadow: 0 0 14px currentColor;
}

.web-vehicle-info {
  width: min(280px, calc(100vw - 48px));
  min-width: 0;
  overflow: hidden;
  border: 1px solid;
  border-radius: 18px;
  background: #020617;
  color: #f8fafc;
  box-shadow: 0 18px 42px rgba(2, 6, 23, 0.42);
  font-family: Inter, system-ui, sans-serif;
}

.route-time-bubble {
  width: min(160px, calc(100vw - 72px));
  border: 1px solid rgba(255, 217, 61, 0.58);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.94);
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.42);
  font-family: Inter, system-ui, sans-serif;
  padding: 10px 12px;
  text-align: center;
}

.route-time-title {
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
  color: #ffd93d;
}

.route-time-duration {
  margin-top: 4px;
  color: rgba(255,255,255,0.78);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
}

.web-vehicle-info-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.web-vehicle-badge {
  display: grid;
  min-width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  color: white;
  font-size: 11px;
  font-weight: 900;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.55), 0 8px 18px rgba(0,0,0,0.35);
}

.web-vehicle-title {
  max-width: min(190px, calc(100vw - 132px));
  overflow: hidden;
  color: white;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.web-vehicle-subtitle {
  margin-top: 2px;
  color: rgba(226,232,240,0.72);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.web-vehicle-grid {
  display: grid;
  gap: 8px;
  padding: 12px;
}

.web-vehicle-grid div {
  display: grid;
  gap: 2px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  padding: 8px 10px;
}

.web-vehicle-grid span {
  color: rgba(148,163,184,0.95);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.web-vehicle-grid b {
  color: #f8fafc;
  font-size: 12px;
  line-height: 1.3;
}

.web-vehicle-note {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 9px 12px 11px;
  color: rgba(203,213,225,0.76);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.45;
}

.gm-style .gm-style-iw-c {
  max-width: calc(100vw - 34px) !important;
  padding: 0 !important;
  border-radius: 18px !important;
  background: transparent !important;
  box-shadow: none !important;
}

.gm-style .gm-style-iw-d {
  overflow: hidden !important;
}

.gm-style .gm-style-iw-tc {
  filter: drop-shadow(0 6px 10px rgba(2,6,23,0.28));
}

.glass-btn {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.4s ease;
  overflow: hidden;
  cursor: pointer;
}

.glass-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: 0.5s;
}

.glass-btn:hover::before {
  left: 100%;
}

.glass-btn:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.4);
}

.glass-btn-gold {
  background: rgba(255, 217, 61, 0.08);
  border-color: rgba(255, 217, 61, 0.3);
}

.glass-btn-gold:hover {
  background: rgba(255, 217, 61, 0.15);
  box-shadow: 0 0 30px rgba(255, 217, 61, 0.3);
  border-color: rgba(255, 217, 61, 0.6);
}

.lang-btn {
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.6;
  transition: opacity 0.3s, color 0.3s;
  padding: 0 5px;
}

.lang-btn:hover,
.lang-btn.active {
  opacity: 1;
  color: #ffd93d;
}

.nav-link {
  border-radius: 999px;
  padding: 9px 13px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255, 255, 255, 0.1);
  color: #ffd93d;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-normal {
  background: rgba(52, 211, 153, 0.16);
  color: #86efac;
  border: 1px solid rgba(52, 211, 153, 0.26);
}

.status-issue {
  background: rgba(248, 113, 113, 0.16);
  color: #fecaca;
  border: 1px solid rgba(248, 113, 113, 0.28);
}

.status-maintenance {
  background: rgba(251, 191, 36, 0.16);
  color: #fde68a;
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.line-badge {
  display: inline-flex;
  min-width: 42px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 217, 61, 0.18);
  color: #ffd93d;
  font-size: 13px;
  font-weight: 900;
}

.line-badge-colored {
  border: 1px solid color-mix(in srgb, var(--line-color) 72%, white 16%);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--line-color) 44%, transparent), rgba(255, 255, 255, 0.05));
  color: #fff;
  box-shadow: 0 0 22px color-mix(in srgb, var(--line-color) 36%, transparent);
}

.gradient-text {
  background: linear-gradient(to right, #ffd93d, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.time-chip {
  position: relative;
  border-radius: 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.07);
  padding: 10px 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
}

.time-chip.is-nearest {
  border-color: rgba(255, 217, 61, 0.82);
  background: linear-gradient(135deg, #ffd93d, #ff8f3d);
  color: #211128;
  box-shadow: 0 0 24px rgba(255, 217, 61, 0.42);
}

.time-chip.is-nearest::after {
  content: "En yakın";
  display: block;
  margin-top: 3px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(33, 17, 40, 0.72);
}

.time-range-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  max-width: 240px;
}

.time-range-grid > label {
  min-width: 0;
}

.timetable-action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.platform-board {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #ffffff;
  color: #ffffff;
  padding: 14px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.platform-board-header,
.platform-board-row {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr) minmax(0, 1fr) 86px;
  align-items: center;
  gap: 8px;
  background: #16486f;
  padding: 14px 12px;
}

.platform-board-header {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platform-board-row {
  min-height: 58px;
  margin-top: 10px;
  font-size: 15px;
  font-weight: 800;
}

.platform-board-cell {
  min-width: 0;
  overflow-wrap: anywhere;
}

.platform-board-center {
  text-align: center;
}

.platform-board-time {
  justify-self: center;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 5px;
  padding: 6px 12px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.platform-board-empty {
  margin-top: 10px;
  background: #16486f;
  padding: 28px 16px;
  text-align: center;
  font-weight: 800;
}

.muted {
  color: rgba(255, 255, 255, 0.62);
}

.premium-poster-card {
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.38);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.46);
}

.premium-poster-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.premium-feature {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
  padding: 18px;
}

#mobile-menu {
  z-index: 10001;
}

nav img.rounded-full {
  width: 5rem;
  height: 5rem;
  min-width: 5rem;
  min-height: 5rem;
  aspect-ratio: 1 / 1;
}

.tool-hero-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.tool-action-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

#statusList article > div,
#statusList article .min-w-0 {
  min-width: 0;
}

#statusList h2,
#statusList p {
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  .rayist-shell::before {
    background-attachment: scroll;
  }

  .rayist-shell > main::before {
    left: 5%;
    right: 5%;
    bottom: 22vh;
    opacity: 0.34;
  }

  .rayist-shell > footer::before {
    bottom: 10px;
    width: 640px;
    height: 52px;
    opacity: 0.22;
  }

  nav .h-24 {
    height: auto;
    min-height: 92px;
    align-items: center;
    gap: 12px;
  }

  nav img.rounded-full {
    width: 4.5rem;
    height: 4.5rem;
    min-width: 4.5rem;
    min-height: 4.5rem;
  }

  .nav-link {
    padding: 7px 9px;
    font-size: 11px;
  }

  .status-pill {
    padding: 6px 9px;
    font-size: 10px;
  }

  .glass-input,
  .rayist-btn {
    border-radius: 14px;
  }

  input[type="time"].glass-input,
  .time-range-grid {
    width: 100%;
    max-width: 210px;
  }

  #mobile-menu {
    position: fixed !important;
    top: 92px;
    left: 10px;
    right: 10px;
    width: auto !important;
    z-index: 10001;
    max-height: calc(100vh - 106px);
    overflow-y: auto;
    pointer-events: auto;
    border-radius: 22px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.46);
  }

  .tool-hero-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .tool-action-row {
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .timetable-action-grid {
    grid-template-columns: 1fr;
  }

  .platform-board {
    padding: 10px;
  }

  .platform-board-header,
  .platform-board-row {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr) minmax(0, 1fr) 72px;
    gap: 6px;
    padding: 12px 8px;
    font-size: 11px;
  }

  .platform-board-row {
    font-size: 12px;
  }

  .platform-board-time {
    padding: 5px 8px;
  }

  .premium-poster-card {
    border-radius: 24px;
  }

  #statusList article {
    padding: 14px !important;
    border-radius: 20px !important;
  }

  #statusList article > div {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  #statusList article .flex.min-w-0 {
    width: 100%;
    align-items: flex-start;
    gap: 10px;
  }

  #statusList .line-badge {
    min-width: 36px;
    width: 36px;
    height: 30px;
    border-radius: 9px;
    font-size: 12px;
  }

  #statusList .status-pill {
    justify-self: start;
    width: fit-content;
    max-width: 100%;
    white-space: nowrap;
  }

  #statusList h2 {
    white-space: normal !important;
    text-overflow: clip !important;
    font-size: 15px;
    line-height: 1.25;
  }

  #statusList p {
    font-size: 13px;
    line-height: 1.45;
  }

  footer p,
  footer a {
    text-align: center;
  }
}
