:root {
  --bg: #070b14;
  --bg-soft: #111827;
  --panel: rgba(15, 23, 42, 0.84);
  --panel-strong: rgba(15, 23, 42, 0.96);
  --line: rgba(148, 163, 184, 0.18);
  --text: #e5edf7;
  --muted: #94a3b8;
  --heading: #f8fafc;
  --accent: #60a5fa;
  --accent-strong: #38bdf8;
  --danger: #fb7185;
  --shadow: 0 24px 70px rgba(2, 6, 23, 0.45);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Arial, sans-serif;
  color: var(--text);
  /* Match photo page (style_foto.css) so ?galery ?info ?comments ?top share the same backdrop. */
  background:
    radial-gradient(circle at top, rgba(56, 189, 248, 0.15), transparent 30%),
    radial-gradient(circle at right, rgba(129, 140, 248, 0.14), transparent 24%),
    linear-gradient(180deg, #04070d 0%, #02040a 100%);
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
}

/* thumb/*.jpg: fixed grid cell (small preview files). */
img.site-thumb {
  width: 30px;
  height: 30px;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  vertical-align: middle;
}

/* thumb_big/*.jpg: larger preview (not forced to 30×30). */
img.site-thumb-big {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 220px;
  object-fit: contain;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: #ffffff;
}

input,
select,
textarea,
button {
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.82);
  color: var(--text);
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(96, 165, 250, 0.8);
  box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.12);
}

textarea {
  min-height: 9rem;
  resize: vertical;
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(4, 7, 13, 0.74);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.header-inner,
.content-wrap,
.footer-inner {
  width: min(calc(100% - 32px), var(--content));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #020617;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-copy strong {
  color: var(--heading);
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav-wrap {
  position: relative;
  z-index: 21;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
}

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

.site-nav__checkbox:focus-visible + .site-nav__toggle {
  outline: 2px solid rgba(96, 165, 250, 0.65);
  outline-offset: 2px;
}

@media (min-width: 901px) {
  .site-nav__checkbox {
    display: none;
  }
}

.site-nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.62);
  border: 1px solid rgba(96, 165, 250, 0.28);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  user-select: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.site-nav__toggle:hover {
  color: #ffffff;
  border-color: rgba(96, 165, 250, 0.45);
  background: rgba(30, 41, 59, 0.88);
}

.site-nav__toggle-close {
  display: none;
}

.site-nav__checkbox:checked + .site-nav__toggle .site-nav__toggle-open {
  display: none;
}

.site-nav__checkbox:checked + .site-nav__toggle .site-nav__toggle-close {
  display: inline-flex;
}

.site-nav__icon-dots,
.site-nav__icon-close {
  display: block;
  flex-shrink: 0;
}

.site-nav,
#menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.62);
  border: 1px solid transparent;
  color: var(--muted);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  transform: translateY(-1px);
  color: #ffffff;
  border-color: rgba(96, 165, 250, 0.35);
  background: rgba(30, 41, 59, 0.88);
}

.content-wrap {
  padding: 48px 0 72px;
}

.hero-card,
.page-card,
.panel-card {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.72));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-card {
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
  color: #bfdbfe;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.hero-card h1,
.page-card h1,
.page-card h2,
.panel-card h2 {
  margin: 0 0 0.9rem;
  color: var(--heading);
  line-height: 1.08;
}

.hero-card h1 {
  max-width: 16ch;
  font-size: clamp(2.4rem, 7vw, 4.9rem);
}

.lead {
  margin: 0;
  max-width: 70ch;
  color: #cbd5e1;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.3rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #03111f;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 14px 34px rgba(56, 189, 248, 0.18);
}

input[type="reset"] {
  background: rgba(30, 41, 59, 0.9);
  color: #dbeafe;
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: none;
}

.button.button-secondary {
  background: rgba(30, 41, 59, 0.9);
  color: #dbeafe;
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.gallery-grid--tiles {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
  gap: 1.15rem;
  align-items: stretch;
}

.gallery-item {
  display: block;
  overflow: hidden;
  width: fit-content;
  max-width: 100%;
  justify-self: start;
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.24);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.gallery-item--tile {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: none;
  justify-self: stretch;
  min-width: 0;
  padding: 0;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
}

.gallery-item--tile:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.gallery-item__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  /* Letterbox / pillarbox: full image visible, square frame only in the layout (no source file changes). */
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.92), rgba(2, 6, 23, 0.75));
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.gallery-item__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.08);
  border-radius: inherit;
}

.gallery-item__img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
  transform: scale(1);
  transition: transform 0.35s ease;
}

