/* PlayNest - Tailwind-like CSS Framework (Local Version) */
/* This file contains all necessary styles without CDN dependency */

/* Base Reset & Variables */
:root {
  /* Brand Colors */
  --brand-50: #f5f8ff;
  --brand-100: #eaf0ff;
  --brand-200: #d7e1ff;
  --brand-300: #b8c9ff;
  --brand-400: #8aa7ff;
  --brand-500: #5e86ff;
  --brand-600: #3f68f5;
  --brand-700: #2f52d6;
  --brand-800: #2742ab;
  --brand-900: #243b8a;

  /* Slate Colors */
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;

  /* Emerald Colors */
  --emerald-100: #d1fae5;
  --emerald-200: #a7f3d0;
  --emerald-300: #6ee7b7;
  --emerald-400: #34d399;
  --emerald-500: #10b981;

  /* Other Colors */
  --amber-100: #fef3c7;
  --amber-700: #b45309;
  --fuchsia-100: #fae8ff;
  --fuchsia-700: #a21caf;
  --indigo-300: #a5b4fc;
  --sky-300: #7dd3fc;
  --pink-300: #f9a8d4;
  --rose-100: #ffe4e6;
  --rose-300: #fda4af;
  --rose-400: #fb7185;
  --rose-700: #be123c;
  --violet-300: #c4b5fd;
  --teal-300: #5eead4;
  --lime-100: #d9f99d;
  --lime-300: #bef264;
  --lime-700: #65a30d;
  --orange-100: #ffedd5;
  --orange-300: #fdba74;
  --orange-400: #fb923c;
  --orange-700: #c2410c;
  --amber-300: #fcd34d;
  --amber-400: #fbbf24;
  --purple-400: #c084fc;
  --cyan-400: #22d3ee;
  --green-400: #4ade80;
  --blue-50: #eff6ff;
  --blue-800: #1e40af;
  --blue-700: #1d4ed8;
  --yellow-50: #fefce8;
  --yellow-800: #854d0e;
  --yellow-700: #a16207;
  --red-50: #fef2f2;
  --red-800: #991b1b;
  --red-700: #b91c1c;
  --red-500: #ef4444;
  --gray-50: #f9fafb;
  --gray-800: #1f2937;
  --gray-700: #374151;
}

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

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
  min-height: 100vh;
  background-color: var(--slate-50);
  color: var(--slate-800);
  line-height: 1.5;
}

/* Utility Classes */
.min-h-screen { min-height: 100vh; }
.bg-slate-50 { background-color: var(--slate-50); }
.text-slate-800 { color: var(--slate-800); }

/* Container */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container { max-width: 640px; }
}
@media (min-width: 768px) {
  .container { max-width: 768px; }
}
@media (min-width: 1024px) {
  .container { max-width: 1024px; }
}
@media (min-width: 1280px) {
  .container { max-width: 1280px; }
}

