/* Custom styles for nanowrimo.io */

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.hero-title {
    letter-spacing: -0.02em;
    background: linear-gradient(to right, #ffffff, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* High contrast focus states */
input:focus,
button:focus,
a:focus {
    outline: 2px solid #ef4444;
    outline-offset: 2px;
}

/* Smooth transitions */
button,
a {
    transition: all 0.2s ease-in-out;
}

/* Hover effects */
button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(239, 68, 68, 0.3);
}

a:hover {
    transform: translateY(-2px);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

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

::-webkit-scrollbar-thumb {
    background: #374151;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4b5563;
}