/* Galerija, TOP, comment list: image fills the 1:1 frame edge-to-edge. */
.gallery-grid--galery .gallery-item__img,
.comment-preview-thumb .gallery-item__img {
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center;
}

.gallery-item--tile:hover .gallery-item__img,
.comment-preview-thumb:hover .gallery-item__img {
  transform: scale(1.03);
}

.gallery-item__caption {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  padding: 0.75rem 0.9rem 0.95rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  flex: 1 1 auto;
  min-height: 2.85em;
}

.gallery-item--tile-top .gallery-item__caption {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
  min-height: 3.4em;
}

.gallery-item__meta-line {
  display: block;
  font-size: 0.8rem;
  line-height: 1.3;
  color: var(--muted);
  opacity: 0.92;
  margin-bottom: 0.3rem;
}

.top-empty {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
}

.gallery-item:hover {
  transform: translateY(-4px);
  border-color: rgba(96, 165, 250, 0.34);
  box-shadow: 0 24px 44px rgba(2, 6, 23, 0.35);
}

/* Exclude .gallery-item__img: it must keep width/height 100% inside the tile media box. */
.gallery-item img:not(.gallery-item__img),
.borderis {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}

.gallery-item:not(.gallery-item--tile) span {
  display: block;
  padding: 0.8rem 1rem 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Small archive index (intrinsic thumb size, not stretched to grid cells) */
.gallery-grid--micro {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  align-items: flex-start;
  justify-content: flex-start;
}

.gallery-item--micro {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  max-width: 44px;
  min-width: 44px;
  min-height: 44px;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 12px;
  overflow: hidden;
}

.gallery-item--micro:hover {
  transform: none;
  box-shadow: none;
  border-color: transparent;
}

.gallery-item--micro img {
  display: block;
}

.gallery-item--micro-thumb-only {
  line-height: 0;
}

.gallery-item--micro span {
  display: block;
  padding: 0.2rem 0 0;
  font-size: 0.72rem;
  color: var(--muted);
  max-width: 4.5rem;
  line-height: 1.2;
  text-align: center;
}

.page-card,
.panel-card {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.page-card + .page-card,
.panel-card + .panel-card {
  margin-top: 1.25rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.stat-tile {
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(30, 41, 59, 0.56);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.stat-tile strong {
  display: block;
  margin-top: 0.25rem;
  color: var(--heading);
  font-size: 1.5rem;
}

.comments-sort-label {
  margin: 1.15rem 0 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.comments-sort {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0;
}

.comments-sort-btn {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid var(--line);
  text-decoration: none;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.comments-sort-btn:hover {
  color: var(--heading);
  border-color: rgba(148, 163, 184, 0.35);
}

.comments-sort-btn.is-active {
  color: var(--heading);
  background: rgba(59, 130, 246, 0.18);
  border-color: rgba(59, 130, 246, 0.45);
}

.comments-feed {
  display: grid;
  gap: 1rem;
}

.comment-preview {
  display: grid;
  grid-template-columns: minmax(140px, 220px) 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.74);
  border: 1px solid var(--line);
}

.comment-preview-thumb {
  display: block;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  border-radius: var(--radius-md);
  line-height: 0;
  text-decoration: none;
  color: inherit;
}

.comment-preview-thumb:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.comment-preview-thumb .gallery-item__media {
  border-radius: var(--radius-md);
}

.comment-preview-meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.comment-preview h3 {
  margin: 0 0 0.5rem;
  color: var(--heading);
  font-size: 1.15rem;
}

.comment-preview p {
  margin: 0.65rem 0 0;
}

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(4, 7, 13, 0.8);
}

.site-footer__band--nav {
  padding: 1rem 1rem 0.9rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  background: rgba(15, 23, 42, 0.28);
}

.site-footer-nav {
  max-width: var(--content);
  margin: 0 auto;
  width: min(calc(100% - 32px), var(--content));
}

.site-footer-nav__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.45rem 0.6rem;
}

.site-footer-nav .nav-link {
  min-height: 40px;
  padding: 0.55rem 0.85rem;
  font-size: 0.88rem;
}

.site-footer__band--social {
  padding: 1.2rem 1rem 1rem;
  background: rgba(15, 23, 42, 0.42);
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.site-social-strip-wrap {
  max-width: var(--content);
  margin: 0 auto;
  width: min(calc(100% - 32px), var(--content));
  padding: 1rem 1.15rem 1.15rem;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: linear-gradient(165deg, rgba(30, 41, 59, 0.55), rgba(15, 23, 42, 0.72));
  box-shadow: 0 10px 32px rgba(2, 6, 23, 0.18);
}

.site-social-strip__label {
  margin: 0 0 0.75rem;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-social-strip {
  margin: 0;
}

.site-social-strip__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.4rem 0.65rem;
}

.site-social-strip__link {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(96, 165, 250, 0.22);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.site-social-strip__link:hover {
  background: rgba(59, 130, 246, 0.16);
  border-color: rgba(96, 165, 250, 0.4);
  text-decoration: none;
}

.footer-inner {
  padding: 1.25rem 0 2.2rem;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.footer-inner p,
.footer-inner small {
  margin: 0.4rem 0;
}

.footer-inner img {
  vertical-align: middle;
}

.warning {
  color: var(--danger);
  font-weight: 700;
}

.black_link,
.date_small,
.dark,
.comment,
.mega_title,
.mega_title_black,
.whiteborder,
.darkborder,
#slepts2,
#slepts2 h1,
#slepts2 h2,
#slepts2 b,
#slepts2 a {
  color: inherit;
}

.darkborder,
.whiteborder {
  border-radius: 12px;
}

@media (max-width: 900px) {
  /* pan-x pan-y only: global manipulation also enables pinch-zoom and can zoom content from empty areas. */
  html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    touch-action: pan-x pan-y;
    overflow-x: hidden;
  }

  body {
    overscroll-behavior-x: none;
    overscroll-behavior-y: auto;
    overflow-x: hidden;
    touch-action: pan-x pan-y;
  }

  *,
  *::before,
  *::after {
    touch-action: pan-x pan-y;
  }

  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.5rem 0.75rem;
  }

  .brand {
    min-width: 0;
    justify-self: start;
  }

  .site-nav-wrap {
    position: relative;
    z-index: 40;
    justify-self: end;
    width: auto;
    max-width: none;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    gap: 0.35rem;
  }

  .site-nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f1f5f9;
    border-color: rgba(147, 197, 253, 0.5);
    background: rgba(30, 41, 59, 0.96);
    min-height: 44px;
    min-width: 44px;
    width: 44px;
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
    transition: opacity 0.22s ease, transform 0.22s ease, border-color 0.2s ease, background 0.2s ease;
  }

  body.site-nav--scrolling:not(:has(#site-nav-toggle:checked)) .site-nav__toggle {
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: auto;
    width: min(20rem, calc(100vw - 32px));
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
    padding: 0.65rem;
    margin: 0;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.98);
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.5);
    justify-content: flex-start;
  }

  .site-nav__checkbox:checked ~ .site-nav {
    display: flex;
  }

  #menu {
    width: 100%;
    max-width: 100%;
    justify-content: flex-start;
  }

  .comment-preview {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .brand-copy small {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(4, 7, 13, 0.94);
  }

  .header-inner,
  .content-wrap,
  .footer-inner {
    width: min(calc(100% - 24px), var(--content));
  }

  .hero-card {
    padding: 1.25rem;
  }

  .gallery-grid--tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .gallery-item__caption {
    padding: 0.55rem 0.55rem 0.7rem;
    font-size: 0.78rem;
  }

  .site-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  #menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .nav-link {
    width: 100%;
    max-width: none;
    justify-content: flex-start;
  }
}

