:root {
    --background: 0 0% 100%;
    --foreground: 222.2 84% 4.9%;
    --card: 0 0% 100%;
    --card-foreground: 222.2 84% 4.9%;
    --popover: 0 0% 100%;
    --popover-foreground: 222.2 84% 4.9%;
    --primary: 221.2 83.2% 53.3%;
    --primary-foreground: 210 40% 98%;
    --secondary: 210 40% 96.1%;
    --secondary-foreground: 222.2 47.4% 11.2%;
    --muted: 210 40% 96.1%;
    --muted-foreground: 215.4 16.3% 44%;
    --accent: 210 40% 96.1%;
    --accent-foreground: 222.2 47.4% 11.2%;
    --destructive: 0 72% 51%;
    --destructive-foreground: 210 40% 98%;
    --border: 214.3 31.8% 91.4%;
    --input: 214.3 31.8% 91.4%;
    --ring: 221.2 83.2% 53.3%;
    --radius: 0.5rem;
  }
  
  body {
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    font-family: Inter, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
  button a {
    text-decoration: none;
}
a {
    text-decoration: none;
}

  h1, h2, h3, h4, h5, h6 {
    font-family: Inter, sans-serif;
  }
  
  .container {
    margin: 0 auto;
  }
  
  .bg-muted {
    background-color: hsl(var(--muted));
  }
  
  .text-muted-foreground {
    color: hsl(var(--muted-foreground));
  }
  
  .bg-primary {
    background-color: hsl(var(--primary));
  }
  
  .text-primary-foreground {
    color: hsl(var(--primary-foreground));
  }
  
  .bg-background {
    background-color: hsl(var(--background));
  }
  
  .text-primary {
    color: hsl(var(--primary));
  }
  
  .border-input {
    border-color: hsl(var(--input));
  }
  
  .btn-primary {
    display: inline-flex;
    height: 2.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background-color: hsl(var(--primary));
    padding: 0 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--primary-foreground));
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s, color 0.2s;
  }
  .btn-space {
    display: inline-flex;
    height: 1rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background-color: #ffffff00;
    padding: 0 0.5rem;
    color: hsl(var(--primary-foreground));
  }
  .btn-primary:hover {
    background-color: #013a96;
  }
  
  .btn-secondary {
    display: inline-flex;
    height: 2.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background-color: #e2e2e2;
    padding: 0 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1d1d1d;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s, color 0.2s;
  }
  
  .btn-secondary:hover {
    background-color: #4d4d4e;
    color: hsl(var(--accent-foreground));
  }
  
  .badge {
    display: inline-block;
    border-radius: 0.5rem;
    background-color: hsl(var(--primary));
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: hsl(var(--primary-foreground));
  }
  
  .card {
    border-radius: 0.5rem;
    border: 1px solid hsl(var(--border));
    background-color: hsl(var(--card));
    color: hsl(var(--card-foreground));
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
  }
  
  .card-link {
    display: block;
    position: relative;
    overflow: hidden;
  }
  
  .card-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .card-link:hover .card-overlay {
    opacity: 1;
  }
  
  .card-content {
    padding: 1rem;
  }
  
  .card-content h3 {
    margin: 0 0 0.5rem 0;
  }
  
  .card-content p {
    margin: 0;
    color: hsl(var(--muted-foreground));
  }
  
  .hover\:bg-primary\:90:hover {
    background-color: hsla(var(--primary), 0.9);
  }
  
  .focus-visible\:outline-none:focus-visible {
    outline: none;
  }
  
  .focus-visible\:ring-1:focus-visible {
    box-shadow: 0 0 0 1px hsla(var(--ring), 1);
  }
  
  .shadow {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  
  .shadow-sm {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  }
  
  .disabled\:pointer-events-none:disabled {
    pointer-events: none;
  }
  
  .disabled\:opacity-50:disabled {
    opacity: 0.5;
  }
  
  .transition-colors {
    transition: background-color 0.2s, color 0.2s;
  }
  
  .flex {
    display: flex;
  }
  
  .items-center {
    align-items: center;
  }
  
  .justify-center {
    justify-content: center;
  }
  
  .items-start {
    align-items: flex-start;
  }
  
  .flex-col {
    flex-direction: column;
  }
  
  .gap-2 {
    gap: 0.5rem;
  }
  
  .gap-4 {
    gap: 1rem;
  }
  
  .gap-6 {
    gap: 1.5rem;
  }
  
  .gap-8 {
    gap: 2rem;
  }
  
  .space-y-2 > :not(template) ~ :not(template) {
    margin-top: 0.5rem;
  }
  
  .space-y-4 > :not(template) ~ :not(template) {
    margin-top: 1rem;
  }
  
  .grid {
    display: grid;
  }
  
  .w-full {
    width: 100%;
  }
  
  .py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  
  .md\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  
  .lg\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  
  .px-4 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  
  .md\:px-6 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .lg\:grid-rows-2 {
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }
  
  .tracking-tighter {
    letter-spacing: -0.05em;
  }
  
  .font-bold {
    font-weight: 700;
  }
  
  .font-medium {
    font-weight: 500;
  }
  
  .text-center {
    text-align: center;
  }
  
  .text-sm {
    font-size: 0.875rem;
  }
  
  .text-lg {
    font-size: 1.125rem;
  }
  
  .text-xl {
    font-size: 1.25rem;
  }
  
  .text-2xl {
    font-size: 1.5rem;
  }
  
  .text-3xl {
    font-size: 1.875rem;
  }
  
  .text-4xl {
    font-size: 2.25rem;
  }
  
  .md\:text-5xl {
    font-size: 3rem;
  }
  
  .lg\:text-7xl {
    font-size: 4.5rem;
  }
  
  .rounded-md {
    border-radius: 0.375rem;
  }
  
  .rounded-lg {
    border-radius: 0.5rem;
  }
  
  .rounded-full {
    border-radius: 9999px;
  }
  
  .overflow-hidden {
    overflow: hidden;
  }
  
  .aspect-square {
    aspect-ratio: 1 / 1;
  }
  
  .aspect-\[4\/3\] {
    aspect-ratio: 4 / 3;
  }
  
  .shadow {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  
  .shadow-sm {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  }
  
  .transition-all {
    transition: all 0.2s;
  }
  
  .group:hover .group-hover\:scale-105 {
    transform: scale(1.05);
  }
  
  .group:hover .group-hover\:opacity-100 {
    opacity: 1;
  }
  
  .max-w-\[600px\] {
    max-width: 600px;
  }

  @media (max-width: 1024px) {
    .lg\:grid-cols-2 {
        display: flex;
        flex-direction: column;
    }
  }

  @media (max-width: 1000px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
        max-width: 400px;
    }

    .grid-cols-2 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .lg\:grid-cols-2 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .lg\:grid-cols-3 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .gap-6 {
        gap: 1rem;
    }

    .gap-8 {
        gap: 1rem;
    }
  }
  .blur-section {
    position: relative;
    padding: 20px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
    text-align: center;
}
.blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(190, 189, 189, 0.917);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    z-index: 10;
}
.content {
    position: relative;
    z-index: 5;
}