body {
      /* Base color will be set by Tailwind's bg-stone-900 */
      /* Subtle texture mimicking ornamentation */
      background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h20v20H0V0zm10 16a6 6 0 100-12 6 6 0 000 12z' fill='%2378716c' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    }
    /* Custom scrollbar for webkit browsers */
    ::-webkit-scrollbar {
      width: 8px;
    }
    ::-webkit-scrollbar-track {
      background: #292524; /* stone-800 */
    }
    ::-webkit-scrollbar-thumb {
      background: #57534e; /* stone-600 */
      border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
      background: #78716c; /* stone-500 */
    }
    html {
      scroll-behavior: smooth;
    }