/* V3NT Custom CSS - Modern Design System */

/* Base Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0;
    line-height: inherit;
    background-color: var(--background);
    color: var(--text-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  /* Modern Color Palette */
  :root {
    /* Primary colors */
    --primary: #6366f1;
    --primary-hover: #4f46e5;
    --primary-light: #e0e7ff;
    --primary-dark: #4338ca;
    
    /* Secondary colors */
    --secondary: #10b981;
    --secondary-hover: #059669;
    --secondary-light: #d1fae5;
    --secondary-dark: #047857;
    
    /* Accent colors */
    --accent: #f59e0b;
    --accent-hover: #d97706;
    --accent-light: #fef3c7;
    --accent-dark: #b45309;
    
    /* UI colors */
    --background: #f8fafc;
    --card-bg: #ffffff;
    --card-bg-alt: #f1f5f9;
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-light: #f8fafc;
    --border: #e2e8f0;
    --border-dark: #cbd5e1;
    
    /* Effects */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    --gradient-secondary: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --gradient-cool: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --gradient-warm: linear-gradient(135deg, #f97316 0%, #ec4899 100%);
  }
  
  /* Dark Mode Colors */
  .dark-mode {
    --background: #0f172a;
    --card-bg: #1e293b;
    --card-bg-alt: #334155;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border: #334155;
    --border-dark: #475569;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
  }
  
  /* Layout */
  .container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  @media (min-width: 640px) {
    .container {
      max-width: 640px;
      padding-left: 1.5rem;
      padding-right: 1.5rem;
    }
  }
  
  @media (min-width: 768px) {
    .container {
      max-width: 768px;
    }
  }
  
  @media (min-width: 1024px) {
    .container {
      max-width: 1024px;
      padding-left: 2rem;
      padding-right: 2rem;
    }
  }
  
  @media (min-width: 1280px) {
    .container {
      max-width: 1280px;
    }
  }
  
  /* Flex */
  .flex {
    display: flex;
  }
  
  .flex-col {
    flex-direction: column;
  }
  
  .flex-row {
    flex-direction: row;
  }
  
  .flex-wrap {
    flex-wrap: wrap;
  }
  
  .flex-grow {
    flex-grow: 1;
  }
  
  .flex-shrink-0 {
    flex-shrink: 0;
  }
  
  .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-end {
    justify-content: flex-end;
  }
  
  .space-y-2 > * + * {
    margin-top: 0.5rem;
  }
  
  .space-y-4 > * + * {
    margin-top: 1rem;
  }
  
  .space-y-6 > * + * {
    margin-top: 1.5rem;
  }
  
  .space-x-2 > * + * {
    margin-left: 0.5rem;
  }
  
  .space-x-4 > * + * {
    margin-left: 1rem;
  }
  
  .space-x-6 > * + * {
    margin-left: 1.5rem;
  }
  
  /* Grid */
  .grid {
    display: grid;
  }
  
  .grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  
  .gap-4 {
    gap: 1rem;
  }
  
  .gap-6 {
    gap: 1.5rem;
  }
  
  .gap-8 {
    gap: 2rem;
  }
  
  /* Masonry Grid */
  .masonry-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
  
  @media (min-width: 640px) {
    .masonry-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .masonry-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .masonry-grid.masonry-effect {
      display: block;
      column-count: 3;
      column-gap: 1.5rem;
    }
    
    .masonry-grid.masonry-effect > * {
      break-inside: avoid;
      margin-bottom: 1.5rem;
    }
  }
  
  @media (min-width: 768px) {
    .md\:grid-cols-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .md\:flex-row {
      flex-direction: row;
    }
    
    .md\:mb-0 {
      margin-bottom: 0;
    }
  }
  
  @media (min-width: 1024px) {
    .lg\:grid-cols-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
  
  /* Spacing */
  .p-0 {
    padding: 0;
  }
  
  .p-1 {
    padding: 0.25rem;
  }
  
  .p-2 {
    padding: 0.5rem;
  }
  
  .p-3 {
    padding: 0.75rem;
  }
  
  .p-4 {
    padding: 1rem;
  }
  
  .p-5 {
    padding: 1.25rem;
  }
  
  .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;
  }
  
  .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;
  }
  
  .py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  
  .py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  
  .py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  
  .m-0 {
    margin: 0;
  }
  
  .m-2 {
    margin: 0.5rem;
  }
  
  .m-4 {
    margin: 1rem;
  }
  
  .mx-auto {
    margin-left: auto;
    margin-right: auto;
  }
  
  .mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  
  .mx-4 {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  
  .my-2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  
  .my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  
  .my-6 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  
  .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;
  }
  
  .mt-8 {
    margin-top: 2rem;
  }
  
  .mt-auto {
    margin-top: auto;
  }
  
  .mb-1 {
    margin-bottom: 0.25rem;
  }
  
  .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;
  }
  
  .mr-1 {
    margin-right: 0.25rem;
  }
  
  .mr-2 {
    margin-right: 0.5rem;
  }
  
  .mr-3 {
    margin-right: 0.75rem;
  }
  
  .mr-4 {
    margin-right: 1rem;
  }
  
  .ml-1 {
    margin-left: 0.25rem;
  }
  
  .ml-2 {
    margin-left: 0.5rem;
  }
  
  .ml-3 {
    margin-left: 0.75rem;
  }
  
  .ml-4 {
    margin-left: 1rem;
  }
  
  /* Typography */
  .text-xs {
    font-size: 0.75rem;
  }
  
  .text-sm {
    font-size: 0.875rem;
  }
  
  .text-base {
    font-size: 1rem;
  }
  
  .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;
  }
  
  .font-normal {
    font-weight: 400;
  }
  
  .font-medium {
    font-weight: 500;
  }
  
  .font-semibold {
    font-weight: 600;
  }
  
  .font-bold {
    font-weight: 700;
  }
  
  .font-extrabold {
    font-weight: 800;
  }
  
  .tracking-tight {
    letter-spacing: -0.025em;
  }
  
  .tracking-wide {
    letter-spacing: 0.025em;
  }
  
  .leading-none {
    line-height: 1;
  }
  
  .leading-tight {
    line-height: 1.25;
  }
  
  .leading-normal {
    line-height: 1.5;
  }
  
  .leading-relaxed {
    line-height: 1.625;
  }
  
  .leading-loose {
    line-height: 2;
  }
  
  .text-center {
    text-align: center;
  }
  
  .text-left {
    text-align: left;
  }
  
  .text-right {
    text-align: right;
  }
  
  .text-white {
    color: white;
  }
  
  .text-black {
    color: black;
  }
  
  .text-primary {
    color: var(--primary);
  }
  
  .text-secondary {
    color: var(--secondary);
  }
  
  .text-accent {
    color: var(--accent);
  }
  
  .text-gray-50 {
    color: #f9fafb;
  }
  
  .text-gray-100 {
    color: #f3f4f6;
  }
  
  .text-gray-200 {
    color: #e5e7eb;
  }
  
  .text-gray-300 {
    color: #d1d5db;
  }
  
  .text-gray-400 {
    color: #9ca3af;
  }
  
  .text-gray-500 {
    color: var(--text-muted);
  }
  
  .text-gray-600 {
    color: var(--text-secondary);
  }
  
  .text-gray-700 {
    color: #374151;
  }
  
  .text-gray-800 {
    color: var(--text-primary);
  }
  
  .text-gray-900 {
    color: #111827;
  }
  
  .text-indigo-500 {
    color: #6366f1;
  }
  
  .text-indigo-600 {
    color: var(--primary);
  }
  
  .text-indigo-700 {
    color: #4338ca;
  }
  
  .text-indigo-800 {
    color: var(--primary-dark);
  }
  
  .whitespace-pre-line {
    white-space: pre-line;
  }
  
  .truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  
  /* Backgrounds */
  .bg-transparent {
    background-color: transparent;
  }
  
  .bg-white {
    background-color: var(--card-bg);
  }
  
  .bg-black {
    background-color: black;
  }
  
  .bg-primary {
    background-color: var(--primary);
  }
  
  .bg-secondary {
    background-color: var(--secondary);
  }
  
  .bg-accent {
    background-color: var(--accent);
  }
  
  .bg-gray-50 {
    background-color: #f9fafb;
  }
  
  .bg-gray-100 {
    background-color: var(--background);
  }
  
  .bg-gray-200 {
    background-color: var(--card-bg-alt);
  }
  
  .bg-gray-300 {
    background-color: #d1d5db;
  }
  
  .bg-gray-800 {
    background-color: #1f2937;
  }
  
  .bg-gray-900 {
    background-color: #111827;
  }
  
  .bg-indigo-50 {
    background-color: #eef2ff;
  }
  
  .bg-indigo-100 {
    background-color: #e0e7ff;
  }
  
  .bg-indigo-500 {
    background-color: #6366f1;
  }
  
  .bg-indigo-600 {
    background-color: var(--primary);
  }
  
  .bg-green-500 {
    background-color: #10b981;
  }
  
  .bg-green-600 {
    background-color: var(--secondary);
  }
  
  .bg-yellow-500 {
    background-color: #f59e0b;
  }
  
  .bg-yellow-600 {
    background-color: #d97706;
  }
  
  .bg-gradient-primary {
    background-image: var(--gradient-primary);
  }
  
  .bg-gradient-secondary {
    background-image: var(--gradient-secondary);
  }
  
  .bg-gradient-accent {
    background-image: var(--gradient-accent);
  }
  
  .bg-gradient-cool {
    background-image: var(--gradient-cool);
  }
  
  .bg-gradient-warm {
    background-image: var(--gradient-warm);
  }
  
  .bg-opacity-0 {
    --tw-bg-opacity: 0;
  }
  
  .bg-opacity-50 {
    --tw-bg-opacity: 0.5;
  }
  
  .bg-opacity-75 {
    --tw-bg-opacity: 0.75;
  }
  
  .bg-opacity-90 {
    --tw-bg-opacity: 0.9;
  }
  
  /* Borders */
  .border {
    border-width: 1px;
    border-style: solid;
  }
  
  .border-2 {
    border-width: 2px;
  }
  
  .border-0 {
    border-width: 0;
  }
  
  .border-t {
    border-top-width: 1px;
    border-top-style: solid;
  }
  
  .border-b {
    border-bottom-width: 1px;
    border-bottom-style: solid;
  }
  
  .border-l {
    border-left-width: 1px;
    border-left-style: solid;
  }
  
  .border-r {
    border-right-width: 1px;
    border-right-style: solid;
  }
  
  .border-transparent {
    border-color: transparent;
  }
  
  .border-white {
    border-color: white;
  }
  
  .border-gray-100 {
    border-color: #f3f4f6;
  }
  
  .border-gray-200 {
    border-color: var(--border);
  }
  
  .border-gray-300 {
    border-color: #d1d5db;
  }
  
  .border-gray-400 {
    border-color: #9ca3af;
  }
  
  .border-gray-700 {
    border-color: var(--border-dark);
  }
  
  .border-indigo-500 {
    border-color: #6366f1;
  }
  
  .border-indigo-600 {
    border-color: var(--primary);
  }
  
  .rounded-none {
    border-radius: 0;
  }
  
  .rounded-sm {
    border-radius: 0.125rem;
  }
  
  .rounded {
    border-radius: 0.25rem;
  }
  
  .rounded-md {
    border-radius: 0.375rem;
  }
  
  .rounded-lg {
    border-radius: 0.5rem;
  }
  
  .rounded-xl {
    border-radius: 0.75rem;
  }
  
  .rounded-2xl {
    border-radius: 1rem;
  }
  
  .rounded-full {
    border-radius: 9999px;
  }
  
  .rounded-t-lg {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
  }
  
  .rounded-b-lg {
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
  }
  
  /* Shadows */
  .shadow-none {
    box-shadow: none;
  }
  
  .shadow-sm {
    box-shadow: var(--shadow-sm);
  }
  
  .shadow {
    box-shadow: var(--shadow);
  }
  
  .shadow-md {
    box-shadow: var(--shadow-md);
  }
  
  .shadow-lg {
    box-shadow: var(--shadow-lg);
  }
  
  .shadow-xl {
    box-shadow: var(--shadow-xl);
  }
  
  .shadow-inner {
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  }
  
  /* Positioning */
  .static {
    position: static;
  }
  
  .relative {
    position: relative;
  }
  
  .absolute {
    position: absolute;
  }
  
  .fixed {
    position: fixed;
  }
  
  .sticky {
    position: sticky;
  }
  
  .inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  
  .top-0 {
    top: 0;
  }
  
  .right-0 {
    right: 0;
  }
  
  .bottom-0 {
    bottom: 0;
  }
  
  .left-0 {
    left: 0;
  }
  
  .z-0 {
    z-index: 0;
  }
  
  .z-10 {
    z-index: 10;
  }
  
  .z-20 {
    z-index: 20;
  }
  
  .z-30 {
    z-index: 30;
  }
  
  .z-40 {
    z-index: 40;
  }
  
  .z-50 {
    z-index: 50;
  }
  
  /* Display */
  .hidden {
    display: none;
  }
  
  .block {
    display: block;
  }
  
  .inline-block {
    display: inline-block;
  }
  
  .inline {
    display: inline;
  }
  
  .table {
    display: table;
  }
  
  .contents {
    display: contents;
  }
  
  /* Overflow */
  .overflow-auto {
    overflow: auto;
  }
  
  .overflow-hidden {
    overflow: hidden;
  }
  
  .overflow-visible {
    overflow: visible;
  }
  
  .overflow-scroll {
    overflow: scroll;
  }
  
  .overflow-x-auto {
    overflow-x: auto;
  }
  
  .overflow-y-auto {
    overflow-y: auto;
  }
  
  .overflow-x-hidden {
    overflow-x: hidden;
  }
  
  .overflow-y-hidden {
    overflow-y: hidden;
  }
  
  /* Size */
  .w-auto {
    width: auto;
  }
  
  .w-full {
    width: 100%;
  }
  
  .w-screen {
    width: 100vw;
  }
  
  .w-min {
    width: min-content;
  }
  
  .w-max {
    width: max-content;
  }
  
  .w-6 {
    width: 1.5rem;
  }
  
  .w-8 {
    width: 2rem;
  }
  
  .w-10 {
    width: 2.5rem;
  }
  
  .w-12 {
    width: 3rem;
  }
  
  .w-16 {
    width: 4rem;
  }
  
  .w-20 {
    width: 5rem;
  }
  
  .w-24 {
    width: 6rem;
  }
  
  .w-32 {
    width: 8rem;
  }
  
  .w-40 {
    width: 10rem;
  }
  
  .w-48 {
    width: 12rem;
  }
  
  .w-56 {
    width: 14rem;
  }
  
  .w-64 {
    width: 16rem;
  }
  
  .w-1\/2 {
    width: 50%;
  }
  
  .w-1\/3 {
    width: 33.333333%;
  }
  
  .w-2\/3 {
    width: 66.666667%;
  }
  
  .w-1\/4 {
    width: 25%;
  }
  
  .w-3\/4 {
    width: 75%;
  }
  
  .h-auto {
    height: auto;
  }
  
  .h-full {
    height: 100%;
  }
  
  .h-screen {
    height: 100vh;
  }
  
  .h-6 {
    height: 1.5rem;
  }
  
  .h-8 {
    height: 2rem;
  }
  
  .h-10 {
    height: 2.5rem;
  }
  
  .h-12 {
    height: 3rem;
  }
  
  .h-16 {
    height: 4rem;
  }
  
  .h-20 {
    height: 5rem;
  }
  
  .h-24 {
    height: 6rem;
  }
  
  .h-32 {
    height: 8rem;
  }
  
  .h-40 {
    height: 10rem;
  }
  
  .h-48 {
    height: 12rem;
  }
  
  .h-56 {
    height: 14rem;
  }
  
  .h-64 {
    height: 16rem;
  }
  
  .min-h-0 {
    min-height: 0;
  }
  
  .min-h-full {
    min-height: 100%;
  }
  
  .min-h-screen {
    min-height: 100vh;
  }
  
  .max-h-full {
    max-height: 100%;
  }
  
  .max-h-screen {
    max-height: 100vh;
  }
  
  .max-w-none {
    max-width: none;
  }
  
  .max-w-xs {
    max-width: 20rem;
  }
  
  .max-w-sm {
    max-width: 24rem;
  }
  
  .max-w-md {
    max-width: 28rem;
  }
  
  .max-w-lg {
    max-width: 32rem;
  }
  
  .max-w-xl {
    max-width: 36rem;
  }
  
  .max-w-2xl {
    max-width: 42rem;
  }
  
  .max-w-3xl {
    max-width: 48rem;
  }
  
  .max-w-4xl {
    max-width: 56rem;
  }
  
  .max-w-5xl {
    max-width: 64rem;
  }
  
  .max-w-6xl {
    max-width: 72rem;
  }
  
  .max-w-7xl {
    max-width: 80rem;
  }
  
  .max-w-full {
    max-width: 100%;
  }
  
  .max-w-screen-sm {
    max-width: 640px;
  }
  
  .max-w-screen-md {
    max-width: 768px;
  }
  
  .max-w-screen-lg {
    max-width: 1024px;
  }
  
  .max-w-screen-xl {
    max-width: 1280px;
  }
  
  /* Transitions */
  .transition {
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
    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;
  }
  
  .transition-colors {
    transition-property: background-color, border-color, color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
  }
  
  .transition-opacity {
    transition-property: opacity;
    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;
  }
  
  .transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
  }
  
  .duration-75 {
    transition-duration: 75ms;
  }
  
  .duration-100 {
    transition-duration: 100ms;
  }
  
  .duration-150 {
    transition-duration: 150ms;
  }
  
  .duration-200 {
    transition-duration: 200ms;
  }
  
  .duration-300 {
    transition-duration: 300ms;
  }
  
  .duration-500 {
    transition-duration: 500ms;
  }
  
  .duration-700 {
    transition-duration: 700ms;
  }
  
  .duration-1000 {
    transition-duration: 1000ms;
  }
  
  .ease-linear {
    transition-timing-function: linear;
  }
  
  .ease-in {
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
  }
  
  .ease-out {
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
  
.ease-in-out {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  /* Hover States */
  .hover\:bg-indigo-700:hover {
    background-color: #4338ca;
  }
  
  .hover\:bg-indigo-600:hover {
    background-color: var(--primary);
  }
  
  .hover\:bg-green-600:hover {
    background-color: var(--secondary);
  }
  
  .hover\:bg-gray-100:hover {
    background-color: var(--background);
  }
  
  .hover\:bg-gray-200:hover {
    background-color: var(--card-bg-alt);
  }
  
  .hover\:text-indigo-600:hover {
    color: var(--primary);
  }
  
  .hover\:text-indigo-800:hover {
    color: var(--primary-dark);
  }
  
  .hover\:shadow-lg:hover {
    box-shadow: var(--shadow-lg);
  }
  
  .hover\:shadow-md:hover {
    box-shadow: var(--shadow-md);
  }
  
  .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-0\.5:hover {
    --tw-translate-y: -0.125rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y));
  }
  
  .hover\:-translate-y-1:hover {
    --tw-translate-y: -0.25rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y));
  }
  
  /* Focus States */
  .focus\:outline-none:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
  }
  
  .focus\:ring-2:focus {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }
  
  .focus\:ring-indigo-500:focus {
    --tw-ring-color: #6366f1;
  }
  
  .focus\:ring-green-500:focus {
    --tw-ring-color: #10b981;
  }
  
  .focus\:ring-offset-2:focus {
    --tw-ring-offset-width: 2px;
  }
  
  .focus\:border-transparent:focus {
    border-color: transparent;
  }
  
  /* Active States */
  .active\:translate-y-0:active {
    --tw-translate-y: 0px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y));
  }
  
  /* Line Clamp Utilities */
  .line-clamp-1 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }
  
  .line-clamp-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  
  .line-clamp-3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
  
  /* Animations */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  
  @keyframes slideInRight {
    from { transform: translateX(20px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
  }
  
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
  }
  
  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  
  .animate-fade-in {
    animation: fadeIn 0.3s ease-in-out;
  }
  
  .animate-slide-up {
    animation: slideUp 0.4s ease-out;
  }
  
  .animate-slide-in-right {
    animation: slideInRight 0.4s ease-out;
  }
  
  .animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  }
  
  .animate-bounce {
    animation: bounce 1s ease infinite;
  }
  
  /* Custom Scrollbar */
  ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
  
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
  }
  
  ::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
  
  /* Dark mode scrollbar */
  @media (prefers-color-scheme: dark) {
    ::-webkit-scrollbar-track {
      background: #374151;
    }
    
    ::-webkit-scrollbar-thumb {
      background: #6b7280;
    }
    
    ::-webkit-scrollbar-thumb:hover {
      background: #9ca3af;
    }
  }
  
  /* Component-specific styles */
  .ad-placeholder {
    background-color: #f3f4f6;
    color: #6b7280;
    font-size: 0.875rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    border: 1px solid #e5e7eb;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
    min-height: 90px;
  }
  
  .ad-placeholder:hover {
    background-color: #e5e7eb;
  }
  
  .post-content {
    color: var(--text-primary);
    white-space: pre-line;
  }
  
  .post-content > * + * {
    margin-top: 1rem;
  }
  
  .post-content a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
    transition-property: color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
  }
  
  .post-content a:hover {
    color: var(--primary-dark);
  }
  
  .post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-md);
  }
  
  .post-content p {
    line-height: 1.625;
  }
  
  .post-loading, .profile-loading {
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
    color: #6b7280;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    border-radius: 0.5rem;
    background-color: #f9fafb;
    border: 1px solid #f3f4f6;
  }
  
  #monetization-popup {
    animation: fadeIn 0.3s ease-in-out;
  }
  
  #monetization-popup .bg-white {
    animation: slideUp 0.4s ease-out;
  }
  
  .glass {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-lg);
  }
  
  .bg-gradient-primary {
    background-image: linear-gradient(to right, #4f46e5, #7c3aed);
  }
  
  .bg-gradient-secondary {
    background-image: linear-gradient(to right, #10b981, #0d9488);
  }
  
  .bg-gradient-accent {
    background-image: linear-gradient(to right, #f59e0b, #f97316);
  }
  
  .interactive-card {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
  }
  
  .interactive-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-0.25rem);
  }
  
  .interactive-button {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
    transform: translateY(0);
  }
  
  .interactive-button:hover {
    transform: translateY(-0.125rem);
    box-shadow: var(--shadow-md);
  }
  
  .interactive-button:active {
    transform: translateY(0);
  }
  
  /* Responsive Adjustments */
  @media (max-width: 640px) {
    .container {
      padding-left: 1rem;
      padding-right: 1rem;
    }
    
    .card {
      border-radius: 0.5rem;
      box-shadow: var(--shadow);
    }
    
    .hidden-sm {
      display: none;
    }
  }
  
  @media (min-width: 641px) and (max-width: 1024px) {
    .container {
      padding-left: 1.5rem;
      padding-right: 1.5rem;
    }
    
    .hidden-md {
      display: none;
    }
  }
  
  @media (min-width: 1025px) {
    .container {
      padding-left: 2rem;
      padding-right: 2rem;
    }
    
    .hidden-lg {
      display: none;
    }
  }
  
  /* Dark Mode Support */
  @media (prefers-color-scheme: dark) {
    .dark-mode-support {
      --background: #1f2937;
      --card-bg: #111827;
      --text-primary: #f9fafb;
      --text-secondary: #e5e7eb;
      --text-muted: #9ca3af;
      --border: #374151;
    }
    
    .dark .card {
      background-color: #1f2937;
      border-color: #374151;
    }
    
    .dark .card-header,
    .dark .card-footer {
      background-color: #111827;
      border-color: #374151;
    }
    
    .dark .text-gray-800 {
      color: #f3f4f6;
    }
    
    .dark .text-gray-700 {
      color: #e5e7eb;
    }
    
    .dark .text-gray-600 {
      color: #d1d5db;
    }
    
    .dark .bg-white {
      background-color: #1f2937;
    }
    
    .dark .border-gray-200 {
      border-color: #374151;
    }
  }
  
  /* Additional utility classes */
  .break-all {
    word-break: break-all;
  }
  
  .col-span-full {
    grid-column: 1 / -1;
  }
  
  .underline {
    text-decoration: underline;
  }
  
  .decoration-2 {
    text-decoration-thickness: 2px;
  }
  
  .underline-offset-2 {
    text-underline-offset: 2px;
  }
  
  .transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
  }
  
  .backdrop-filter {
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  }
  
  .backdrop-blur-lg {
    --tw-backdrop-blur: blur(8px);
    backdrop-filter: var(--tw-backdrop-blur);
  }
  
  /* V3NT Custom Components */
  .v3nt-post-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .v3nt-post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }
  
  .v3nt-header {
    backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, 0.8);
  }
  
  .dark .v3nt-header {
    background-color: rgba(31, 41, 55, 0.8);
  }
  
  .user-avatar {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
  }
  
  .user-avatar::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--gradient-cool);
    opacity: 0.8;
    z-index: -1;
  }
  
  /* Masonry Layout Improvements */
  .masonry-grid.masonry-effect > * {
    margin-bottom: 1.5rem;
    break-inside: avoid;
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
  }
  
  /* Print Styles */
  @media print {
    body {
      background-color: white;
      color: black;
    }
    
    .no-print {
      display: none !important;
    }
    
    .container {
      max-width: 100%;
      padding: 0;
    }
    
    a {
      text-decoration: none;
      color: black;
    }
    
    .shadow, .shadow-md, .shadow-lg, .shadow-xl {
      box-shadow: none !important;
    }
  }