.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-7xl { max-width: 80rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-none { max-width: none; }

/* Padding */
.p-1 { padding: 0.25rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-10 { padding-top: 2.5rem; }
.pb-3 { padding-bottom: 0.75rem; }
.pl-4 { padding-left: 1rem; }
.pl-9 { padding-left: 2.25rem; }
.pr-3 { padding-right: 0.75rem; }

/* Margin */
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mr-2 { margin-right: 0.5rem; }
.ml-4 { margin-left: 1rem; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

/* Flexbox */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }
.min-w-0 { min-width: 0; }

/* Grid */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.col-span-2 { grid-column: span 2 / span 2; }

@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:col-span-1 { grid-column: span 1 / span 1; }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
}
@media (min-width: 1280px) {
  .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.sticky { position: sticky; }
.fixed { position: fixed; }
.inset-0 { inset: 0; }
.top-0 { top: 0; }
.top-4 { top: 1rem; }
.top-24 { top: 6rem; }
.right-0 { right: 0; }
.right-4 { right: 1rem; }
.-top-16 { top: -4rem; }
.-left-10 { left: -2.5rem; }
.-z-10 { z-index: -10; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

/* Sizing */
.w-10 { width: 2.5rem; }
.w-16 { width: 4rem; }
.w-32 { width: 8rem; }
.w-64 { width: 16rem; }
.w-full { width: 100%; }
.h-10 { height: 2.5rem; }
.h-16 { height: 4rem; }
.h-32 { height: 8rem; }
.h-64 { height: 16rem; }
.h-72 { height: 18rem; }
.min-h-screen { min-height: 100vh; }
.aspect-video { aspect-ratio: 16 / 9; }
.aspect-square { aspect-ratio: 1 / 1; }

@media (min-width: 640px) {
  .sm\:w-40 { width: 10rem; }
  .sm\:h-40 { height: 10rem; }
  .sm\:aspect-square { aspect-ratio: 1 / 1; }
}

/* Typography */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.tracking-tight { letter-spacing: -0.025em; }
.text-center { text-align: center; }
.leading-relaxed { line-height: 1.625; }

.text-slate-500 { color: var(--slate-500); }
.text-slate-600 { color: var(--slate-600); }
.text-slate-700 { color: var(--slate-700); }
.text-slate-900 { color: var(--slate-900); }
.text-white { color: #ffffff; }
.text-brand-500 { color: var(--brand-500); }
.text-brand-600 { color: var(--brand-600); }
.text-emerald-500 { color: var(--emerald-500); }
.text-emerald-700 { color: var(--emerald-700); }
.text-emerald-800 { color: #065f46; }
.text-amber-700 { color: var(--amber-700); }
.text-fuchsia-700 { color: var(--fuchsia-700); }
.text-indigo-700 { color: #4338ca; }
.text-lime-700 { color: var(--lime-700); }
.text-orange-700 { color: var(--orange-700); }
.text-rose-700 { color: var(--rose-700); }
.text-blue-800 { color: var(--blue-800); }
.text-blue-700 { color: var(--blue-700); }
.text-yellow-800 { color: var(--yellow-800); }
.text-yellow-700 { color: var(--yellow-700); }
.text-red-800 { color: var(--red-800); }
.text-red-700 { color: var(--red-700); }
.text-orange-800 { color: #9a3412; }
.text-purple-800 { color: #6b21a8; }
.text-gray-800 { color: var(--gray-800); }

@media (min-width: 640px) {
  .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
}

/* Background Colors */
.bg-white { background-color: #ffffff; }
.bg-slate-50 { background-color: var(--slate-50); }
.bg-slate-100 { background-color: var(--slate-100); }
.bg-slate-900 { background-color: var(--slate-900); }
.bg-brand-100 { background-color: var(--brand-100); }
.bg-brand-200 { background-color: var(--brand-200); }
.bg-brand-400 { background-color: var(--brand-400); }
.bg-brand-500 { background-color: var(--brand-500); }
.bg-emerald-100 { background-color: var(--emerald-100); }
.bg-emerald-200 { background-color: var(--emerald-200); }
.bg-emerald-300 { background-color: var(--emerald-300); }
.bg-emerald-400 { background-color: var(--emerald-400); }
.bg-emerald-500 { background-color: var(--emerald-500); }
.bg-amber-100 { background-color: var(--amber-100); }
.bg-fuchsia-100 { background-color: var(--fuchsia-100); }
.bg-indigo-300 { background-color: var(--indigo-300); }
.bg-sky-300 { background-color: var(--sky-300); }
.bg-pink-300 { background-color: var(--pink-300); }
.bg-rose-100 { background-color: var(--rose-100); }
.bg-rose-300 { background-color: var(--rose-300); }
.bg-rose-400 { background-color: var(--rose-400); }
.bg-violet-300 { background-color: var(--violet-300); }
.bg-teal-300 { background-color: var(--teal-300); }
.bg-lime-100 { background-color: var(--lime-100); }
.bg-lime-300 { background-color: var(--lime-300); }
.bg-orange-100 { background-color: var(--orange-100); }
.bg-orange-300 { background-color: var(--orange-300); }
.bg-orange-400 { background-color: var(--orange-400); }
.bg-amber-300 { background-color: var(--amber-300); }
.bg-amber-400 { background-color: var(--amber-400); }
.bg-purple-400 { background-color: var(--purple-400); }
.bg-cyan-400 { background-color: var(--cyan-400); }
.bg-green-400 { background-color: var(--green-400); }
.bg-blue-50 { background-color: var(--blue-50); }
.bg-yellow-50 { background-color: var(--yellow-50); }
.bg-red-50 { background-color: var(--red-50); }
.bg-gray-50 { background-color: var(--gray-50); }

.bg-white\/60 { background-color: rgba(255, 255, 255, 0.6); }
.bg-white\/80 { background-color: rgba(255, 255, 255, 0.8); }
.bg-brand-200\/40 { background-color: rgba(215, 225, 255, 0.4); }
.bg-emerald-200\/40 { background-color: rgba(167, 243, 208, 0.4); }
.bg-brand-300\/70 { background-color: rgba(184, 201, 255, 0.7); }
.bg-emerald-300\/70 { background-color: rgba(110, 231, 183, 0.7); }

/* Gradients */
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.from-brand-100 { --tw-gradient-from: var(--brand-100); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-brand-400 { --tw-gradient-from: var(--brand-400); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-brand-500 { --tw-gradient-from: var(--brand-500); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-emerald-400 { --tw-gradient-from: var(--emerald-400); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-emerald-500 { --tw-gradient-from: var(--emerald-500); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-pink-400 { --tw-gradient-from: var(--pink-300); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-rose-400 { --tw-gradient-from: var(--rose-400); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-orange-400 { --tw-gradient-from: var(--orange-400); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-purple-400 { --tw-gradient-from: var(--purple-400); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-teal-400 { --tw-gradient-from: var(--teal-300); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-lime-400 { --tw-gradient-from: var(--lime-300); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-indigo-300 { --tw-gradient-from: var(--indigo-300); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-violet-300 { --tw-gradient-from: var(--violet-300); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-emerald-300 { --tw-gradient-from: var(--emerald-300); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-lime-300 { --tw-gradient-from: var(--lime-300); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-orange-300 { --tw-gradient-from: var(--orange-300); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-emerald-100 { --tw-gradient-to: var(--emerald-100); }
.to-emerald-400 { --tw-gradient-to: var(--emerald-400); }
.to-emerald-500 { --tw-gradient-to: var(--emerald-500); }
.to-rose-400 { --tw-gradient-to: var(--rose-400); }
.to-amber-400 { --tw-gradient-to: var(--amber-400); }
.to-indigo-400 { --tw-gradient-to: #818cf8; }
.to-cyan-400 { --tw-gradient-to: var(--cyan-400); }
.to-green-400 { --tw-gradient-to: var(--green-400); }
.to-sky-300 { --tw-gradient-to: var(--sky-300); }
.to-rose-300 { --tw-gradient-to: var(--rose-300); }
.to-indigo-300 { --tw-gradient-to: var(--indigo-300); }
.to-teal-300 { --tw-gradient-to: var(--teal-300); }
.to-emerald-300 { --tw-gradient-to: var(--emerald-300); }
.to-amber-300 { --tw-gradient-to: var(--amber-300); }
.via-white { --tw-gradient-via: #ffffff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to); }

/* Borders */
.border { border-width: 1px; border-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-l-4 { border-left-width: 4px; border-left-style: solid; }
.border-slate-200 { border-color: var(--slate-200); }
.border-slate-300 { border-color: var(--slate-300); }
.border-brand-400 { border-color: var(--brand-400); }
.border-emerald-400 { border-color: var(--emerald-400); }
.border-orange-400 { border-color: var(--orange-400); }
.border-slate-200\/60 { border-color: rgba(226, 232, 240, 0.6); }
.border-slate-200\/70 { border-color: rgba(226, 232, 240, 0.7); }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }
.overflow-hidden { overflow: hidden; }

/* Shadow */
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.ring-1 { box-shadow: 0 0 0 1px var(--tw-ring-color); }
.ring-slate-200\/70 { --tw-ring-color: rgba(226, 232, 240, 0.7); }

/* Effects */
.blur-3xl { filter: blur(64px); }
.backdrop-blur { backdrop-filter: blur(8px); }
.pointer-events-none { pointer-events: none; }

/* Display */
.hidden { display: none; }
.block { display: block; }
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }

/* List */
.list-disc { list-style-type: disc; }
.list-inside { list-style-position: inside; }

/* Transitions */
.transition { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.transform { transform: var(--tw-transform); }
.-translate-y-1 { --tw-translate-y: -0.25rem; transform: translate(var(--tw-translate-x), var(--tw-translate-y)); }
.translate-x-full { --tw-translate-x: 100%; transform: translate(var(--tw-translate-x), var(--tw-translate-y)); }

/* Selection */
.selection\:bg-brand-200\/60::selection { background-color: rgba(215, 225, 255, 0.6); }

/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Resize */
.resize-none { resize: none; }

/* Responsive Visibility */
@media (min-width: 640px) {
  .sm\:flex { display: flex; }
  .sm\:hidden { display: none; }
  .sm\:flex-row { flex-direction: row; }
  .sm\:items-center { align-items: center; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .sm\:pt-14 { padding-top: 3.5rem; }
  .sm\:p-10 { padding: 2.5rem; }
}

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
}

@media (min-width: 1024px) {
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
}

/* Hover States */
.hover\:bg-slate-50:hover { background-color: var(--slate-50); }
.hover\:bg-slate-100:hover { background-color: var(--slate-100); }
.hover\:bg-slate-900:hover { background-color: var(--slate-900); }
.hover\:bg-brand-600:hover { background-color: var(--brand-600); }
.hover\:text-slate-900:hover { color: var(--slate-900); }
.hover\:text-brand-600:hover { color: var(--brand-600); }
.hover\:shadow-md:hover { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.hover\:-translate-y-1:hover { --tw-translate-y: -0.25rem; transform: translate(var(--tw-translate-x), var(--tw-translate-y)); }

/* Focus States */
.focus\:border-brand-400:focus { border-color: var(--brand-400); }
.focus\:bg-white:focus { background-color: #ffffff; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px var(--tw-ring-color); }
.focus\:ring-brand-100:focus { --tw-ring-color: var(--brand-100); }
.focus\:ring-brand-200:focus { --tw-ring-color: var(--brand-200); }
.focus\:outline-none:focus { outline: none; }
.outline-none { outline: none; }
.ring-0 { box-shadow: none; }

/* Custom Components */
.header-blur {
  backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.8);
}

@supports (backdrop-filter: blur(8px)) {
  .supports-\[backdrop-filter\]\:bg-white\/60 {
    background-color: rgba(255, 255, 255, 0.6);
  }
}

/* Form Elements */
input, textarea, button {
  font-family: inherit;
}

input[type="text"],
input[type="email"],
input[type="search"],
textarea {
  appearance: none;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}

/* Prose Styles for Content */
.prose p {
  margin-bottom: 1rem;
}

.prose h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.prose h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.prose ul {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

/* Notification Animation */
.notification-enter {
  animation: slideIn 0.3s ease-out forwards;
}

.notification-exit {
  animation: slideIn 0.3s ease-in reverse forwards;
}

/* Custom Badge Styles */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}

.badge-amber {
  background-color: var(--amber-100);
  color: var(--amber-700);
}

.badge-fuchsia {
  background-color: var(--fuchsia-100);
  color: var(--fuchsia-700);
}

.badge-rose {
  background-color: var(--rose-100);
  color: var(--rose-700);
}

.badge-emerald {
  background-color: var(--emerald-100);
  color: var(--emerald-700);
}

.badge-indigo {
  background-color: #e0e7ff;
  color: #4338ca;
}

.badge-lime {
  background-color: var(--lime-100);
  color: var(--lime-700);
}

.badge-orange {
  background-color: var(--orange-100);
  color: var(--orange-700);
}

/* Card Hover Effect */
.card-hover {
  transition: all 0.2s ease;
}

.card-hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Button Styles */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  background: linear-gradient(to right, var(--brand-500), var(--emerald-500));
  color: white;
  font-weight: 600;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

.btn-primary:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  background: white;
  color: var(--slate-700);
  border: 1px solid var(--slate-200);
  transition: all 0.15s ease;
}

.btn-secondary:hover {
  background: var(--slate-50);
}

/* Game Card */
.game-card {
  background: white;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(226, 232, 240, 0.7);
  transition: all 0.15s ease;
}

.game-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Section Styles */
section {
  margin-bottom: 2rem;
}

/* Responsive Grid for Games - Mobile 2 columns, Desktop 3-4 columns */
.game-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .game-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (min-width: 768px) {
  .game-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .game-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

@media (min-width: 1280px) {
  .game-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Mobile game card compact style */
@media (max-width: 639px) {
  .game-card {
    padding: 0.5rem;
    border-radius: 0.75rem;
  }

  .game-card .aspect-video {
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .game-card h3 {
    font-size: 0.8125rem;
    line-height: 1.25rem;
  }

  .game-card .rounded-full {
    font-size: 0.6875rem;
    padding: 0.125rem 0.375rem;
  }
}

/* Lazy Load Image */
img[data-src] {
  opacity: 0;
  transition: opacity 0.3s ease;
}

img.loaded {
  opacity: 1;
}

img.lazy-loaded {
  opacity: 1;
}

/* Additional utility classes for navigation */
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.pl-10 { padding-left: 2.5rem; }
.pl-12 { padding-left: 3rem; }
.pr-4 { padding-right: 1rem; }
.left-3 { left: 0.75rem; }
.left-4 { left: 1rem; }
.gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; }
.top-1\/2 { top: 50%; }
.-translate-y-1\/2 { transform: translateY(-50%); }

/* Nav link styles */
#desktop-nav a,
#mobile-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

/* SVG icon styles */
svg {
  display: block;
}

/* Search input focus state */
input[type="search"]:focus {
  outline: none;
  border-color: var(--brand-400);
  background-color: #ffffff;
}
