/* Balik360 — modern coastal editorial
   Fontlar layout’ta preconnect + stylesheet (CSS @import yok → daha hızlı FCP) */

:root {
  --navy: #0B2545;
  --deep: #13315C;
  --sea: #134074;
  --mist: #8DA9C4;
  --foam: #EEF4ED;
  --sand: #f4f8f6;
  --ink: #122033;
  --muted: #5a6b7d;
  --line: rgba(11, 37, 69, 0.12);
  --accent: #1f7a8c;
  --accent-2: #2a9d8f;
  --danger: #c45c4a;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 18px 50px rgba(11, 37, 69, 0.08);
  --container: 1100px;
  --shell-max: 1480px;
  --ad-rail: 160px;
  --font-display: "Syne", sans-serif;
  --font-body: "Manrope", sans-serif;
  --header-h: 72px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  height: 100%;
  background: var(--navy); /* footer altındaki ince beyaz şeridi engeller */
}

body {
  margin: 0;
  min-height: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Kısa sayfalarda footer alta yapışır; altında beyaz boşluk kalmaz */
.b360-main {
  flex: 1 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(141, 169, 196, 0.35), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(31, 122, 140, 0.12), transparent 50%),
    var(--sand);
}

.b360-main > .b360-shell {
  flex: 1 0 auto;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
ul { padding-left: 1.2rem; }

/* Sol reklam | içerik (col-12) | sağ reklam */
.b360-shell {
  display: flex;
  gap: 1.25rem;
  width: min(100% - 1.5rem, var(--shell-max));
  margin: 0 auto;
  padding: 0 0 2rem;
  align-items: start;
}

.b360-shell__main {
  min-width: 0;
  flex: 1 1 auto;
  width: 100%;
}

/* —— Reklam birimleri —— */
.b360-ad {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.b360-ad--rail {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  align-self: start;
  flex: 0 0 var(--ad-rail);
  width: var(--ad-rail);
  min-height: 600px;
  border: 1px dashed rgba(19, 64, 116, 0.28);
  background: rgba(255, 255, 255, 0.65);
}

.b360-ad--in {
  margin: 1.5rem 0;
  min-height: 100px;
  width: 100%;
  border: 1px dashed rgba(19, 64, 116, 0.22);
  background: rgba(238, 244, 237, 0.55);
}

.b360-ad-footer-wrap {
  width: min(100% - 1.5rem, var(--shell-max));
  margin: 0 auto 1.25rem;
}

.b360-ad--footer {
  min-height: 100px;
  width: 100%;
  border: 1px dashed rgba(19, 64, 116, 0.22);
  background: rgba(255, 255, 255, 0.7);
}

.b360-ad--sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  min-height: 56px;
  max-height: 90px;
  border: 0;
  border-top: 1px solid rgba(19, 64, 116, 0.18);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 -4px 20px rgba(11, 37, 69, 0.12);
}

body:has(.b360-ad--sticky) {
  padding-bottom: 72px;
}

.b360-ad__ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 1rem;
  text-align: center;
  width: 100%;
  min-height: inherit;
}

.b360-ad__label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.55;
}

.b360-ad__hint {
  font-size: 0.7rem;
  color: var(--muted);
}

.b360-ad:has(ins.adsbygoogle) {
  border-style: solid;
  border-color: transparent;
  background: transparent;
}

/* Header / footer / hero — dış container shell ile hizalı */
.b360-container {
  width: min(100% - 2rem, var(--shell-max));
  margin-inline: auto;
}

/* Shell içi içerik: ortadaki sütunu tam doldur (col-12) */
.b360-shell .b360-container,
.b360-shell .b360-container--wide {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: 0;
}

/* Header */
.b360-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  background: rgba(244, 248, 246, 0.86);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.55) inset;
}

.b360-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.b360-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  line-height: 0;
  text-decoration: none;
}

.b360-brand span {
  color: var(--accent);
}

.b360-brand__logo {
  display: block;
  height: 40px;
  width: auto;
  max-width: min(200px, 42vw);
}

.b360-brand--header .b360-brand__logo {
  height: 42px;
}

.b360-brand--footer .b360-brand__logo {
  height: 52px;
  max-width: 220px;
  /* koyu footer üzerinde okunaklı */
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.b360-nav {
  display: none;
  align-items: center;
  gap: 0.15rem;
}

.b360-nav a {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color .2s, background .2s;
}

.b360-nav a:hover,
.b360-nav a.is-active {
  color: var(--navy);
  background: rgba(19, 64, 116, 0.08);
}

.b360-header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.b360-burger {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.b360-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  position: relative;
}

.b360-burger span::before,
.b360-burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--navy);
}

.b360-burger span::before { top: -6px; }
.b360-burger span::after { top: 6px; }

.b360-mobile {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: rgba(244, 248, 246, 0.98);
  z-index: 40;
  padding: 1.25rem;
  overflow: auto;
}

.b360-mobile.is-open { display: block; }

.b360-mobile a,
.b360-mobile__logout {
  display: block;
  width: 100%;
  padding: 0.85rem 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: none;
  font: inherit;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
}

.b360-logout-form {
  display: inline-flex;
  margin: 0;
}

/* Buttons */
.b360-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 44px;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform .2s, background .2s, color .2s, border-color .2s;
}

.b360-btn:hover { transform: translateY(-1px); }

.b360-btn:disabled,
.b360-btn[aria-busy="true"],
.b360-btn.is-loading {
  opacity: 0.85;
  cursor: wait;
  pointer-events: none;
  transform: none;
}

.b360-spinner {
  width: 1em;
  height: 1em;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  animation: b360-spin 0.7s linear infinite;
}

@keyframes b360-spin {
  to { transform: rotate(360deg); }
}

.b360-form.is-submitting {
  pointer-events: none;
}

.b360-btn--primary {
  background: linear-gradient(135deg, var(--sea), var(--accent));
  color: #fff;
}

.b360-btn--ghost {
  background: #fff;
  border-color: rgba(11, 37, 69, 0.28);
  color: var(--navy);
  box-shadow: 0 1px 0 rgba(11, 37, 69, 0.04);
}

.b360-btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: #fff;
}

.b360-btn--soft {
  background: rgba(19, 64, 116, 0.1);
  border-color: rgba(19, 64, 116, 0.14);
  color: var(--navy);
}

.b360-btn--soft:hover {
  background: rgba(31, 122, 140, 0.14);
  color: var(--navy);
}

/* Hero */
.b360-hero {
  position: relative;
  min-height: clamp(420px, 68vh, 640px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #0B2545;
}

.b360-hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.b360-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  transform: scale(1.04);
  animation: b360-drift 22s ease-in-out infinite alternate;
}

.b360-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(11, 37, 69, 0.88) 0%, rgba(11, 37, 69, 0.55) 42%, rgba(11, 37, 69, 0.28) 100%),
    linear-gradient(180deg, rgba(11, 37, 69, 0.2) 0%, rgba(11, 37, 69, 0.55) 55%, rgba(11, 37, 69, 0.82) 100%);
  pointer-events: none;
}

@keyframes b360-drift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1.5%, -1%, 0); }
}

