/* Vibe CMS Official Website Styles */
/* Built with CURSY CSS Framework */

/* ===== RESET AND BASE STYLES ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

body {
  color: #ffffff;
  background-color: #111827;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: inherit;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #ffffff;
  text-shadow: 0 0 10px #22d3ee, 0 0 20px #22d3ee, 0 0 30px #22d3ee;
}

p {
  margin-bottom: 1rem;
  color: #cbd5e1;
  line-height: 1.6;
}

a {
  color: #6366f1;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #4f46e5;
}

/* ===== LAYOUT FIXES ===== */
img {
  max-width: 100%;
  height: auto;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

/* ===== CSS VARIABLES ===== */
:root {
  --vibe-primary: #6366f1;
  --vibe-secondary: #10b981;
  --vibe-accent: #f59e0b;
  --vibe-gradient: linear-gradient(135deg, #6366f1, #8b5cf6, #ec4899);
  --vibe-dark: #0f172a;
  --vibe-light: #f8fafc;
  --vibe-muted: #64748b;
}

/* ===== HERO SECTION ===== */
.vibe-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.vibe-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 30% 40%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
}

.vibe-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.vibe-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--vibe-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.vibe-hero-subtitle {
  font-size: 1.25rem;
  color: #94a3b8;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.vibe-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.vibe-btn-primary {
  background: var(--vibe-gradient);
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
}

.vibe-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.6);
}

/* ===== FORCE WHITE TEXT ON COLORED BUTTONS ===== */
button[class*="bg-"]:not([class*="bg-gray-100"]):not([class*="bg-green-100"]):not([class*="bg-cyan-100"]):not([class*="bg-purple-100"]):not([class*="bg-orange-100"]):not([class*="bg-blue-100"]):not([class*="bg-pink-100"]):not([class*="bg-red-100"]):not([class*="bg-indigo-100"]):not([class*="bg-teal-100"]),
a[class*="bg-"]:not([class*="bg-gray-100"]):not([class*="bg-green-100"]):not([class*="bg-cyan-100"]):not([class*="bg-purple-100"]):not([class*="bg-orange-100"]):not([class*="bg-blue-100"]):not([class*="bg-pink-100"]):not([class*="bg-red-100"]):not([class*="bg-indigo-100"]):not([class*="bg-teal-100"]) {
  color: white !important;
}

.vibe-btn-primary {
  color: white !important;
}

.vibe-btn-secondary {
  background: transparent;
  color: #6366f1;
  padding: 1rem 2rem;
  border: 2px solid #6366f1;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.vibe-btn-secondary:hover {
  background: #6366f1;
  color: white;
}

/* ===== FEATURES SECTION ===== */
.vibe-features {
  padding: 5rem 0;
  background: white;
}

.vibe-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.vibe-feature-card {
  background: #f8fafc;
  padding: 2.5rem;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  text-align: center;
}

.vibe-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.vibe-feature-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  background: var(--vibe-gradient);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
}

.vibe-feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.vibe-feature-description {
  color: #64748b;
  line-height: 1.6;
}

/* ===== MARKETPLACE PREVIEW ===== */
.vibe-marketplace-preview {
  padding: 5rem 0;
  background: #f8fafc;
}

