/* Additional custom styles (most styling is handled by Tailwind) */

/* Smooth transitions for dark mode */
html {
    scroll-behavior: smooth;
}

/* Navigation link styles */
.nav-link {
    @apply text-gray-600 dark:text-gray-300 hover:text-indigo-600 dark:hover:text-indigo-400 transition-colors duration-300 font-medium;
}

/* Tool card hover effect */
.tool-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
}

/* Dark mode toggle animation */
#theme-toggle i {
    transition: opacity 0.3s ease;
}

/* Accessibility focus styles */
a:focus, button:focus, input:focus {
    @apply outline-none ring-2 ring-indigo-500 ring-offset-2;
}

/* Mobile menu animation */
#mobile-menu {
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

/* Tool icon colors */
.tool-icon {
    @apply text-2xl;
}

.youtube-icon {
    @apply text-red-600 dark:text-red-400;
}

.instagram-icon {
    @apply text-pink-600 dark:text-pink-400;
}

.qr-icon {
    @apply text-blue-600 dark:text-blue-400;
}

.password-icon {
    @apply text-green-600 dark:text-green-400;
}

.image-icon {
    @apply text-purple-600 dark:text-purple-400;
}

.speed-icon {
    @apply text-orange-600 white:text-orange-400;
}
<style>
.content-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    color: #333;
    line-height: 1.6;
}
.content-section h2 {
    color: #4f46e5;
    font-size: 28px;
    margin-bottom: 20px;
}
.content-section h3 {
    color: #4f46e5;
    font-size: 22px;
    margin: 25px 0 15px;
}
.content-section h4 {
    color: #4f46e5;
    font-size: 18px;
    margin: 20px 0 10px;
}
.feature-box {
    background-color: #f8f9fa;
    border-left: 4px solid #4f46e5;
    padding: 15px;
    margin: 15px 0;
    border-radius: 0 4px 4px 0;
}
.callout-box {
    background-color: #eef2ff;
    border: 1px solid #c7d2fe;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
}
ul, ol {
    padding-left: 20px;
    margin: 15px 0;
}
li {
    margin-bottom: 8px;
}
</style>