.b360-hero__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 90px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 90' preserveAspectRatio='none'%3E%3Cpath fill='%23f4f8f6' d='M0 40 C 240 90 480 0 720 40 C 960 80 1200 10 1440 45 L1440 90 L0 90 Z'/%3E%3C/svg%3E")
    center bottom / 100% 100% no-repeat;
}

.b360-hero__content {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0 4.5rem;
  max-width: 720px;
  animation: b360-rise .9s ease both;
}

@keyframes b360-rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

.b360-hero__brand {
  margin: 0 0 1.1rem;
  line-height: 0;
}

.b360-hero__brand-plate {
  display: inline-block;
  padding: 0.55rem 0.85rem;
  border-radius: 14px;
  background: rgba(238, 244, 237, 0.94);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.28);
}

.b360-hero__logo {
  display: block;
  height: clamp(52px, 11vw, 88px);
  width: auto;
  max-width: min(420px, 78vw);
}

.b360-hero__brand span { color: #9fd0d4; }

.b360-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 0.85rem;
  max-width: 16ch;
}

.b360-hero p {
  margin: 0 0 1.5rem;
  color: rgba(238, 244, 237, 0.88);
  font-size: 1.05rem;
  max-width: 36ch;
}

.b360-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.b360-hero .b360-btn--ghost {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.28);
  color: #fff;
}

/* Sections */
.b360-section {
  padding: 4.5rem 0;
}

.b360-section--tight { padding: 3rem 0; }

.b360-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.b360-section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.35rem;
  color: var(--navy);
}

.b360-section__head p {
  margin: 0;
  color: var(--muted);
}

.b360-link {
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}

.b360-link:hover { text-decoration: underline; }

/* Content lists — interaction surfaces */
.b360-grid {
  display: grid;
  gap: 1.1rem;
}

.b360-grid--3 { grid-template-columns: 1fr; }
.b360-grid--2 { grid-template-columns: 1fr; }

.b360-item {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.b360-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(31, 122, 140, 0.35);
}

.b360-item__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
  background: #e7eef3;
}

.b360-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.b360-item:hover .b360-item__media img {
  transform: scale(1.04);
}

/* Görsel yoksa: yumuşak sis + harf — düz “petrol” blok yok */
.b360-item__media--empty,
.b360-item__media:not(:has(img)) {
  display: grid;
  place-items: center;
  background:
    radial-gradient(ellipse 80% 60% at 20% 25%, rgba(141, 169, 196, 0.45), transparent 60%),
    radial-gradient(ellipse 70% 50% at 85% 80%, rgba(31, 122, 140, 0.12), transparent 55%),
    linear-gradient(165deg, #f3f7f5 0%, #e4ecf2 100%);
}

.b360-item__initial {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(11, 37, 69, 0.22);
  user-select: none;
}

.b360-item__body { padding: 1.15rem 1.2rem 1.3rem; }

.b360-item__meta {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.b360-item__body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.35rem;
  color: var(--navy);
}

.b360-item__body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.b360-strip {
  display: grid;
  gap: 0.75rem;
}

.b360-strip a {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  transition: border-color .2s, transform .2s;
}

.b360-strip a:hover {
  border-color: rgba(31, 122, 140, 0.4);
  transform: translateX(3px);
}

.b360-strip strong {
  font-family: var(--font-display);
  color: var(--navy);
  letter-spacing: -0.02em;
}

.b360-strip span { color: var(--muted); font-size: 0.88rem; }

.b360-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.b360-tags { margin: 0 0 1.25rem; }

.b360-tag-fields {
  margin: 1.25rem 0 0.5rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(19, 64, 116, 0.03);
}

.b360-tag-fields__intro {
  margin: 0 0 0.35rem;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}

.b360-tag-fields__hint {
  margin: 0 0 1rem;
  font-size: 0.84rem;
  color: var(--muted);
}

.b360-sublabel {
  display: block;
  font-size: 0.8rem !important;
  font-weight: 600;
  color: var(--muted) !important;
  margin-bottom: 0.3rem !important;
}

.b360-select-multi {
  min-height: 10rem;
  padding: 0.45rem 0.55rem !important;
}

.b360-place-picker {
  display: grid;
  gap: 0.75rem;
}

.b360-place-picker__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.b360-selected-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  min-height: 0.5rem;
}

.b360-selected-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.55rem 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(31, 122, 140, 0.35);
  background: rgba(31, 122, 140, 0.1);
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 600;
}

.b360-selected-chip button {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 0.15rem;
}

.b360-selected-chip button:hover {
  color: #b42318;
}

.b360-tag-picks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.b360-tag-picks--scroll {
  max-height: 12rem;
  overflow: auto;
  padding: 0.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
}

.b360-tag-pick {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 34px;
  padding: 0.25rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 0.86rem;
  color: var(--muted);
  cursor: pointer;
}

.b360-tag-pick:has(input:checked) {
  border-color: var(--accent);
  color: var(--navy);
  background: rgba(31, 122, 140, 0.1);
}

.b360-tag-pick input {
  margin: 0;
}

.b360-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
}

.b360-chip.is-active,
.b360-chip:hover {
  color: var(--navy);
  border-color: rgba(19, 64, 116, 0.35);
  background: rgba(19, 64, 116, 0.06);
}

/* Page shell */
.b360-page {
  padding: 2.5rem 0 4rem;
}

.b360-page__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: -0.03em;
  color: var(--navy);
  margin: 0 0 0.5rem;
}

.b360-page__lead {
  color: var(--muted);
  margin: 0 0 1.75rem;
  max-width: 55ch;
}

.b360-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.b360-crumb a:hover { color: var(--accent); }
.b360-crumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.4rem;
  opacity: 0.5;
}

.b360-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.b360-prose {
  color: var(--muted);
  font-size: 1.02rem;
}

.b360-prose h2,
.b360-prose h3,
.b360-prose h4 {
  font-family: var(--font-display);
  color: var(--navy);
  letter-spacing: -0.02em;
}

.b360-prose a { color: var(--accent); text-decoration: underline; }

.b360-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: 0.95rem;
}

.b360-prose th,
.b360-prose td {
  border: 1px solid var(--line);
  padding: 0.55rem 0.7rem;
  text-align: left;
}

.b360-prose th {
  background: rgba(19, 64, 116, 0.06);
  color: var(--navy);
}

.b360-layout {
  display: grid;
  gap: 1.5rem;
}

.b360-layout__main {
  min-width: 0;
  width: 100%;
}

.b360-layout--profile {
  grid-template-columns: 1fr;
  align-items: start;
}

.b360-layout--profile .b360-form--wide,
.b360-layout--profile .b360-panel {
  max-width: none;
  width: 100%;
}

.b360-aside {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
}

.b360-aside h5 {
  font-family: var(--font-display);
  margin: 0 0 0.85rem;
  color: var(--navy);
}

/* Forms */
.b360-form--wide {
  max-width: none !important;
  width: 100%;
}

.b360-upload {
  position: relative;
}

