/* Custom Styles for Xorekvpn */

/* Paragraph spacing */
.prose p + p {
    margin-top: 1rem;
}

/* Hero section text spacing */
.hero-text p {
    margin-bottom: 1.5rem;
}

.hero-text p:last-child {
    margin-bottom: 0;
}

/* Content section text spacing */
.content-section p {
    margin-bottom: 1.25rem;
}

.content-section p:last-child {
    margin-bottom: 0;
}

/* List styling */
.content-section ul li {
    margin-bottom: 0.5rem;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

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

.dark ::-webkit-scrollbar-track {
    background: #1e293b;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 5px;
}

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

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.dark ::-webkit-scrollbar-thumb:hover {
    background: #64748b;
}
