@import "https://fonts.googleapis.com/css2?family=Unbounded:wght@700;900&family=Golos+Text:wght@400;500&display=swap";
/* [project]/app/page.css [app-client] (css) */
*, :before, :after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f4f6f9;
  --surface: #fff;
  --surface2: #f0f2f5;
  --accent: #2563eb;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
  --radius: 14px;
  --shadow: 0 1px 4px #00000012;
}

html {
  background: var(--bg);
  color: var(--text);
  font-family: Golos Text, sans-serif;
}

body {
  min-height: 100vh;
}

.hero {
  text-align: center;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 60%, #3b82f6 100%);
  padding: 40px 20px 32px;
}

.hero-icon {
  margin-bottom: 10px;
  font-size: 44px;
}

.hero h1 {
  color: #fff;
  letter-spacing: -1px;
  font-family: Unbounded, sans-serif;
  font-size: clamp(22px, 5vw, 38px);
  font-weight: 900;
}

.hero p {
  color: #ffffffb3;
  margin-top: 6px;
  font-size: 14px;
}

.filters {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  z-index: 10;
  box-shadow: var(--shadow);
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  display: flex;
  position: sticky;
  top: 0;
  overflow-x: auto;
}

.filter-btn {
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
  border-radius: 20px;
  flex-shrink: 0;
  padding: 8px 16px;
  font-family: Golos Text, sans-serif;
  font-size: 13px;
  font-weight: 500;
  transition: all .15s;
}

.filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.main {
  max-width: 780px;
  margin: 0 auto;
  padding: 24px 16px;
}

.count {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 13px;
}

.count span {
  color: var(--accent);
  font-weight: 600;
}

.events {
  flex-direction: column;
  gap: 10px;
  display: flex;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  box-shadow: var(--shadow);
  grid-template-columns: 58px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  transition: box-shadow .15s, border-color .15s;
  display: grid;
}

.card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px #2563eb1a;
}

.date-box {
  background: var(--surface2);
  text-align: center;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8px 4px;
  display: flex;
}

.date-day {
  color: var(--accent);
  font-family: Unbounded, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.date-month {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-top: 2px;
  font-size: 10px;
}

.date-time {
  color: var(--muted);
  margin-top: 2px;
  font-size: 10px;
}

.card-body {
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  display: flex;
}

.card-top {
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  display: flex;
}

.badge {
  white-space: nowrap;
  border-radius: 20px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 500;
}

.soon-badge {
  color: var(--accent);
  white-space: nowrap;
  background: #eff6ff;
  border-radius: 20px;
  padding: 2px 8px;
  font-size: 11px;
}

.card-source {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: 11px;
  font-weight: 500;
}

.card-title {
  color: var(--text);
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  display: -webkit-box;
  overflow: hidden;
}

.card-footer {
  flex-wrap: wrap;
  gap: 10px;
  display: flex;
}

.card-meta-item {
  color: var(--muted);
  font-size: 12px;
}

.card-arrow {
  color: var(--muted);
  flex-shrink: 0;
  font-size: 18px;
}

.empty {
  text-align: center;
  color: var(--muted);
  padding: 60px 20px;
}

.empty-icon {
  margin-bottom: 12px;
  font-size: 44px;
}

.empty h3 {
  color: var(--text);
  margin-bottom: 6px;
  font-family: Unbounded, sans-serif;
  font-size: 17px;
}

.loading {
  text-align: center;
  color: var(--muted);
  padding: 60px 20px;
  font-size: 14px;
}

.modal-overlay {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 100;
  background: #0f172a80;
  justify-content: center;
  align-items: flex-end;
  display: flex;
  position: fixed;
  inset: 0;
}

.modal {
  background: var(--surface);
  border-radius: 20px 20px 0 0;
  width: 100%;
  max-height: 85vh;
  padding: 28px 24px 32px;
  animation: .25s slideUp;
  position: relative;
  overflow-y: auto;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

.modal-close {
  background: var(--surface2);
  cursor: pointer;
  width: 32px;
  height: 32px;
  color: var(--muted);
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  display: flex;
  position: absolute;
  top: 16px;
  right: 16px;
}

.modal-close:hover {
  background: var(--border);
}

.modal-badge-row {
  margin-bottom: 8px;
}

.modal-badge {
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
}

.modal-source {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 500;
}

.modal-title {
  color: var(--text);
  margin-bottom: 16px;
  font-family: Unbounded, sans-serif;
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 700;
  line-height: 1.3;
}

.modal-meta {
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  display: flex;
}

.modal-meta-item {
  color: var(--muted);
  align-items: center;
  gap: 8px;
  font-size: 14px;
  display: flex;
}

.modal-meta-icon {
  flex-shrink: 0;
  font-size: 16px;
}

.modal-desc {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.6;
}

.modal-link {
  background: var(--accent);
  color: #fff;
  border-radius: 10px;
  align-items: center;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity .15s;
  display: inline-flex;
}

.modal-link:hover {
  opacity: .9;
}

@media (min-width: 600px) {
  .modal-overlay {
    align-items: center;
    padding: 20px;
  }

  .modal {
    border-radius: 20px;
    max-width: 520px;
  }
}

@media (max-width: 480px) {
  .card {
    grid-template-columns: 52px 1fr auto;
    gap: 10px;
    padding: 12px 14px;
  }

  .date-day {
    font-size: 18px;
  }
}

/*# sourceMappingURL=app_page_0nngo3i.css.map*/