.b360-upload__input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.b360-upload__drop {
  position: relative;
  z-index: 1;
  min-height: 180px;
  border: 2px dashed rgba(19, 64, 116, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  display: grid;
  place-items: center;
  padding: 1rem;
  transition: border-color .2s, background .2s;
  cursor: pointer;
}

.b360-upload__drop.is-drag {
  border-color: var(--accent);
  background: rgba(31, 122, 140, 0.08);
}

.b360-upload__hint {
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
  pointer-events: none;
}

.b360-upload__hint strong {
  display: block;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.b360-upload__hint span {
  display: block;
  font-size: 0.8rem;
  margin-top: 0.35rem;
}

.b360-upload__preview {
  display: none;
  width: 100%;
  max-height: 280px;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.b360-upload__preview.is-visible {
  display: block;
}

.b360-upload__preview img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
}

.b360-upload__clear {
  display: none;
  margin-top: 0.65rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(19, 64, 116, 0.22);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
}

.b360-upload__clear.is-visible {
  display: inline-flex;
  align-items: center;
}

.b360-upload__clear:hover {
  border-color: #b42318;
  color: #b42318;
  background: rgba(180, 35, 24, 0.06);
}

.b360-upload__note {
  margin: 0.45rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.b360-form label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.b360-fieldset {
  margin: 0 0 1.25rem;
  padding: 1rem 1.1rem 0.25rem;
  border: 1px solid rgba(19, 64, 116, 0.14);
  border-radius: var(--radius);
  background: rgba(238, 244, 237, 0.35);
}

.b360-fieldset legend {
  padding: 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}

.b360-form-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 719px) {
  .b360-form-grid {
    grid-template-columns: 1fr;
  }
}

.b360-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 0.75rem;
}

.b360-social__link {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(19, 64, 116, 0.18);
  background: #fff;
  color: var(--navy) !important;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none !important;
}

.b360-social__link:hover {
  border-color: var(--accent);
  color: var(--accent) !important;
}

/* Form içi metin linkleri (sözleşme vb.) — global a stilini ezer */
.b360-form a,
.b360-auth a:not(.b360-btn) {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 700;
}

.b360-form a:hover,
.b360-auth a:not(.b360-btn):hover {
  color: var(--sea);
}

.b360-terms-label {
  display: flex !important;
  align-items: flex-start;
  gap: 0.55rem;
  font-weight: 500 !important;
  color: var(--muted) !important;
  line-height: 1.45;
  cursor: pointer;
}

.b360-terms-label input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.b360-form .form-group,
.b360-field__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.b360-field__row label { margin-bottom: 0; }

.b360-field__row .b360-link {
  font-size: 0.85rem;
  white-space: nowrap;
}

.b360-auth__hint {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.b360-form .b360-field {
  margin-bottom: 1rem;
}

.b360-form .form-control,
.b360-input,
.b360-form input[type="text"],
.b360-form input[type="email"],
.b360-form input[type="password"],
.b360-form input[type="search"],
.b360-form input[type="number"],
.b360-form input[type="date"],
.b360-form input[type="datetime-local"],
.b360-form select,
.b360-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
}

.b360-form textarea { min-height: 140px; resize: vertical; }

.b360-form .form-control:focus,
.b360-input:focus,
.b360-form input:focus,
.b360-form select:focus,
.b360-form textarea:focus {
  outline: 2px solid rgba(31, 122, 140, 0.35);
  border-color: var(--accent);
}

.b360-alert {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  font-size: 0.92rem;
}

.b360-alert--ok { background: rgba(42, 157, 143, 0.12); color: #176b5f; }
.b360-alert--err { background: rgba(196, 92, 74, 0.12); color: #8f3a2d; }

/* —— Üyelik auth (tam ekran deniz + cam panel) —— */
.b360-body--auth {
  min-height: 100vh;
  margin: 0;
  background: #061526;
  color: var(--ink);
}

.b360-auth-stage {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 1.25rem clamp(1rem, 3vw, 2rem) 1.5rem;
  overflow: hidden;
}

.b360-auth-stage__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.b360-auth-stage__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  animation: b360-auth-ken 22s ease-in-out infinite alternate;
}

.b360-auth-stage__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(6, 21, 38, 0.78) 0%, rgba(11, 37, 69, 0.55) 45%, rgba(19, 64, 116, 0.42) 100%),
    linear-gradient(180deg, rgba(6, 21, 38, 0.35) 0%, rgba(6, 21, 38, 0.15) 40%, rgba(6, 21, 38, 0.72) 100%);
}

.b360-auth-stage__glow {
  position: absolute;
  width: min(70vw, 640px);
  height: min(70vw, 640px);
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(141, 169, 196, 0.28) 0%, transparent 68%);
  animation: b360-auth-glow 10s ease-in-out infinite alternate;
  pointer-events: none;
}

.b360-auth-stage__mesh {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image:
    linear-gradient(rgba(238, 244, 237, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(238, 244, 237, 0.35) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, #000 20%, transparent 75%);
  pointer-events: none;
}

.b360-auth-stage__top,
.b360-auth-stage__center,
.b360-auth-stage__foot {
  position: relative;
  z-index: 1;
}

.b360-auth-stage__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.b360-brand--auth .b360-brand__logo {
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.b360-auth-stage__back {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(238, 244, 237, 0.78);
  text-decoration: none;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(238, 244, 237, 0.22);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  transition: background .2s, color .2s, border-color .2s;
}

.b360-auth-stage__back:hover {
  color: #fff;
  border-color: rgba(238, 244, 237, 0.45);
  background: rgba(255, 255, 255, 0.12);
}

.b360-auth-stage__center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0 1.25rem;
}

.b360-auth-stage__foot {
  margin: 0;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(238, 244, 237, 0.45);
}

.b360-auth {
  width: min(100% - 2rem, 440px);
  margin: 3rem auto 4rem;
}

.b360-auth--glass {
  width: min(100%, 420px);
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.35rem, 3vw, 1.85rem) 1.5rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 4px 24px rgba(6, 21, 38, 0.18),
    0 28px 64px rgba(6, 21, 38, 0.28);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  animation: b360-auth-panel-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.b360-auth__head {
  margin-bottom: 1.35rem;
  text-align: left;
}

.b360-auth__eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sea);
}

.b360-auth h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.35rem);
  letter-spacing: -0.04em;
  color: var(--navy);
  margin: 0 0 0.4rem;
  line-height: 1.1;
}

.b360-auth > p,
.b360-auth__lead {
  color: var(--muted);
  margin: 0;
  line-height: 1.45;
  font-size: 0.94rem;
}

.b360-auth__switch {
  margin: 1.35rem 0 0;
  text-align: center;
  font-size: 0.92rem;
  color: var(--muted);
}

.b360-auth__switch a {
  font-weight: 700;
  color: var(--sea);
  text-decoration: none;
}

.b360-auth__switch a:hover { color: var(--navy); }

