/* Tutornyx Theme - Custom Styles */

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

::-webkit-scrollbar-track {
    background: #1f2937;
}

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

/* Card hover effects */
.hover-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hover-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(127, 0, 255, 0.1);
}

/* Form focus states */
input:focus, textarea:focus {
    box-shadow: 0 0 0 3px rgba(0, 255, 127, 0.1);
}

/* Mobile responsive improvements */
@media (max-width: 768px) {
    .text-5xl { font-size: 2.5rem; }
    .text-7xl { font-size: 3.5rem; }
}

/* Prose styles for content pages */
.prose h1, .prose h2, .prose h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.prose h1 { color: #ffffff; }
.prose h2 { color: #e5e7eb; }
.prose h3 { color: #d1d5db; }
.prose p { color: #9ca3af; }
.prose a { color: #00FF7F; }
