
:root {
  --primary: #4338ca;
  --primary-light: #6366f1;
  --secondary: #1e293b;
  --accent: #4f46e5;
  --glass-bg: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(255, 255, 255, 0.3);
}

/* Typography Base */
.prose {
  color: #334155;
  font-size: 1.1rem;
  line-height: 1.8;
  font-family: 'Inter', sans-serif;
}

.prose h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #4338ca 0%, #6366f1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.prose h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e293b;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.prose p {
  margin-bottom: 1.5rem;
}

/* Premium Card Styles */
.card-premium {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.card-premium:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -5px rgba(79, 70, 229, 0.1);
  border-color: rgba(79, 70, 229, 0.2);
}

/* Glass Header */
.glass-header {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 50;
}

/* Premium Button */
.btn-premium {
  background: linear-gradient(135deg, #4338ca 0%, #6366f1 100%);
  color: white;
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(67, 56, 202, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 20px -3px rgba(67, 56, 202, 0.4);
  filter: brightness(1.1);
}

/* Hero Pattern Background */
.hero-pattern {
  position: relative;
  background-color: #4338ca;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6zM36 4V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* List Styling */
.prose ul {
  list-style: none;
  padding-left: 0;
}

.prose ul li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.prose ul li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #4f46e5;
}

/* Table Design */
.prose table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 2rem 0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.prose th {
  background-color: #f8fafc;
  padding: 1rem;
  text-align: left;
  font-weight: 700;
  color: #1e293b;
  border-bottom: 2px solid #e2e8f0;
}

.prose td {
  padding: 1rem;
  border-bottom: 1px solid #f1f5f9;
}