.b360-auth__hint {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

.b360-auth__g {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 6px;
  background: #fff;
  border: 1px solid rgba(11, 37, 69, 0.12);
  font-weight: 800;
  font-size: 0.85rem;
  color: #4285f4;
}

.b360-btn--block { width: 100%; }

.b360-btn--auth {
  min-height: 48px;
  border-radius: 14px;
  border: 0;
  background: linear-gradient(135deg, #134074 0%, #1f7a8c 100%);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(19, 64, 116, 0.28);
}

.b360-btn--auth:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.b360-btn--auth-ghost {
  min-height: 48px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(11, 37, 69, 0.14);
  color: var(--navy);
  font-weight: 600;
}

.b360-btn--auth-ghost:hover {
  border-color: rgba(31, 122, 140, 0.45);
  color: var(--sea);
  background: #fff;
}

.b360-divider--auth {
  margin: 1.1rem 0;
  color: rgba(11, 37, 69, 0.45);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.b360-form--auth .b360-field {
  margin-bottom: 0.95rem;
}

.b360-form--auth label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
}

.b360-form--auth input[type="text"],
.b360-form--auth input[type="email"],
.b360-form--auth input[type="password"] {
  min-height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(11, 37, 69, 0.12);
  background: rgba(238, 244, 237, 0.55);
  transition: border-color .2s, background .2s, box-shadow .2s;
}

.b360-form--auth input:focus {
  background: #fff;
  border-color: rgba(31, 122, 140, 0.55);
  outline: none;
  box-shadow: 0 0 0 3px rgba(31, 122, 140, 0.16);
}

.b360-field--half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.b360-link--auth {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--sea);
  text-decoration: none;
}

.b360-link--auth:hover { color: var(--navy); }

.b360-field__err {
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: #8f3a2d;
}

.b360-field--check label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
}

.b360-terms-label--auth {
  font-size: 0.84rem !important;
}

.b360-body--auth .b360-toasts {
  bottom: 1.25rem;
  z-index: 1300;
}

@keyframes b360-auth-ken {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1.2%, -0.8%, 0); }
}

@keyframes b360-auth-glow {
  from { opacity: 0.55; transform: translate(-50%, -50%) scale(0.92); }
  to { opacity: 1; transform: translate(-50%, -48%) scale(1.08); }
}

@keyframes b360-auth-panel-in {
  from { opacity: 0; transform: translateY(18px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 560px) {
  .b360-auth--glass {
    border-radius: 20px;
    padding: 1.35rem 1.15rem 1.25rem;
  }

  .b360-field--half {
    grid-template-columns: 1fr;
  }

  .b360-auth-stage__foot { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .b360-auth-stage__photo,
  .b360-auth-stage__glow,
  .b360-auth--glass {
    animation: none;
  }
}

.b360-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.75rem;
  align-items: center;
  color: var(--muted);
  font-size: 0.85rem;
  margin: 1rem 0;
}

.b360-divider::before,
.b360-divider::after {
  content: "";
  height: 1px;
  background: var(--line);
}

/* Footer */
.b360-footer {
  margin-top: auto;
  flex-shrink: 0;
  width: 100%;
  background: var(--navy);
  color: rgba(238, 244, 237, 0.82);
  padding: 3.5rem 0 1.5rem;
}

.b360-footer__grid {
  display: grid;
  gap: 2rem;
}

.b360-footer .b360-brand { color: #fff; margin-bottom: 0.75rem; display: inline-flex; }

.b360-footer__fine {
  margin-top: 0.85rem;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(238, 244, 237, 0.55);
}

.b360-footer__fine a {
  display: inline;
  color: rgba(238, 244, 237, 0.85);
  text-decoration: underline;
}

.b360-legal-notice {
  background: #fff8e8;
  border: 1px solid rgba(180, 130, 40, 0.35);
  border-left: 4px solid #c4922a;
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
  margin: 1.75rem 0 0;
  color: #5c4a22;
  font-size: 0.92rem;
}

.b360-legal-notice strong {
  display: block;
  margin-bottom: 0.45rem;
  color: #3d3218;
  font-family: var(--font-display);
}

.b360-legal-notice p {
  margin: 0 0 0.55rem;
}

.b360-legal-notice p:last-child {
  margin-bottom: 0;
}

.b360-legal-notice a {
  color: var(--sea);
  text-decoration: underline;
  font-weight: 600;
}

.b360-legal-notice--compact {
  background: rgba(19, 64, 116, 0.05);
  border-color: var(--line);
  border-left-color: var(--accent);
  color: var(--muted);
  font-size: 0.88rem;
}

.b360-legal-notice--compact strong {
  color: var(--navy);
}
.b360-footer h4 {
  font-family: var(--font-display);
  color: #fff;
  margin: 0 0 0.85rem;
  font-size: 1rem;
}

.b360-footer a {
  display: block;
  color: rgba(238, 244, 237, 0.72);
  margin-bottom: 0.45rem;
  font-size: 0.92rem;
}

.b360-footer a:hover { color: #fff; }

.b360-footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(238, 244, 237, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
  font-size: 0.88rem;
}

.b360-footer__bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.b360-footer__bottom nav a { display: inline; margin: 0; }

.b360-empty {
  padding: 2rem;
  text-align: center;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.6);
}

/* —— Sayfalama —— */
.b360-pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  margin-top: 2rem;
  padding: 0.9rem 1.05rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.b360-pager--solo { justify-content: flex-start; }

.b360-pager__meta {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.b360-pager__meta span {
  font-weight: 700;
  color: var(--navy);
}

.b360-pager__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

.b360-pager__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.55rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  transition: background .15s, border-color .15s, color .15s, transform .15s;
}

a.b360-pager__btn:hover {
  border-color: rgba(31, 122, 140, 0.45);
  background: rgba(31, 122, 140, 0.08);
  color: var(--accent);
  transform: translateY(-1px);
}

.b360-pager__btn--text {
  min-width: auto;
  padding: 0 0.9rem;
}

.b360-pager__btn--dots {
  border-color: transparent;
  background: transparent;
  color: var(--muted);
  min-width: 1.5rem;
  padding: 0;
}

.b360-pager li.is-active .b360-pager__btn {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.b360-pager li.is-disabled .b360-pager__btn {
  opacity: 0.38;
  cursor: not-allowed;
}

@media (max-width: 575px) {
  .b360-pager { justify-content: center; }
  .b360-pager__meta { width: 100%; text-align: center; }
  .b360-pager__list { justify-content: center; }
}

/* Suggest override */
.wiki-suggest-wrap { position: relative; }
.wiki-suggest-box {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 30;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.wiki-suggest-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  border-bottom: 1px solid var(--line);
}
.wiki-suggest-item:hover { background: rgba(19, 64, 116, 0.05); }
.wiki-suggest-thumb img,
.wiki-suggest-fallback {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--mist);
  display: block;
}
.wiki-suggest-text { display: grid; gap: 0.15rem; }
.wiki-suggest-text small { color: var(--muted); }
.wiki-suggest-empty { padding: 0.85rem; color: var(--muted); font-size: 0.9rem; }
.wiki-suggest-text mark {
  background: rgba(31, 122, 140, 0.18);
  color: inherit;
  padding: 0 0.1em;
}

/* Compat: old GenZ class names used in leftover blades */
.main { min-height: 50vh; }
.color-linear,
.color-white,
.color-gray-50 { color: var(--navy) !important; }
.color-gray-500,
.color-gray-600,
.color-gray-700 { color: var(--muted) !important; }
.bg-gray-850,
.bg-gray-800,
.bg-gray-900 { background: #fff !important; }
.border-gray-800 { border-color: var(--line) !important; }
.btn.btn-linear,
.btn.btn-border-linear,
.btn.btn-tags {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy) !important;
}
.btn.btn-linear {
  background: linear-gradient(135deg, var(--sea), var(--accent));
  border-color: transparent;
  color: #fff !important;
}
.card-blog-1,
.box-sidebar,
.content-detail,
.form-contact {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem;
}
.card-blog-1 { padding: 0; overflow: hidden; }
.card-blog-1 .card-image img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.card-blog-1 .card-info { padding: 1rem 1.1rem 1.2rem; }
.cover-home1,
.cover-home3 { padding-top: 1rem; }
.box-breadcrumbs .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.88rem;
}
.form-control {
  width: 100%;
  min-height: 46px;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
}

@media (min-width: 720px) {
  .b360-grid--2 { grid-template-columns: repeat(2, 1fr); }
  .b360-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .b360-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .b360-layout { grid-template-columns: 1.7fr 0.9fr; }
  .b360-layout--profile { grid-template-columns: minmax(0, 1fr) 260px; }
}

@media (max-width: 719px) {
  .b360-hero {
    min-height: auto;
    align-items: center;
  }

  .b360-hero__content {
    padding: 2.25rem 0 3.25rem;
  }

  .b360-hero__brand {
    font-size: clamp(2.15rem, 11vw, 2.85rem);
  }

  .b360-hero h1 {
    font-size: 1.35rem;
    max-width: none;
  }

  .b360-hero p {
    font-size: 0.98rem;
    max-width: none;
  }

  .b360-hero__wave {
    height: 56px;
  }

  .b360-header__actions .b360-btn--ghost {
    display: none;
  }

  .b360-page {
    padding: 1.5rem 0 2.5rem;
  }

  .b360-section {
    padding: 2.75rem 0;
  }
}

@media (min-width: 980px) {
  .b360-nav { display: flex; }
  .b360-burger { display: none; }
  .b360-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .b360-mobile { display: none !important; }
}

@media (max-width: 1199px) {
  .b360-shell {
    width: min(100% - 1.5rem, 1100px);
  }

  .b360-ad--rail {
    display: none;
  }
}

@media (max-width: 719px) {
  .b360-form [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
}

/* ——— Hata sayfaları (404 / 503 / …) ——— */
.b360-error-body {
  background: var(--navy);
}

.b360-error {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--foam);
}

.b360-error__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #0B2545;
}

.b360-error__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
}

