/* Privacy page specific styles */
body {
    font-family: 'Inter', sans-serif;
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #d35400;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b84a00;
}

/* Dark mode scrollbar */
.dark ::-webkit-scrollbar-track {
    background: #374151;
}

.dark ::-webkit-scrollbar-thumb {
    background: #d35400;
}

/* Smooth transitions for theme changes */
* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Custom focus styles */
button:focus,
a:focus {
    outline: 2px solid #d35400;
    outline-offset: 2px;
}

/* Mobile menu animation */
#mobile-menu {
    transition: all 0.3s ease;
}

/* Prose styling for dark mode */
.prose.dark\:prose-invert h2 {
    color: #f9fafb;
}

.prose.dark\:prose-invert p {
    color: #d1d5db;
}

.prose.dark\:prose-invert li {
    color: #d1d5db;
}

.prose.dark\:prose-invert strong {
    color: #f9fafb;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .prose {
        font-size: 0.875rem;
    }
    
    .prose h2 {
        font-size: 1.5rem;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .bg-lockitin-orange {
        background-color: #000;
    }
    
    .text-lockitin-orange {
        color: #000;
    }
    
    .border-lockitin-orange {
        border-color: #000;
    }
}
