/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --font-geist-sans: "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --font-geist-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --background: 228 27% 8%;
  --foreground: 210 28% 95%;
  --surface: 228 24% 12%;
  --surface-alt: 228 20% 16%;
  --muted-foreground: 214 18% 73%;
  --primary: 192 95% 58%;
  --primary-foreground: 0 0% 100%;
  --accent: 165 94% 52%;
  --card: 228 24% 12%;
  --card-foreground: 0 0% 98%;
  --border: 224 20% 22%;
  --input: 224 20% 22%;
  --ring: 192 95% 58%;
  --radius: .75rem;
  --radius-lg: 1rem;
  --container: 980px;
}

body {
  background: radial-gradient(circle at 0% 0%, hsl(var(--primary) / .18), transparent 35%), radial-gradient(circle at 100% 100%, hsl(var(--accent) / .14), transparent 32%), hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: var(--font-geist-sans), -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0 0 4rem;
}

* {
  box-sizing: border-box;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1rem;
}

.card {
  background-color: hsl(var(--card));
  color: hsl(var(--card-foreground));
  border-radius: var(--radius-lg);
  border: 1px solid hsl(var(--border));
  margin-bottom: 1rem;
  padding: 1.5rem;
  box-shadow: 0 20px 35px -28px #0000008c;
}

.btn {
  border-radius: var(--radius);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  border: 1px solid #0000;
  justify-content: center;
  align-items: center;
  height: 2.75rem;
  padding: 0 1.15rem;
  font-size: .95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
  display: inline-flex;
}

.btn-primary {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  box-shadow: 0 14px 24px -14px hsl(var(--primary));
}

.btn-secondary {
  background-color: hsl(var(--surface-alt));
  color: hsl(var(--foreground));
  border-color: hsl(var(--border));
}

.btn:active {
  opacity: .85;
  transform: scale(.97);
}

.btn-primary:active {
  filter: brightness(.9);
}

.input {
  border-radius: var(--radius);
  border: 1px solid hsl(var(--input));
  width: 100%;
  height: 2.75rem;
  color: hsl(var(--foreground));
  background-color: #0000;
  margin-bottom: 1rem;
  padding: 0 1rem;
  font-size: 1rem;
  display: flex;
}

.input:focus {
  outline: 2px solid hsl(var(--ring));
  outline-offset: 2px;
}

h1, h2, h3 {
  margin-top: 0;
}

label {
  color: hsl(var(--foreground));
  opacity: .85;
  margin-bottom: .5rem;
  font-size: .9rem;
  font-weight: 500;
  display: block;
}

.text-link {
  color: hsl(var(--primary));
  font-size: .9rem;
  text-decoration: none;
}

.section-heading {
  margin-bottom: 1rem;
}

.section-title-text {
  margin: 0;
  font-size: 1.25rem;
}

.section-subtitle {
  color: hsl(var(--muted-foreground));
  margin: .4rem 0 0;
  font-size: .92rem;
}

.landing-shell {
  min-height: 100vh;
  padding: 1rem 0 2rem;
}

.landing-section {
  margin-bottom: 2rem;
}

.hero {
  border: 1px solid hsl(var(--border));
  background: linear-gradient(145deg, hsl(var(--surface-alt) / .75), hsl(var(--surface) / .95));
  border-radius: 1.25rem;
  margin-bottom: 1.8rem;
  padding: 2rem 1.25rem;
}

.hero-eyebrow {
  color: hsl(var(--accent));
  letter-spacing: .12em;
  margin: 0 0 .7rem;
  font-size: .8rem;
  font-weight: 700;
}

.hero-title {
  margin: 0;
  font-size: clamp(1.8rem, 6.6vw, 2.75rem);
  line-height: 1.1;
}

.hero-description {
  color: hsl(var(--muted-foreground));
  margin: .85rem 0 0;
  line-height: 1.65;
}

.hero-actions {
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.3rem;
  display: flex;
}

.feature-grid {
  gap: .75rem;
  display: grid;
}

.feature-card {
  margin-bottom: 0;
}

.feature-icon {
  background-color: hsl(var(--primary) / .2);
  border-radius: .65rem;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
}

.feature-title {
  margin: .85rem 0 .35rem;
  font-size: 1.05rem;
}

.feature-description {
  color: hsl(var(--muted-foreground));
  margin: 0;
  font-size: .9rem;
  line-height: 1.55;
}

.preview-surface {
  background: linear-gradient(165deg, hsl(var(--card)), hsl(var(--surface-alt)));
}

.preview-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .6rem;
  margin-bottom: .95rem;
  display: grid;
}

.preview-list {
  gap: .5rem;
  display: grid;
}

.preview-item {
  border: 1px solid hsl(var(--border));
  color: hsl(var(--muted-foreground));
  border-radius: .7rem;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
  padding: .7rem;
  font-size: .88rem;
  display: flex;
}

.preview-item strong {
  color: hsl(var(--foreground));
  font-weight: 600;
}

.cta-section {
  text-align: center;
}

.cta-actions {
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  display: flex;
}

.app-shell {
  max-width: 700px;
}

.dashboard-header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  display: flex;
}