.b360-error__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 37, 69, 0.72) 0%, rgba(11, 37, 69, 0.55) 40%, rgba(11, 37, 69, 0.88) 100%),
    radial-gradient(ellipse 70% 50% at 50% 30%, rgba(31, 122, 140, 0.25), transparent 70%);
}

.b360-error__glow {
  position: absolute;
  width: min(520px, 80vw);
  height: min(520px, 80vw);
  left: 50%;
  top: 18%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157, 208, 212, 0.14), transparent 68%);
  animation: b360-error-pulse 7s ease-in-out infinite;
  pointer-events: none;
}

.b360-error__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: clamp(100px, 18vh, 180px);
  animation: b360-error-wave 12s ease-in-out infinite alternate;
}

.b360-error__top,
.b360-error__main,
.b360-error__foot {
  position: relative;
  z-index: 1;
}

.b360-error__top {
  padding: 1.25rem clamp(1rem, 4vw, 2.5rem);
}

.b360-error__top .b360-brand {
  color: #fff;
  font-size: 1.35rem;
}

.b360-error__top .b360-brand span {
  color: #9fd0d4;
}

.b360-error__top .b360-brand__logo {
  height: 44px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.b360-error__main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem clamp(1rem, 4vw, 2.5rem) 3rem;
  max-width: 720px;
  margin: 0 auto;
  animation: b360-error-rise 0.7s ease-out both;
}

.b360-error__code {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(5.5rem, 18vw, 9rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, #eef4ed 10%, #9fd0d4 55%, rgba(31, 122, 140, 0.55) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: b360-error-float 5.5s ease-in-out infinite;
  user-select: none;
}

.b360-error__title {
  margin: 1.1rem 0 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.55rem, 4vw, 2.15rem);
  line-height: 1.2;
  color: #fff;
}

.b360-error__lead {
  margin: 0;
  max-width: 34rem;
  color: rgba(238, 244, 237, 0.78);
  font-size: 1.02rem;
}

.b360-error__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-top: 1.75rem;
}

.b360-error__actions .b360-btn {
  min-width: 8.5rem;
  font-weight: 700;
  border-width: 1.5px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

.b360-error__actions .b360-btn--primary {
  background: linear-gradient(135deg, #1f7a8c, #2a9d8f);
  border-color: transparent;
  color: #fff;
}

.b360-error__actions .b360-btn--primary:hover {
  filter: brightness(1.08);
  color: #fff;
}

.b360-error__actions .b360-btn--ghost {
  background: #eef4ed !important;
  border-color: #eef4ed !important;
  color: #0B2545 !important;
}

.b360-error__actions .b360-btn--ghost:hover {
  background: #fff !important;
  border-color: #fff !important;
  color: #0B2545 !important;
}

.b360-error__actions .b360-btn--soft {
  background: rgba(11, 37, 69, 0.45) !important;
  border: 1.5px solid rgba(238, 244, 237, 0.75) !important;
  color: #fff !important;
  backdrop-filter: blur(6px);
}

.b360-error__actions .b360-btn--soft:hover {
  background: rgba(11, 37, 69, 0.65) !important;
  border-color: #fff !important;
  color: #fff !important;
}

.b360-error__hints {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.b360-error__hints a {
  color: #9fd0d4;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.b360-error__hints a:hover {
  color: #fff;
  border-bottom-color: rgba(159, 208, 212, 0.6);
}

.b360-error__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
  align-items: center;
  padding: 1rem clamp(1rem, 4vw, 2.5rem) 1.35rem;
  color: rgba(238, 244, 237, 0.55);
  font-size: 0.85rem;
}

.b360-error__foot a {
  color: #9fd0d4;
  text-decoration: none;
  font-weight: 600;
}

.b360-error__foot a:hover {
  color: #fff;
}

@keyframes b360-error-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes b360-error-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes b360-error-pulse {
  0%, 100% { opacity: 0.75; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.06); }
}

@keyframes b360-error-wave {
  from { transform: translateX(0); }
  to { transform: translateX(-2%); }
}

@media (prefers-reduced-motion: reduce) {
  .b360-error__code,
  .b360-error__glow,
  .b360-error__wave,
  .b360-error__main {
    animation: none;
  }
}

/* —— Ansiklopedi tür kartları —— */
.b360-species-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 1.25rem 0 1.5rem;
}

.b360-species-facts__item {
  padding: 0.85rem 0.95rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(19, 64, 116, 0.05), #fff 55%);
}

.b360-species-facts__item--wide { grid-column: 1 / -1; }