/* First-visit order picker */
.site-welcome {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  box-sizing: border-box;
  pointer-events: auto;
}

.site-welcome__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 24, 0.72);
  backdrop-filter: blur(6px);
}

.site-welcome__box {
  position: relative;
  z-index: 1;
  max-width: 32rem;
  width: 100%;
  padding: 1.5rem 1.35rem 1.4rem;
  border-radius: 14px;
  background: linear-gradient(165deg, rgba(24, 32, 52, 0.98), rgba(14, 18, 30, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
}

.site-welcome__title {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #f1f5f9;
}

.site-welcome__text {
  margin: 0 0 1.15rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #cbd5e1;
}

.site-welcome__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

@media (min-width: 520px) {
  .site-welcome__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.site-welcome__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.65);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.site-welcome__btn:hover {
  border-color: rgba(125, 211, 252, 0.45);
  color: #f8fafc;
  background: rgba(30, 41, 59, 0.85);
}

.site-welcome__btn--primary {
  border-color: rgba(56, 189, 248, 0.55);
  background: linear-gradient(165deg, rgba(14, 165, 233, 0.35), rgba(37, 99, 235, 0.35));
}

.site-welcome__btn--primary:hover {
  border-color: rgba(125, 211, 252, 0.75);
  background: linear-gradient(165deg, rgba(14, 165, 233, 0.5), rgba(37, 99, 235, 0.5));
}
