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

:root {
  --bg: #0e0e10;
  --bg-alt: #131315;
  --surface: #1a1a1e;
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.15);
  --text-primary: #f0f0f2;
  --text-secondary: #8a8a96;
  --text-muted: #4a4a56;
  --accent: #38bdf8;
  --accent-dim: rgba(56,189,248,0.15);
  --accent-border: rgba(56,189,248,0.4);
  --upcoming: #2a9d6c;
  --upcoming-dim: rgba(42,157,108,0.15);
  --font: 'Inter', system-ui, sans-serif;
  --radius: 8px;
  --radius-lg: 14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── HEADER ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14,14,16,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  height: 60px;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: cover;
}

.logo-text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.nav {
  display: flex;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
}

.nav-link:hover {
  color: var(--text-primary);
  background: var(--surface);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: 0.2s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px 16px;
  gap: 4px;
}

.mobile-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav.open { display: flex; }

/* ─── HERO ─── */
.hero {
  padding: 96px 0 80px;
  border-bottom: 1px solid var(--border);
  background-image: url('../assets/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -1px; /* перекрывает щель в 1px внизу */
  background: linear-gradient(to bottom, transparent 0%, transparent 80%, rgba(14,14,16,0.95) 100%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-tag {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(44px, 7vw, 72px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-panel {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  width: min(100%, 760px);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 8px;
}

.hero-panel .hero-desc {
  margin-bottom: 0;
}

/* ─── SECTIONS ─── */
.section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.section-alt { background: var(--bg-alt); }

.section-title {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 40px;
}

/* ─── ABOUT ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-text p {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-text p:last-child { margin-bottom: 0; }

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ─── EVENTS ─── */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.event-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
}

.event-upcoming {
  border-color: var(--accent-border);
  background: linear-gradient(135deg, var(--surface), rgba(56,189,248,0.05));
}

.event-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--accent-dim);
  color: var(--accent);
  white-space: nowrap;
}

.event-badge-active {
  background: rgba(34, 197, 94, 0.16);
  color: #4ade80;
}

.event-badge-past {
  background: rgba(255,255,255,0.05);
  color: var(--text-muted);
}

.event-date {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.event-name {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
}

.event-desc {
  font-size: 14px;
  color: var(--text-secondary);
}

.event-world {
  font-size: 13px;
  color: var(--text-muted);
  white-space: nowrap;
}

.event-world span { color: var(--text-secondary); }

/* Ссылки на миры не должны быть синими по умолчанию */
.event-world a,
.event-world-link {
  color: inherit;
  text-decoration: none;
}
.event-world a:hover,
.event-world-link:hover {
  color: var(--accent);
  text-decoration: underline;
}

.events-block { margin-bottom: 36px; }
.events-block:last-child { margin-bottom: 0; }

.events-block-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.event-badge-regular {
  background: rgba(42,157,108,0.15);
  color: var(--upcoming);
}

.events-empty {
  color: var(--text-muted);
  font-size: 14px;
  padding: 16px 0;
}

.event-skeleton {
  height: 80px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  opacity: 0.5;
}

/* ─── TEAM ─── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color 0.15s, transform 0.15s;
  text-decoration: none;
  color: inherit;
}

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

.team-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

.team-name {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 2px;
}

.team-role {
  font-size: 12px;
  color: var(--text-muted);
}

/* ─── FILES ─── */
.files-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.file-category {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.file-cat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.file-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.file-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, background 0.15s;
}

.file-item:hover {
  border-color: var(--accent-border);
  background: var(--accent-dim);
}

.file-icon {
  font-size: 16px;
  color: var(--accent);
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.file-name {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

.file-info {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ─── FOOTER ─── */
.site-footer { padding: 32px 0; }

.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .nav { display: none; }
  .burger { display: flex; }
  .hero { padding: 60px 0 48px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .event-card { grid-template-columns: 1fr; gap: 12px; }
  .event-world { grid-column: 1; }
  .files-grid { grid-template-columns: 1fr; }
  .site-footer .container { flex-direction: column; gap: 8px; text-align: center; }
}

/* ─── BIG BUTTONS ─── */
.big-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.btn-big {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: 0.15s;
  flex: 1;
  min-width: 220px;
}

.btn-big-discord { background: #5865f2; color: #fff; }
.btn-big-discord:hover { background: #4752c4; }

.btn-big-vrchat { background: #00b4d8; color: #fff; }
.btn-big-vrchat:hover { background: #0096c7; }

.btn-big-da { background: #F15F2C; color: #fff; }
.btn-big-da:hover { background: #d4521f; }

.btn-big-boosty { background: #F15F2C; color: #fff; }
.btn-big-boosty:hover { background: #d4521f; }

.btn-big svg { flex-shrink: 0; }

.btn-big-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.btn-big-title { font-size: 16px; font-weight: 600; line-height: 1; }
.btn-big-sub { font-size: 12px; opacity: 0.75; font-weight: 400; }

/* ─── RULES PAGE ─── */
.rules-content { max-width: 720px; }

.rules-chapter { margin-bottom: 48px; }

.rules-chapter-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  color: var(--text-primary);
}

.rules-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rules-list li {
  display: flex;
  list-style: none;
  gap: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.rule-num {
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
  min-width: 32px;
  padding-top: 2px;
  flex-shrink: 0;
}

/* ─── MEMBERS PAGE ─── */
.avatars-intro {
  max-width: 640px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 40px;
}

.coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 18px;
  font-size: 14px;
  color: var(--text-muted);
}

/* ─── DETAILS/SUMMARY ─── */
.about-details { margin-top: 16px; }

.about-details summary {
  cursor: pointer;
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  user-select: none;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.about-details summary::before {
  content: '▶';
  font-size: 10px;
  transition: transform 0.2s;
}

.about-details[open] summary::before { transform: rotate(90deg); }
.about-details summary::-webkit-details-marker { display: none; }

.about-details-content {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-details-content p {
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ─── SLIDER ─── */
.slider-section { padding: 80px 0 0; }
.slider-section .container { padding-bottom: 0; }

.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 32px;
}

.slider-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 16/7;
}

.slider-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.slider-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  color: var(--text-muted);
  font-size: 14px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  font-size: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  z-index: 10;
}

.slider-btn:hover { background: rgba(0,0,0,0.75); }
.slider-prev { left: 16px; }
.slider-next { right: 16px; }

.slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: background 0.15s;
  padding: 0;
}

.slider-dot.active { background: #fff; }

.slider-counter {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  z-index: 10;
}

/* ─── RULES DECK ─── */
.rules-deck {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.rules-deck-viewport { position: relative; min-height: 480px; }

.rules-slide { display: none; padding: 40px 44px 32px; }

.rules-slide.active {
  display: block;
  animation: rulesFadeIn 0.35s ease;
}

@keyframes rulesFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.rules-slide-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.rules-slide-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.25;
}

.rules-slide-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.rules-slide-text:last-child { margin-bottom: 0; }

.rules-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.rules-card {
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid var(--border);
  background: var(--bg-alt);
}

.rules-card-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.rules-card-allowed { border-color: rgba(74,222,128,0.35); }
.rules-card-allowed .rules-card-label { color: #4ade80; }
.rules-card-warning { border-color: rgba(250,204,21,0.35); }
.rules-card-warning .rules-card-label { color: #facc15; }
.rules-card-forbidden { border-color: rgba(248,113,113,0.35); }
.rules-card-forbidden .rules-card-label { color: #f87171; }

.rules-card ul {
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.rules-slide-img {
  width: 100%;
  max-width: 320px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: block;
  margin: 20px auto 0;
}

.rules-slide-img-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 20px;
}

.rules-slide-img-row img {
  height: 220px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  object-fit: cover;
}

.rules-slide-checklist {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.rules-slide-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-secondary);
}

.rules-slide-checklist li::before {
  content: "✔";
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.rules-source-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 14px;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-border);
  padding-bottom: 2px;
}

.rules-source-link:hover { border-color: var(--accent); }

.rules-deck-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}

.rules-nav-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-primary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s, color 0.15s;
}

.rules-nav-btn:hover { border-color: var(--accent); color: var(--accent); }
.rules-nav-btn:disabled { opacity: 0.35; cursor: default; }
.rules-nav-btn:disabled:hover { border-color: var(--border); color: var(--text-primary); }

.rules-deck-counter {
  font-size: 13px;
  color: var(--text-muted);
}

.rules-deck-dots {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  max-width: 200px;
  justify-content: center;
}

.rules-deck-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border-strong);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.15s;
}

.rules-deck-dot.active { background: var(--accent); }

@media (max-width: 640px) {
  .rules-slide { padding: 28px 20px 24px; }
  .rules-deck-viewport { min-height: 560px; }
  .rules-deck-dots { display: none; }
}

/* ─── FLEET ─── */
.fleet-list {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.fleet-item {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: center;
}

.fleet-item-reverse {
  grid-template-columns: 1fr 280px;
}

.fleet-item-reverse .fleet-info { order: 1; }
.fleet-item-reverse .fleet-viewer { order: 2; }

.fleet-viewer {
  width: 280px;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: transparent;
  border: none;
  flex-shrink: 0;
}

.fleet-viewer-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fleet-placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  filter: grayscale(1);
}

.fleet-status {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.fleet-status-active { background: rgba(42,157,108,0.15); color: #2a9d6c; }
.fleet-status-incoming { background: var(--accent-dim); color: var(--accent); }
.fleet-status-planned { background: rgba(255,255,255,0.05); color: var(--text-muted); }

.fleet-name {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.fleet-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .fleet-item,
  .fleet-item-reverse {
    grid-template-columns: 1fr;
  }

  .fleet-item .fleet-info,
  .fleet-item-reverse .fleet-info {
    order: 1;
  }

  .fleet-item .fleet-viewer,
  .fleet-item-reverse .fleet-viewer {
    order: 2;
  }

  .fleet-viewer {
    width: 100%;
    height: 240px;
  }
}

/* ─── BOOSTY ─── */
.btn-big-boosty {
  background: #f45f1a;
  color: #fff;
}

.btn-big-boosty:hover {
  background: #d96010;
}

/* ─── FLEET ─── */
.fleet-list {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.fleet-item {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: center;
}

.fleet-item-reverse {
  grid-template-columns: 1fr 280px;
}

.fleet-item-reverse .fleet-info { order: 1; }
.fleet-item-reverse .fleet-viewer { order: 2; }

.fleet-viewer {
  width: 280px;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: transparent;
  border: none;
  flex-shrink: 0;
}

.fleet-viewer-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fleet-placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  filter: grayscale(1);
}

.fleet-status {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.fleet-status-active { background: rgba(42,157,108,0.15); color: #2a9d6c; }
.fleet-status-incoming { background: var(--accent-dim); color: var(--accent); }
.fleet-status-planned { background: rgba(255,255,255,0.05); color: var(--text-muted); }

.fleet-name {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.fleet-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .fleet-item,
  .fleet-item-reverse {
    grid-template-columns: 1fr;
  }

  .fleet-item .fleet-info,
  .fleet-item-reverse .fleet-info { order: 1; }

  .fleet-item .fleet-viewer,
  .fleet-item-reverse .fleet-viewer { order: 2; }

  .fleet-viewer {
    width: 100%;
    height: 240px;
  }
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo {
    display: block;
    width: 80%;
    max-width: 100%;
    height: auto;
    margin: 0 auto 48px;
    object-fit: contain;
}