.b360-species-facts__item span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.b360-species-facts__item strong {
  font-family: var(--font-display);
  font-size: 0.98rem;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.35;
}

.b360-species-credit {
  margin-top: 1.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.b360-species-hero {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.35rem;
  border: 1px solid var(--line);
  background: #0b2545;
}

.b360-species-hero img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.b360-species-hero__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.65rem 0.9rem;
  font-size: 0.78rem;
  color: rgba(238, 244, 237, 0.9);
  background: linear-gradient(transparent, rgba(11, 37, 69, 0.75));
}

@media (max-width: 575px) {
  .b360-species-facts { grid-template-columns: 1fr; }
}

/* —— Balık takvimi hub —— */
.b360-cal-hero {
  margin-bottom: 1.75rem;
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(19, 64, 116, 0.08), rgba(31, 122, 140, 0.06)),
    radial-gradient(ellipse at 90% 10%, rgba(141, 169, 196, 0.35), transparent 55%);
  border: 1px solid var(--line);
}

.b360-cal-hero__kicker {
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal, #1f7a8c);
  font-weight: 600;
}

.b360-cal-regions {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 2.25rem;
}

.b360-cal-region {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.1rem 1rem;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}

.b360-cal-region:hover {
  border-color: rgba(31, 122, 140, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 37, 69, 0.08);
}

.b360-cal-region__label {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.b360-cal-region__hint {
  font-size: 0.8rem;
  color: var(--muted);
}

.b360-cal-now { margin-bottom: 2.25rem; }

.b360-cal-species {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}

.b360-cal-species__card {
  display: grid;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
}

.b360-cal-species__card .b360-item__media {
  border-radius: var(--radius-sm);
  aspect-ratio: 16 / 10;
}

.b360-cal-species__body {
  display: grid;
  gap: 0.15rem;
}

.b360-cal-species__body strong {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 0.98rem;
}

.b360-cal-species__body span {
  font-size: 0.78rem;
  color: var(--muted);
}

.b360-cal-month-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 1rem 0 2rem;
}

.b360-cal-month {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  padding: 0.85rem 0.75rem;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  transition: border-color .2s, background .2s;
}

.b360-cal-month:hover,
.b360-cal-month.is-current {
  border-color: rgba(31, 122, 140, 0.5);
  background: rgba(31, 122, 140, 0.06);
}

.b360-cal-month__num {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--teal, #1f7a8c);
  letter-spacing: 0.06em;
}

.b360-cal-month__name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--navy);
}

.b360-cal-seo__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.b360-cal-seo__grid article {
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: #fff;
}

.b360-cal-seo__grid h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
}

.b360-cal-seo__grid p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

.b360-cal-entry {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 0.9rem;
  align-items: center;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, transform .2s;
}

.b360-cal-entry:hover {
  border-color: rgba(31, 122, 140, 0.4);
  transform: translateX(3px);
}

.b360-cal-entry .b360-item__media {
  border-radius: 8px;
  aspect-ratio: 1;
  margin: 0;
}

.b360-cal-entry strong {
  font-family: var(--font-display);
  color: var(--navy);
  display: block;
  margin-bottom: 0.2rem;
}

.b360-cal-entry span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .b360-cal-regions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .b360-cal-month-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .b360-cal-seo__grid { grid-template-columns: 1fr; }
}

@media (max-width: 575px) {
  .b360-cal-regions { grid-template-columns: 1fr; }
  .b360-cal-month-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .b360-cal-entry { grid-template-columns: 72px 1fr; }
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

.b360-cal-search {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1.15rem;
  max-width: 520px;
}

.b360-cal-search .b360-input { flex: 1; min-width: 180px; }

.b360-cal-section-title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
}

.b360-cal-species-chips { margin-bottom: 2rem; flex-wrap: wrap; }

.b360-act {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  width: fit-content;
}

.b360-act--high { background: rgba(42, 157, 143, 0.18); color: #1a6b62; }
.b360-act--mid { background: rgba(201, 135, 42, 0.18); color: #8a5a14; }
.b360-act--low { background: rgba(141, 169, 196, 0.35); color: #134074; }
.b360-act--none { background: #eef1f4; color: var(--muted); }

.b360-cal-region .b360-act { margin-top: 0.45rem; }

.b360-cal-heat { margin-bottom: 2rem; }

.b360-cal-heat__row {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.35rem;
}

.b360-cal-heat__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.55rem 0.2rem;
  border-radius: 8px;
  text-decoration: none;
  color: var(--navy);
  font-size: 0.72rem;
  border: 1px solid transparent;
  transition: transform 0.15s;
}

.b360-cal-heat__cell:hover { transform: translateY(-2px); }
.b360-cal-heat__cell.is-now { outline: 2px solid var(--sea); }

.b360-cal-heat__cell--yuksek { background: rgba(42, 157, 143, 0.28); }
.b360-cal-heat__cell--orta { background: rgba(201, 135, 42, 0.22); }
.b360-cal-heat__cell--dusuk { background: rgba(141, 169, 196, 0.28); }
.b360-cal-heat__cell--yok { background: #f0f3f6; color: var(--muted); }

.b360-cal-heat__m { font-weight: 700; text-transform: uppercase; opacity: 0.75; }
.b360-cal-heat__cell strong { font-size: 0.95rem; }

.b360-cal-heat__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.65rem 0 0;
}

.b360-cal-month-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.b360-cal-month-card {
  display: block;
  padding: 1rem 1.05rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, transform 0.15s;
}

.b360-cal-month-card:hover,
.b360-cal-month-card.is-current {
  border-color: rgba(31, 122, 140, 0.45);
  transform: translateY(-2px);
}

.b360-cal-month-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.b360-cal-month-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
}

.b360-cal-month-card p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.4;
}

.b360-cal-month-card em { font-style: normal; color: var(--sea); font-weight: 700; }

.b360-cal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.b360-cal-month-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-bottom: 1.25rem;
}

.b360-cal-month-strip__item {
  padding: 0.35rem 0.55rem;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  text-decoration: none;
}

.b360-cal-month-strip__item.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.b360-cal-entry-list {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.b360-cal-entry-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1rem;
  padding: 0.9rem 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.b360-cal-entry-card--compact { grid-template-columns: 1fr; }

.b360-cal-entry-card__media { text-decoration: none; }
.b360-cal-entry-card__media .b360-item__media {
  aspect-ratio: 1;
  border-radius: 10px;
  margin: 0;
}

.b360-cal-entry-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.b360-cal-entry-card__head h2 {
  margin: 0;
  font-size: 1.1rem;
  font-family: var(--font-display);
}

.b360-cal-entry-card__head a {
  color: var(--navy);
  text-decoration: none;
}

.b360-cal-entry-card__head a:hover { color: var(--sea); }

.b360-cal-entry-card__note {
  margin: 0 0 0.45rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.b360-cal-entry-card__meta {
  list-style: none;
  margin: 0 0 0.5rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
}

.b360-cal-entry-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  font-size: 0.88rem;
}

.b360-cal-footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}

.b360-cal-hero--species .b360-cal-hero__species {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.25rem;
  align-items: start;
}

