/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --bg-top: #0b0c15;
  --bg-bottom: #05060c;
  --panel: #ffffff0a;
  --card-hover: #ffffff12;
  --border: #ffffff14;
  --text: #e8ecf5;
  --muted: #9aa3b5;
  --accent: #ff5fa3;
  --accent-2: #5ed1ff;
  --shadow: 0 15px 45px #00000059;
  --radius: 14px;
  --lightningcss-light: ;
  --lightningcss-dark: initial;
  color-scheme: dark;
}

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

html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  background: radial-gradient(circle at 20% 20%, #ff5fa312, transparent 30%), radial-gradient(circle at 80% 30%, #5ed1ff0d, transparent 35%), linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  margin: 0;
  font-family: Helvetica Neue, Segoe UI, Arial, sans-serif;
}

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

button {
  font: inherit;
}

.page {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 20px 28px 80px;
}

.topbar {
  z-index: 10;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: linear-gradient(#0b0c15e6 0%, #0b0c1566 100%);
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 12px 0;
  display: flex;
  position: sticky;
  top: 0;
}

.logo {
  letter-spacing: .6px;
  font-size: 22px;
  font-weight: 700;
}

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

.menu {
  scrollbar-width: none;
  flex: 1;
  align-items: center;
  gap: 16px;
  display: flex;
  overflow-x: auto;
}

.menu::-webkit-scrollbar {
  display: none;
}

.menu a {
  color: var(--muted);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 14px;
  text-decoration: none;
  transition: color .2s, background-color .2s;
}

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

.actions {
  align-items: center;
  gap: 8px;
  display: flex;
}

.icon-btn {
  background: var(--panel);
  color: var(--text);
  border: 1px solid var(--border);
  cursor: pointer;
  border-radius: 50%;
  place-items: center;
  width: 36px;
  height: 36px;
  transition: background-color .2s, transform .2s;
  display: grid;
}

.icon-btn:hover {
  background: var(--card-hover);
  transform: translateY(-1px);
}

.hero {
  text-align: center;
  padding: 80px 0 50px;
}

.eyebrow {
  color: var(--accent-2);
  letter-spacing: 1px;
  text-transform: uppercase;
  background: #5ed1ff1f;
  border: 1px solid #5ed1ff33;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  display: inline-block;
}

.hero h1 {
  letter-spacing: .4px;
  margin: 18px 0 16px;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
}

.hero-accent {
  color: var(--accent);
}

.search {
  border: 1px solid var(--border);
  max-width: 520px;
  box-shadow: var(--shadow);
  background: #ffffff0a;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin: 0 auto;
  display: flex;
  overflow: hidden;
}

.search input {
  color: var(--text);
  background: none;
  border: none;
  outline: none;
  flex: 1;
  padding: 14px 16px 14px 18px;
  font-size: 15px;
}

.search input::placeholder {
  color: var(--muted);
}

.search button {
  color: #0b0c15;
  cursor: pointer;
  background: linear-gradient(135deg, #ff8bc6, #ff5fa3);
  border: none;
  padding: 14px 18px;
  font-weight: 700;
  transition: transform .2s, box-shadow .2s;
}

.search button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px #ff5fa359;
}

.hint {
  color: var(--muted);
  margin-top: 12px;
  font-size: 14px;
}

.content {
  flex-direction: column;
  gap: 36px;
  display: flex;
}

.section {
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #ffffff03;
  border-radius: 18px;
  padding: 22px 18px 24px;
}

.section-head {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  display: flex;
}

.section-head h2 {
  letter-spacing: .2px;
  margin: 0;
  font-size: 20px;
}

.card-grid {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  display: grid;
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  isolation: isolate;
  cursor: pointer;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 210px;
  padding: 10px;
  transition: transform .2s, border-color .2s, box-shadow .2s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.card:before {
  content: "";
  background: radial-gradient(circle at 30% 30%, #ffffff0f, transparent 50%), linear-gradient(135deg, var(--grad-a, #ff8bc6), var(--grad-b, #7ad7ff));
  opacity: .8;
  z-index: -2;
  position: absolute;
  inset: 0;
}

.card:after {
  content: "";
  z-index: -1;
  background: linear-gradient(#0000 0%, #0009 60%, #000c 100%);
  position: absolute;
  inset: 0;
}

.card:hover {
  border-color: #ffffff2e;
  transform: translateY(-4px);
  box-shadow: 0 18px 30px #00000073;
}

.tag {
  color: #e4f6ff;
  background: #0000007a;
  border: 1px solid #fff3;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  position: absolute;
  top: 12px;
  left: 12px;
}

.duration {
  color: #f7f8fb;
  background: #0009;
  border: 1px solid #ffffff2e;
  border-radius: 8px;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 700;
  position: absolute;
  bottom: 12px;
  right: 12px;
}

.title {
  color: #f0f2f8;
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

.meta {
  color: var(--muted);
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  font-size: 12px;
  display: flex;
}

.dot {
  background: #ffffff59;
  border-radius: 50%;
  width: 6px;
  height: 6px;
}

.more-row {
  justify-content: center;
  margin-top: 16px;
  display: flex;
}

.more-btn {
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  background: none;
  border-radius: 10px;
  padding: 10px 14px;
  transition: background-color .2s, transform .2s;
}

.more-btn:hover {
  background: var(--panel);
  transform: translateY(-1px);
}

.chevron {
  opacity: .6;
  margin-left: 6px;
  display: inline-block;
}

@media (max-width: 960px) {
  .page {
    padding: 14px 18px 60px;
  }

  .topbar {
    flex-wrap: wrap;
    gap: 10px;
  }

  .menu {
    order: 3;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 50px 0 30px;
  }

  .search {
    flex-direction: column;
    align-items: stretch;
    max-width: 100%;
  }

  .search button {
    border-radius: 0 0 12px 12px;
    width: 100%;
  }

  .card {
    min-height: 180px;
  }
}

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