:root {
  --bg: #061522;
  --bg-soft: #0b2235;
  --card: rgba(9, 31, 49, 0.72);
  --line: rgba(124, 170, 201, 0.25);
  --text: #ecf5ff;
  --muted: #b2c8d9;
  --accent: #4dd3b2;
  --accent-2: #ffb85c;
  --shadow: 0 24px 64px rgba(3, 10, 18, 0.48);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 15% 15%, #103150 0%, var(--bg) 45%),
    linear-gradient(140deg, #07131e 15%, #0a2740 60%, #071f31 100%);
  overflow-x: hidden;
}

.bg-shape {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(46px);
  opacity: 0.4;
  animation: drift 18s ease-in-out infinite alternate;
}

.bg-shape-1 {
  width: 360px;
  height: 360px;
  background: #00ffd0;
  top: -90px;
  left: -110px;
}

.bg-shape-2 {
  width: 420px;
  height: 420px;
  background: #ff9d4a;
  bottom: -160px;
  right: -120px;
  animation-delay: 2.5s;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  backdrop-filter: blur(12px);
  background: rgba(6, 21, 34, 0.7);
  border-bottom: 1px solid rgba(168, 210, 237, 0.15);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 22px rgba(77, 211, 178, 0.7);
}

.brand-text {
  font-family: "Unbounded", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.menu {
  display: flex;
  gap: 14px;
}

.menu a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.menu a:hover {
  color: var(--text);
}

main {
  width: min(1120px, 100% - 32px);
  margin: 24px auto 56px;
}

.hero {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(24px, 5vw, 44px);
  background: linear-gradient(135deg, rgba(8, 34, 53, 0.78), rgba(11, 51, 71, 0.52));
  box-shadow: var(--shadow);
  transform: translateY(12px);
  opacity: 0;
  animation: reveal 0.75s ease forwards;
}

.hero-kicker {
  margin: 0 0 12px;
  color: #9ac4df;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.hero h1 {
  margin: 0;
  font-family: "Unbounded", "Segoe UI", sans-serif;
  font-size: clamp(1.7rem, 4.6vw, 2.9rem);
  line-height: 1.12;
}

.hero-text {
  margin: 16px 0 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-stats {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-stats article {
  background: rgba(4, 23, 37, 0.72);
  border: 1px solid rgba(122, 171, 203, 0.24);
  border-radius: 16px;
  padding: 16px;
}

.stat-value {
  margin: 0;
  font-size: 1.55rem;
  font-weight: 800;
  color: #b2ffe6;
}

.stat-label {
  margin: 6px 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.section {
  margin-top: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  background: var(--card);
  box-shadow: var(--shadow);
  transform: translateY(10px);
  opacity: 0;
  animation: reveal 0.75s ease forwards;
  animation-delay: 0.12s;
}

.section-head h2 {
  margin: 0;
  font-family: "Unbounded", "Segoe UI", sans-serif;
  font-size: clamp(1.2rem, 3.3vw, 1.8rem);
}

.section-head p {
  margin: 8px 0 0;
  color: var(--muted);
}

.events-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.event-card {
  border: 1px solid rgba(130, 175, 205, 0.28);
  border-radius: 18px;
  padding: 16px;
  background: linear-gradient(145deg, rgba(7, 31, 47, 0.92), rgba(6, 24, 38, 0.7));
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.event-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.01em;
  color: #dff9ff;
  background: rgba(83, 150, 184, 0.22);
  border: 1px solid rgba(104, 163, 194, 0.4);
}

.event-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.35;
}

.event-desc {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.event-place {
  margin: 8px 0 0;
  font-size: 0.9rem;
  color: #c6e6f8;
}

.event-link {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #9cefd8;
  font-size: 0.9rem;
  text-decoration: none;
}

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

.route-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.route-card {
  border: 1px solid rgba(128, 171, 197, 0.25);
  border-radius: 18px;
  padding: 16px;
  background: rgba(8, 30, 48, 0.82);
}

.route-card h3 {
  margin: 0;
  font-size: 1rem;
}

.route-card p {
  margin: 10px 0 8px;
  color: var(--muted);
  line-height: 1.45;
}

.route-card span {
  color: #9aceea;
  font-size: 0.87rem;
}

.source-list {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.source-list li {
  margin-bottom: 8px;
}

.source-list a {
  color: #99efd5;
}

.site-footer {
  text-align: center;
  padding: 4px 16px 36px;
  color: #a9c5d8;
}

@keyframes reveal {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(24px, 18px) scale(1.1);
  }
}

@media (max-width: 960px) {
  .events-grid,
  .route-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .menu {
    display: none;
  }
}