.b360-cal-hero--species .b360-item__media {
  aspect-ratio: 1;
  border-radius: 12px;
  margin: 0;
}

.b360-cal-matrix-wrap {
  overflow-x: auto;
  margin-bottom: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.b360-cal-matrix {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  font-size: 0.82rem;
}

.b360-cal-matrix th,
.b360-cal-matrix td {
  padding: 0.45rem 0.35rem;
  text-align: center;
  border-bottom: 1px solid rgba(19, 64, 116, 0.08);
}

.b360-cal-matrix thead th {
  background: #f4f7fa;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.b360-cal-matrix tbody th {
  text-align: left;
  padding-left: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}

.b360-cal-matrix tbody th a {
  color: inherit;
  text-decoration: none;
}

.b360-cal-matrix__cell {
  display: inline-flex;
  width: 1.75rem;
  height: 1.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.b360-cal-matrix__empty { color: #c5ced8; }

@media (max-width: 991px) {
  .b360-cal-month-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .b360-cal-heat__row { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}

@media (max-width: 575px) {
  .b360-cal-month-cards { grid-template-columns: 1fr; }
  .b360-cal-entry-card { grid-template-columns: 72px 1fr; }
  .b360-cal-hero--species .b360-cal-hero__species { grid-template-columns: 1fr; }
}

/* —— Üye hesap / bildirim / toast —— */
.b360-icon-btn,
.b360-avatar-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  padding: 0 0.55rem;
  transition: border-color .15s, background .15s, box-shadow .15s;
}

.b360-icon-btn {
  width: 40px;
  padding: 0;
}

.b360-icon-btn:hover,
.b360-avatar-btn:hover,
.b360-account.is-open > button {
  border-color: rgba(31, 122, 140, 0.45);
  background: rgba(31, 122, 140, 0.06);
}

.b360-icon-btn__badge {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 1.05rem;
  height: 1.05rem;
  padding: 0 0.28rem;
  border-radius: 999px;
  background: var(--danger);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.05rem;
  text-align: center;
  border: 2px solid #fff;
}

.b360-avatar {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--sea), var(--accent));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
}

.b360-avatar--sm { width: 36px; height: 36px; font-size: 0.95rem; }

.b360-avatar-btn__name {
  max-width: 7.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.88rem;
  font-weight: 600;
  padding-right: 0.25rem;
}

.b360-account { position: relative; }

.b360-dropdown {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  z-index: 60;
  width: min(300px, calc(100vw - 1.5rem));
  padding: 0.45rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 16px 40px rgba(11, 37, 69, 0.14);
}

.b360-dropdown--inbox { width: min(340px, calc(100vw - 1.5rem)); }

.b360-dropdown__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.55rem 0.65rem 0.4rem;
}

.b360-dropdown__head strong {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 0.95rem;
}

.b360-dropdown__linkbtn {
  border: 0;
  background: none;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

.b360-dropdown__user {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  padding: 0.65rem 0.7rem 0.75rem;
  margin-bottom: 0.25rem;
  border-bottom: 1px solid var(--line);
}

.b360-dropdown__user strong {
  display: block;
  color: var(--navy);
  font-size: 0.92rem;
}

.b360-dropdown__user span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  word-break: break-all;
}

.b360-dropdown__item {
  display: block;
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  border-radius: 8px;
  padding: 0.65rem 0.7rem;
  color: var(--navy);
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
}

.b360-dropdown__item:hover { background: rgba(19, 64, 116, 0.06); }

.b360-dropdown__item strong {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 0.15rem;
}

.b360-dropdown__item span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.b360-dropdown__item.is-unread {
  background: rgba(31, 122, 140, 0.07);
}

.b360-dropdown__item--danger { color: var(--danger); }

.b360-dropdown__form { margin: 0; }

.b360-dropdown__empty {
  margin: 0;
  padding: 0.9rem 0.75rem 1rem;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

.b360-toasts {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1200; /* sticky reklam (900) üstünde */
  display: grid;
  gap: 0.55rem;
  width: min(380px, calc(100vw - 2rem));
  pointer-events: none;
}

/* Sticky alt reklam varken toast yukarı kayar */
body:has(.b360-ad--sticky) .b360-toasts {
  bottom: calc(72px + 1rem);
}

.b360-toast {
  pointer-events: auto;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.85rem 0.95rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 14px 36px rgba(11, 37, 69, 0.16);
  animation: b360-toast-in .28s ease both;
}

.b360-toast.is-out { animation: b360-toast-out .25s ease both; }

.b360-toast__dot {
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.35rem;
  border-radius: 50%;
  flex: 0 0 auto;
  background: var(--accent);
}

.b360-toast--success .b360-toast__dot { background: #2a9d8f; }
.b360-toast--error .b360-toast__dot { background: var(--danger); }
.b360-toast--warning .b360-toast__dot { background: #c9872a; }
.b360-toast--info .b360-toast__dot { background: var(--sea); }

.b360-toast__msg {
  flex: 1;
  margin: 0;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
}

.b360-toast__close {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  padding: 0 0.15rem;
}

@keyframes b360-toast-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes b360-toast-out {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(8px); }
}

@media (max-width: 720px) {
  .b360-avatar-btn__name { display: none; }
}

/* —— Harita (Leaflet) —— */
.b360-map-page .b360-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.b360-map-shell {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(19, 64, 116, 0.12);
  min-height: min(72vh, 720px);
  background: #0b2545;
}

.b360-map-canvas {
  width: 100%;
  height: min(72vh, 720px);
  z-index: 1;
}

.b360-map-hint {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  z-index: 400;
  background: rgba(11, 37, 69, 0.88);
  color: #eef4ed;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  pointer-events: none;
  white-space: nowrap;
}

.b360-map-panel {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: min(420px, calc(100% - 1.5rem));
  max-height: calc(100% - 1.5rem);
  overflow: auto;
  z-index: 500;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(11, 37, 69, 0.28);
  display: flex;
  flex-direction: column;
}

.b360-map-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1rem 0.5rem;
}

.b360-map-panel__kicker {
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.b360-map-panel__title {
  margin: 0.15rem 0 0;
  font-size: 1.2rem;
  color: var(--navy);
  line-height: 1.25;
}

.b360-map-panel__actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.b360-map-panel__actions .b360-btn[hidden] {
  display: none !important;
}

.b360-map-panel__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0 1rem 0.65rem;
}

.b360-map-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: #eef4ed;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
}

.b360-map-tabs {
  display: flex;
  gap: 0.25rem;
  padding: 0 0.75rem;
  border-bottom: 1px solid rgba(19, 64, 116, 0.1);
}

