/* Global Styles */
body {
    margin: 0;
    font-family: system-ui, sans-serif;
    background-color: #0a0a0a;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 0px 16px;
  }
  
  a {
    text-decoration: none;
  }
  
  /* Layout Container */
  .max-w-4xl {
    max-width: 1024px;
    width: 100%;
  }
  
  .w-full {
    width: 100%;
  }
  
  .px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  
  /* Typography */
  .text-center {
    text-align: center;
  }
  
  .text-white {
    color: white;
  }
  
  .text-black {
    color: black;
  }
  
  .text-xl {
    font-size: 1.25rem;
  }
  
  .text-4xl {
    font-size: 2.25rem;
  }
  
  .md\\:text-6xl {
    font-size: 3.75rem;
    font-weight: bold;
  }
  
  .text-sm {
    font-size: 0.875rem;
  }
  
  .text-lg {
    font-size: 1.125rem;
  }
  
  .font-bold {
    font-weight: 700;
  }
  
  .font-semibold {
    font-weight: 600;
  }
  
  /* Spacing */
  .mb-4 {
    margin-bottom: 1rem;
  }
  
  .mb-6 {
    margin-bottom: 1.5rem;
  }
  
  .mb-10 {
    margin-bottom: 2.5rem;
  }
  
  .mb-12 {
    margin-bottom: 3rem;
  }
  
  .mb-14 {
    margin-bottom: 3.5rem;
  }
  
  /* Flex/Grid */
  .flex {
    display: flex;
  }
  
  .items-center {
    align-items: center;
  }
  
  .justify-center {
    justify-content: center;
  }
  
  .flex-wrap {
    flex-wrap: wrap;
  }
  
  .gap-3 {
    gap: 0.75rem;
  }
  
  .gap-6 {
    gap: 1.5rem;
  }
  
  .grid {
    display: grid;
  }
  
  .grid-cols-1 {
    grid-template-columns: 1fr;
  }
  
  .md\\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  /* Cards & Containers */
  .bg-black {
    background-color: #0a0a0a;
  }
  
  .bg-gray-900 {
    background-color: #1f2937;
  }
  
  .bg-gray-800 {
    background-color: #2d3748;
  }
  
  .text-gray-400 {
    color: #cbd5e0;
  }
  
  .p-6 {
    padding: 1.5rem;
  }
  
  .p-8 {
    padding: 2rem;
  }
  
  .rounded-2xl {
    border-radius: 1rem;
  }
  
  .shadow-xl {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  }
  
  /* Buttons */
  a.bg-white {
    background-color: white;
    color: black;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  a.bg-white:hover {
    background-color: #d1d5db;
  }
  
  /* Logo Styling */
  .h-10 {
    height: 40px;
    border-radius: 9999px;
  }
  
  /* Avatar */
  .h-6 {
    height: 24px;
  }
  
  .w-6 {
    width: 24px;
    border-radius: 9999px;
  }
  