.vibe-marketplace-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.vibe-marketplace-item {
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.vibe-marketplace-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.vibe-marketplace-image {
  height: 160px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
}

.vibe-marketplace-content {
  padding: 1.5rem;
}

.vibe-marketplace-title {
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.vibe-marketplace-meta {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 1rem;
}

.vibe-marketplace-price {
  font-weight: 700;
  color: #10b981;
}

/* ===== TESTIMONIALS ===== */
.vibe-testimonials {
  padding: 5rem 0;
  background: white;
}

.vibe-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.vibe-testimonial-card {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 1rem;
  border-left: 4px solid #6366f1;
}

.vibe-testimonial-quote {
  font-style: italic;
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.vibe-testimonial-author {
  font-weight: 600;
  color: #1e293b;
}

.vibe-testimonial-role {
  font-size: 0.875rem;
  color: #64748b;
}

/* ===== FOOTER ===== */
.vibe-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 3rem 0 1rem;
}

.vibe-footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.vibe-footer-section h4 {
  color: white;
  font-weight: 600;
  margin-bottom: 1rem;
}

.vibe-footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vibe-footer-section ul li {
  margin-bottom: 0.5rem;
}

.vibe-footer-section ul li a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.vibe-footer-section ul li a:hover {
  color: #6366f1;
}

.vibe-footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.875rem;
}

/* ===== NAVIGATION ===== */
.vibe-nav {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #334155;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.vibe-nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.vibe-nav-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #6366f1;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.vibe-nav-brand::before {
  content: '🌈';
  font-size: 1.25rem;
}

.vibe-nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.vibe-nav-link {
  color: #e2e8f0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.vibe-nav-link:hover {
  color: #6366f1;
}

.vibe-nav-link::after {
  content: '';
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  width: 0;
  height: 2px;
  background: #6366f1;
  transition: width 0.3s ease;
}

.vibe-nav-link:hover::after {
  width: 100%;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .vibe-hero-title {
    font-size: 2.5rem;
  }

  .vibe-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .vibe-nav-menu {
    display: none;
  }

  .vibe-features-grid,
  .vibe-marketplace-grid,
  .vibe-testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vibe-animate {
  animation: fadeInUp 0.6s ease-out;
}

.vibe-animate:nth-child(2) { animation-delay: 0.2s; }
.vibe-animate:nth-child(3) { animation-delay: 0.4s; }
.vibe-animate:nth-child(4) { animation-delay: 0.6s; }

/* ===== UTILITIES ===== */
.vibe-section {
  padding: 5rem 0;
}

.vibe-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  margin-bottom: 1rem;
}

.vibe-section-subtitle {
  font-size: 1.125rem;
  color: #64748b;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.vibe-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ===== TAILWIND-LIKE UTILITY CLASSES ===== */

/* Text sizes */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.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-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }

/* Font weights */
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* Text colors */
.text-gray-100 { color: #f3f4f6; }
.text-gray-200 { color: #e5e7eb; }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-gray-800 { color: #1f2937; }
.text-gray-900 { color: #111827; }

.text-cyan-400 { color: #22d3ee; }
.text-cyan-600 { color: #0891b2; }
.text-cyan-700 { color: #0e7490; }
.text-cyan-800 { color: #155e75; }

.text-green-400 { color: #4ade80; }
.text-green-600 { color: #16a34a; }
.text-green-700 { color: #15803d; }
.text-green-800 { color: #166534; }

.text-purple-400 { color: #a78bfa; }
.text-purple-600 { color: #9333ea; }
.text-purple-700 { color: #7c3aed; }
.text-purple-800 { color: #6b21a8; }

.text-pink-400 { color: #f472b6; }
.text-pink-600 { color: #db2777; }
.text-pink-700 { color: #be185d; }

.text-orange-400 { color: #fb923c; }
.text-orange-600 { color: #ea580c; }
.text-orange-700 { color: #c2410c; }

.text-yellow-400 { color: #facc15; }

/* Background colors */
.bg-white { background-color: #ffffff; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-gray-200 { background-color: #e5e7eb; }
.bg-gray-900 { background-color: #111827; }

.bg-cyan-100 { background-color: #cffafe; }
.bg-cyan-400 { background: linear-gradient(135deg, #22d3ee, #67e8f9); }
.bg-cyan-600 { background-color: #0891b2; }
.bg-cyan-700 { background-color: #0e7490; }

.bg-green-100 { background-color: #dcfce7; }
.bg-green-400 { background: linear-gradient(135deg, #4ade80, #86efac); }
.bg-green-600 { background-color: #16a34a; }
.bg-green-700 { background-color: #15803d; }

.bg-purple-100 { background-color: #f3e8ff; }
.bg-purple-400 { background: linear-gradient(135deg, #a78bfa, #c4b5fd); }
.bg-purple-500 { background: linear-gradient(135deg, #a855f7, #c084fc); }
.bg-purple-600 { background-color: #9333ea; }
.bg-purple-700 { background-color: #7c3aed; }

.bg-orange-100 { background-color: #fff7ed; }
.bg-orange-400 { background: linear-gradient(135deg, #fb923c, #fdba74); }
.bg-orange-600 { background-color: #ea580c; }
.bg-orange-700 { background-color: #c2410c; }

.bg-pink-100 { background-color: #fce7f3; }
.bg-pink-400 { background: linear-gradient(135deg, #f472b6, #f9a8d4); }
.bg-pink-600 { background-color: #db2777; }
.bg-pink-700 { background-color: #be185d; }

.bg-teal-500 { background: linear-gradient(135deg, #14b8a6, #5eead4); }

/* Background gradients */
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.from-cyan-400 { --tw-gradient-from: #22d3ee; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(34, 211, 238, 0)); }
.to-purple-500 { --tw-gradient-to: #a855f7; }
.from-green-400 { --tw-gradient-from: #4ade80; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(74, 222, 128, 0)); }
.to-teal-500 { --tw-gradient-to: #14b8a6; }
.from-purple-400 { --tw-gradient-from: #a78bfa; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); }
.to-pink-500 { --tw-gradient-to: #ec4899; }
.from-orange-400 { --tw-gradient-from: #fb923c; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 146, 60, 0)); }
.to-red-500 { --tw-gradient-to: #ef4444; }

/* Layout */
.grid { display: grid; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.block { display: block; }
.inline-block { display: inline-block; }
.hidden { display: none; }

/* Grid columns */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }

/* Grid column spans */
.col-span-1 { grid-column: span 1 / span 1; }
.col-span-2 { grid-column: span 2 / span 2; }
.col-span-3 { grid-column: span 3 / span 3; }
.col-span-4 { grid-column: span 4 / span 4; }
.col-span-5 { grid-column: span 5 / span 5; }

/* Responsive column spans */
@media (min-width: 1024px) {
  .lg\:col-span-1 { grid-column: span 1 / span 1; }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
  .lg\:col-span-3 { grid-column: span 3 / span 3; }
  .lg\:col-span-4 { grid-column: span 4 / span 4; }
  .lg\:col-span-5 { grid-column: span 5 / span 5; }
}

/* Responsive grid */
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

/* Flexbox */
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }

/* Flex utilities */
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }

.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }

/* Order */
.order-1 { order: 1; }
.order-2 { order: 2; }
.order-3 { order: 3; }

/* Responsive order */
@media (min-width: 1024px) {
  .lg\:order-1 { order: 1; }
  .lg\:order-2 { order: 2; }
  .lg\:order-3 { order: 3; }
}

/* Spacing */
.space-x-1 > * + * { margin-left: 0.25rem; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }

.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; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

.m-0 { margin: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }

.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }

.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.mr-2 { margin-right: 0.5rem; }

/* Borders */
.border { border-width: 1px; border-style: solid; border-color: #d1d5db; }
.border-2 { border-width: 2px; }
.border-gray-200 { border-color: #e5e7eb; }
.border-cyan-500 { border-color: #06b6d4; }
.border-green-500 { border-color: #10b981; }

.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-full { border-radius: 9999px; }

.overflow-hidden { overflow: hidden; }

/* Shadows */
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow { box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 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); }

.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.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); }

/* Transitions */
.transition { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-shadow { transition-property: box-shadow; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }

/* Hover states */
.hover\:bg-gray-100:hover { background-color: #f3f4f6; }
.hover\:bg-cyan-700:hover { background-color: #0e7490; }
.hover\:bg-green-700:hover { background-color: #15803d; }
.hover\:bg-purple-700:hover { background-color: #7c3aed; }
.hover\:bg-orange-700:hover { background-color: #c2410c; }
.hover\:bg-pink-700:hover { background-color: #be185d; }

/* Width/Height */
.w-6 { width: 1.5rem; }
.w-16 { width: 4rem; }
.w-32 { width: 8rem; }
.w-full { width: 100%; }

.h-6 { height: 1.5rem; }
.h-16 { height: 4rem; }
.h-32 { height: 8rem; }

.min-h-screen { min-height: 100vh; }

/* Aspect ratio */
.aspect-video { aspect-ratio: 16 / 9; }

/* Positioning */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.top-0 { top: 0; }
.top-8 { top: 2rem; }
.left-0 { left: 0; }
.right-0 { right: 0; }

/* Responsive positioning */
@media (min-width: 1024px) {
  .lg\:sticky { position: sticky; }
  .lg\:top-8 { top: 2rem; }
}

/* Text alignment */
.text-center { text-align: center; }
.text-left { text-align: left; }

/* Max width */
.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-3xl { max-width: 48rem; }

/* ===== ADDITIONAL UTILITY CLASSES ===== */
.no-margin {
  margin: 0 !important;
}

.no-padding {
  padding: 0 !important;
}

.full-width {
  width: 100%;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

/* Marketplace specific classes */
.active-tab {
  background-color: #0891b2 !important;
  color: white !important;
}

.product-card {
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Ensure all elements inherit proper font */
* {
  font-family: inherit;
}

/* Remove any default browser styling */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, nav, section, summary {
  display: block;
}

audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline;
}

/* Remove default button/input styling */
button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  padding: 0.5rem 0.75rem;
}

input:focus, textarea:focus, select:focus {
  outline: 2px solid #6366f1;
  outline-offset: 2px;
}

/* ===== COMMIE ULTIMATE DARK THEME UTILITIES ===== */
.bg-gray-900 { background-color: #111827; }
.bg-gray-800 { background-color: #1f2937; }
.bg-gray-700 { background-color: #374151; }
.bg-black { background-color: #000000; }
.bg-purple-900 { background-color: #581c87; }
.bg-cyan-900 { background-color: #164e63; }
.bg-red-600 { background-color: #dc2626; }
.bg-purple-600 { background-color: #9333ea; }
.hover\:bg-red-700:hover { background-color: #b91c1c; }
.hover\:bg-purple-700:hover { background-color: #7c3aed; }
.text-white { color: #ffffff; }
.text-cyan-400 { color: #22d3ee; }
.text-yellow-400 { color: #fbbf24; }
.text-purple-600 { color: #9333ea; }
.text-gray-400 { color: #9ca3af; }
.text-red-400 { color: #f87171; }
.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-5xl { font-size: 3rem; line-height: 1; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-6 { margin-top: 1.5rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.container { width: 100%; max-width: 1200px; margin-left: auto; margin-right: auto; padding-left: 1rem; padding-right: 1rem; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
@media (min-width: 768px) {
  .md\:flex-row { flex-direction: row; }
}
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.gap-8 { gap: 2rem; }
.max-w-4xl { max-width: 56rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-1 > * + * { margin-top: 0.25rem; }
.list-disc { list-style-type: disc; }
.list-inside { list-style-position: inside; }
.rounded-lg { border-radius: 0.5rem; }
.inline-block { display: inline-block; }
.w-96 { width: 24rem; }
.w-128 { width: 32rem; }
.h-64 { height: 16rem; }
.h-96 { height: 24rem; }
.h-auto { height: auto; }
.z-50 { z-index: 50; }
.bottom-4 { bottom: 1rem; }
.left-4 { left: 1rem; }
.fixed { position: fixed; }
.w-full { width: 100%; }
.rounded { border-radius: 0.25rem; }
.bg-gradient-to-r { background: linear-gradient(to right, #581c87, #164e63); }
.font-bold { font-weight: 700; }

.blog-content {
  column-count: 1;
  column-gap: 2rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .blog-content {
    column-count: 2;
  }
}

@media (min-width: 1024px) {
  .blog-content {
    column-count: 3;
  }
}

@media (min-width: 768px) {
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ===== SYNTHWAVE FX ===== */
.synthwave-glow {
  text-shadow: 0 0 5px #fbbf24, 0 0 10px #fbbf24, 0 0 15px #fbbf24, 0 0 20px #fbbf24;
  animation: synthwave-pulse 2s ease-in-out infinite alternate;
}

@keyframes synthwave-pulse {
  from {
    text-shadow: 0 0 5px #fbbf24, 0 0 10px #fbbf24, 0 0 15px #fbbf24, 0 0 20px #fbbf24;
  }
  to {
    text-shadow: 0 0 10px #fbbf24, 0 0 20px #fbbf24, 0 0 30px #fbbf24, 0 0 40px #fbbf24;
  }
}

.neon-border {
  border: 2px solid #22d3ee;
  box-shadow: 0 0 10px #22d3ee, inset 0 0 10px #22d3ee;
}