.dashboard-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.dashboard-user {
  align-items: center;
  gap: .55rem;
  display: flex;
}

.avatar {
  border: 1px solid hsl(var(--border));
  border-radius: 50%;
}

.settings-link {
  font-size: 1.35rem;
  text-decoration: none;
}

.dashboard-highlight {
  background: linear-gradient(130deg, hsl(var(--primary) / .25), hsl(var(--surface)));
  border-color: hsl(var(--primary) / .35);
}

.dashboard-kicker {
  color: hsl(var(--muted-foreground));
  margin: 0 0 .45rem;
  font-size: .9rem;
}

.dashboard-win-rate {
  margin: 0;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.dashboard-stats {
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1rem;
  display: flex;
}

.dashboard-actions {
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-bottom: 2rem;
  display: grid;
}

.btn-wide {
  width: 100%;
}

.stat-badge {
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--surface) / .55);
  border-radius: 999px;
  align-items: baseline;
  gap: .45rem;
  padding: .38rem .7rem;
  display: inline-flex;
}

.stat-badge-accent {
  border-color: hsl(var(--accent) / .6);
  background-color: hsl(var(--accent) / .14);
}

.stat-badge-label {
  color: hsl(var(--muted-foreground));
  font-size: .75rem;
}

.stat-badge-value {
  font-size: .85rem;
}

.recent-list {
  gap: .75rem;
  display: grid;
}

.recent-game-card {
  align-items: center;
  gap: .85rem;
  margin-bottom: 0;
  display: flex;
}

.result-pill {
  color: #fff;
  background-color: hsl(var(--input));
  border-radius: 999px;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  font-weight: 700;
  display: grid;
}

.result-win {
  background-color: hsl(var(--primary));
}

.result-loss {
  background-color: #de3f52;
}

.result-draw {
  background-color: #f5aa14;
}

.recent-game-title {
  margin: 0;
  font-weight: 600;
}

.recent-game-meta {
  color: hsl(var(--muted-foreground));
  margin: .28rem 0 0;
  font-size: .82rem;
}

.empty-state {
  text-align: center;
}

.empty-state-title {
  margin: 0;
}

.empty-state-description {
  color: hsl(var(--muted-foreground));
  margin: .55rem 0 0;
}

.empty-state-action {
  margin-top: 1rem;
}

.login-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 1rem;
  display: flex;
}

.login-card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  width: 100%;
  max-width: 24rem;
  padding: 2rem;
  box-shadow: 0 20px 25px -5px #0000004d, 0 10px 10px -5px #0003;
}

.login-header {
  text-align: center;
  margin-bottom: 2rem;
}

.login-title {
  color: hsl(var(--foreground));
  margin: 0;
  font-size: 1.875rem;
  font-weight: 700;
}

.login-subtitle {
  color: hsl(var(--foreground));
  opacity: .6;
  margin-top: .5rem;
  font-size: .875rem;
}

.login-error {
  border-radius: var(--radius);
  color: #f07575;
  background-color: #570f0f;
  border: 1px solid #732626;
  margin-bottom: 1rem;
  padding: 1rem;
  font-size: .875rem;
}

.login-buttons {
  flex-direction: column;
  gap: .75rem;
  display: flex;
}

.login-btn {
  border-radius: var(--radius);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  border: none;
  justify-content: center;
  align-items: center;
  gap: .75rem;
  width: 100%;
  padding: .85rem 1rem;
  font-size: .95rem;
  font-weight: 600;
  transition: filter .2s;
  display: flex;
}

.login-btn:active {
  filter: brightness(.85);
  transform: scale(.98);
}

.login-btn-kakao {
  color: #000;
  background-color: #fee500;
}

.login-btn-naver {
  color: #fff;
  background-color: #03c75a;
}

.login-btn-google {
  background-color: hsl(var(--card));
  color: hsl(var(--foreground));
  border: 1px solid hsl(var(--border));
}

.login-btn-apple, .login-btn-twitter {
  color: #fff;
  background-color: #000;
}

.login-btn-threads {
  color: #fff;
  background: linear-gradient(to right, #8b5cf6, #ec4899);
}

.calendar-header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  display: flex;
}

.calendar-weekdays {
  text-align: center;
  grid-template-columns: repeat(7, 1fr);
  gap: .5rem;
  margin-bottom: .5rem;
  font-size: .9rem;
  font-weight: bold;
  display: grid;
}

.calendar-grid {
  grid-template-columns: repeat(7, 1fr);
  gap: .5rem;
  display: grid;
}

.calendar-cell {
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  height: 80px;
  margin: 0;
  padding: .5rem;
  transition: filter .15s;
  display: flex;
}

.calendar-cell:active {
  filter: brightness(1.2);
}

.calendar-cell-empty {
  height: 80px;
}

.calendar-day {
  font-weight: bold;
}

.calendar-badge {
  margin-top: auto;
  font-size: .7rem;
}

.calendar-count {
  opacity: .8;
  font-size: .6rem;
}

.calendar-footer {
  text-align: center;
  margin-top: 2rem;
}

.day-sunday {
  color: #ef4444;
}

.day-saturday {
  color: #3b82f6;
}