.b360-map-tabs button {
  border: 0;
  background: transparent;
  padding: 0.55rem 0.7rem;
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.b360-map-tabs button.is-active {
  color: var(--sea);
  border-bottom-color: var(--sea);
}

.b360-map-panel__body {
  padding: 0.9rem 1rem 0.5rem;
}

.b360-map-chance {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 0.85rem;
}

.b360-map-gauge {
  --chance: 0;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(#134074 calc(var(--chance) * 1%), #e8eef4 0);
  position: relative;
}

.b360-map-gauge::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: #fff;
}

.b360-map-gauge strong,
.b360-map-gauge span {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
  line-height: 1.1;
}

.b360-map-gauge strong {
  font-size: 1.05rem;
  color: var(--navy);
}

.b360-map-gauge span {
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 700;
}

.b360-map-chance__label {
  margin: 0;
  font-weight: 800;
  color: #b42318;
  font-size: 0.95rem;
}

.b360-map-chance__sum {
  margin: 0.25rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
}

.b360-map-chance__conf {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  color: var(--navy);
  font-weight: 600;
}

.b360-map-factors {
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.b360-map-factors li {
  background: #f4f7fa;
  border-radius: 8px;
  padding: 0.35rem 0.55rem;
  font-size: 0.78rem;
  display: flex;
  gap: 0.35rem;
  align-items: baseline;
}

.b360-map-factors li span { font-weight: 700; color: var(--navy); }
.b360-map-factors li em { font-style: normal; color: var(--muted); }

.b360-map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.b360-map-grid__item {
  background: #f7fafc;
  border-radius: 10px;
  padding: 0.55rem 0.65rem;
}

.b360-map-grid__item span {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 0.15rem;
}

.b360-map-grid__item strong {
  font-size: 0.95rem;
  color: var(--navy);
}

.b360-map-chart-title {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.b360-map-chart {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 110px;
  padding: 0.25rem 0;
  overflow: hidden;
}

.b360-map-bar {
  flex: 1 1 0;
  min-width: 2px;
  background: #8da9c4;
  border-radius: 2px 2px 0 0;
  opacity: 0.85;
}

.b360-map-bar.is-now { background: #b42318; opacity: 1; }
.b360-map-bar.is-peak { background: #0b2545; opacity: 1; }

.b360-map-panel__note,
.b360-map-panel__foot {
  margin: 0.65rem 0 0;
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.4;
}

.b360-map-panel__foot {
  padding: 0 1rem 0.85rem;
}

.b360-map-loading {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

@media (max-width: 720px) {
  .b360-map-panel {
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    max-height: 58%;
    border-radius: 16px 16px 0 0;
  }

  .b360-map-hint { bottom: auto; top: 0.75rem; }
}

/* —— Av için hava durumu (SEO) —— */
.b360-wx-hero {
  margin-bottom: 1.75rem;
}

.b360-wx-hero__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sea);
}

.b360-wx-region {
  margin-bottom: 1.75rem;
}

.b360-wx-region__title {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  color: var(--navy);
}

.b360-wx-region__sub {
  margin: 0 0 0.55rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--sea);
}

.b360-wx-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
}

.b360-wx-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, transform 0.15s;
}

.b360-wx-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.b360-wx-card strong {
  color: var(--navy);
  font-size: 1.02rem;
}

.b360-wx-card span {
  color: var(--muted);
  font-size: 0.82rem;
}

.b360-wx-now {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.b360-wx-now__gauge {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.b360-wx-now__label {
  margin: 0;
  font-weight: 800;
  color: #b42318;
  font-size: 1.05rem;
}

.b360-wx-now__sum {
  margin: 0.3rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.b360-wx-now__meta {
  margin: 0.4rem 0 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}

.b360-wx-daily {
  margin-bottom: 1.75rem;
}

.b360-wx-daily h2,
.b360-wx-tips h2 {
  margin: 0 0 0.85rem;
  font-size: 1.2rem;
  color: var(--navy);
}

.b360-wx-daily__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.b360-wx-day {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}

.b360-wx-day h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: var(--navy);
}

.b360-wx-day__sky {
  margin: 0 0 0.5rem;
  font-weight: 700;
  color: var(--sea);
  font-size: 0.9rem;
}

.b360-wx-day p {
  margin: 0.2rem 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.b360-wx-tips {
  background: rgba(238, 244, 237, 0.55);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  margin-bottom: 1.75rem;
}

.b360-wx-tips ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.55;
}

.b360-wx-tips li { margin-bottom: 0.35rem; }

.b360-wx-disclaimer {
  margin: 2rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
}

@media (max-width: 719px) {
  .b360-wx-daily__grid { grid-template-columns: 1fr; }
  .b360-wx-now__gauge { grid-template-columns: 1fr; justify-items: start; }
}

/* —— Olta oyunu —— */
.b360-olta {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.15rem 1.25rem;
  margin-bottom: 1.25rem;
}

.b360-olta__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.b360-olta__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--navy);
}

.b360-olta__lead {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.b360-olta__cond {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #eef4ed;
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
  max-width: min(420px, 100%);
}

.b360-olta__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.b360-olta__stats > div {
  background: #0b2545;
  color: #eef4ed;
  border-radius: 10px;
  padding: 0.55rem 0.7rem;
  text-align: center;
}

.b360-olta__stats span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 0.15rem;
}

.b360-olta__stats strong {
  font-size: 1.15rem;
}

.b360-olta__stage {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #0b2545;
  touch-action: none;
}

.b360-olta__stage canvas {
  display: block;
  width: 100%;
  height: auto;
  cursor: crosshair;
}

.b360-olta__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(11, 37, 69, 0.72);
  padding: 1rem;
  z-index: 2;
}

.b360-olta__overlay[hidden] { display: none !important; }

.b360-olta__card {
  width: min(420px, 100%);
  background: #fff;
  border-radius: 14px;
  padding: 1.25rem 1.35rem;
  text-align: center;
}

.b360-olta__card h2 {
  margin: 0 0 0.5rem;
  color: var(--navy);
  font-size: 1.35rem;
}

.b360-olta__card p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.b360-olta__controls {
  text-align: left;
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  color: var(--navy);
  font-size: 0.88rem;
}

.b360-olta__depth {
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.b360-olta__depth button {
  border: 1px solid var(--line);
  background: #f7fafc;
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
}

.b360-olta__depth button.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.b360-olta__hint {
  margin: 0.85rem 0 0 !important;
  font-size: 0.8rem !important;
}

.b360-olta__tension {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
}

.b360-olta__bar {
  flex: 1;
  height: 10px;
  background: #e8eef4;
  border-radius: 999px;
  overflow: hidden;
}

.b360-olta__bar i {
  display: block;
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, #2a9d8f, #c9872a, #b42318);
  border-radius: 999px;
  transition: width 0.08s linear;
}

.b360-olta__banner {
  background: rgba(19, 64, 116, 0.08);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  color: var(--navy);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.b360-olta__banner code {
  font-size: 0.8rem;
  background: #fff;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
}

.b360-olta__extras {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.b360-olta__extras h2 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--navy);
}

.b360-olta__leader {
  list-style: none;
  margin: 0;
  padding: 0;
}

.b360-olta__leader li {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
}

.b360-olta__leader li:last-child { border-bottom: 0; }
.b360-olta__leader strong { color: var(--navy); }
.b360-olta__leader span { color: var(--muted); font-size: 0.82rem; }

@media (max-width: 719px) {
  .b360-olta__stats { grid-template-columns: repeat(2, 1fr); }
  .b360-olta__extras { grid-template-columns: 1fr; }
}