.page-header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  display: flex;
}

.section-title {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.action-buttons {
  gap: .75rem;
  margin-top: 1.5rem;
  display: flex;
}

.game-list {
  gap: .5rem;
  display: grid;
}

.game-card {
  cursor: pointer;
  margin-bottom: 0;
  transition: border-color .15s;
}

.game-card-selected {
  border: 2px solid hsl(var(--primary));
}

.game-matchup {
  justify-content: space-between;
  font-weight: bold;
  display: flex;
}

.game-team {
  font-size: 1.1rem;
}

.game-meta {
  text-align: center;
  opacity: .7;
  margin-top: .5rem;
  font-size: .8rem;
}

.game-score {
  text-align: center;
  margin-top: .5rem;
  font-size: 1.5rem;
  font-weight: bold;
}

.badge {
  border-radius: 2rem;
  padding: .5rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  display: inline-block;
}

.badge-win {
  background-color: hsl(var(--primary));
  color: #fff;
}

.badge-loss {
  background-color: hsl(var(--input));
  color: #fff;
}

.badge-draw {
  color: #fff;
  background-color: #f2a60d;
}

.result-buttons {
  gap: .5rem;
  margin-bottom: 1rem;
  display: flex;
}

.result-btn {
  background-color: hsl(var(--input));
  color: inherit;
  flex: 1;
}

.result-btn-active {
  background-color: hsl(var(--primary));
  color: #fff;
}

.detail-grid {
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  display: grid;
}

.detail-item {
  flex-direction: column;
  gap: .25rem;
  display: flex;
}

.detail-label {
  opacity: .7;
  font-size: .85rem;
  font-weight: 500;
}

.detail-value {
  font-size: .95rem;
}

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

.photo-thumb {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  width: 100%;
}

.photo-remove {
  color: #fff;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  background: #000000bf;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  font-size: .85rem;
  display: flex;
  position: absolute;
  top: 4px;
  right: 4px;
}

.btn-full {
  width: 100%;
  height: 3rem;
  font-size: 1rem;
}

.btn-danger {
  color: #fff;
  border-radius: var(--radius);
  cursor: pointer;
  background-color: #c32222;
  border: none;
  justify-content: center;
  align-items: center;
  font-size: .9rem;
  font-weight: 500;
  transition: filter .2s;
  display: inline-flex;
}

.btn-danger:active {
  filter: brightness(1.1);
}

.textarea {
  resize: none;
  height: 100px;
  padding-top: .5rem;
}

.toast {
  background-color: hsl(var(--card));
  color: hsl(var(--foreground));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  z-index: 1000;
  padding: .75rem 1.5rem;
  font-size: .9rem;
  animation: .3s toast-in;
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 10px 25px #0000004d;
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateX(-50%)translateY(-1rem);
  }

  to {
    opacity: 1;
    transform: translateX(-50%)translateY(0);
  }
}

.bottom-nav {
  background-color: hsl(var(--card));
  border-top: 1px solid hsl(var(--border));
  padding: .5rem 0;
  padding-bottom: max(.5rem, env(safe-area-inset-bottom));
  z-index: 100;
  justify-content: space-around;
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

.nav-item {
  color: hsl(var(--foreground));
  opacity: .5;
  -webkit-tap-highlight-color: transparent;
  flex-direction: column;
  align-items: center;
  gap: .15rem;
  padding: .3rem 1rem;
  font-size: .75rem;
  text-decoration: none;
  transition: opacity .15s;
  display: flex;
}

.nav-item:active {
  opacity: .8;
}

.nav-item-active {
  opacity: 1;
  color: hsl(var(--primary));
}

.nav-icon {
  font-size: 1.25rem;
}

.skeleton {
  background: linear-gradient(90deg, hsl(var(--card)) 25%, hsl(var(--border)) 50%, hsl(var(--card)) 75%);
  border-radius: var(--radius);
  background-size: 200% 100%;
  animation: 1.5s ease-in-out infinite skeleton-pulse;
}

.skeleton-circle {
  border-radius: 50%;
}

@keyframes skeleton-pulse {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

body {
  padding-bottom: 4rem;
}

@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover {
    filter: brightness(1.1);
  }

  .calendar-cell:hover {
    filter: brightness(1.2);
  }

  .login-btn:hover {
    filter: brightness(.9);
  }

  .nav-item:hover {
    opacity: .8;
  }

  .btn-danger:hover {
    filter: brightness(1.1);
  }

  .game-card:hover {
    border-color: hsl(var(--primary) / .5);
  }
}

@media (max-width: 400px) {
  .container {
    padding: .75rem;
  }

  .card {
    padding: 1.125rem;
  }

  .calendar-cell {
    height: 68px;
    padding: .35rem;
  }

  .calendar-cell-empty {
    height: 68px;
  }

  .calendar-weekdays {
    gap: .25rem;
    font-size: .8rem;
  }

  .calendar-grid {
    gap: .25rem;
  }

  .result-buttons {
    gap: .35rem;
  }

  .badge {
    padding: .4rem 1rem;
    font-size: .95rem;
  }

  .photo-grid {
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  }
}

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