/* Essential Tailwind-like styles with enhanced mobile design */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #0a0f1c 0%, #1a1f2e 25%, #2d3748 50%, #4a5568 75%, #718096 100%);
    color: #f7fafc;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Enhanced Grid system with better mobile support */
.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 640px) {
    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.gap-6 {
    gap: 1.5rem;
}

/* Enhanced Flexbox utilities */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.space-x-3 > * + * {
    margin-left: 0.75rem;
}

.space-x-4 > * + * {
    margin-left: 1rem;
}

.space-x-6 > * + * {
    margin-left: 1.5rem;
}

/* Enhanced Spacing */
.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-12 {
    margin-top: 3rem;
}

/* Enhanced Colors with gradients */
.bg-gray-800 {
    background: linear-gradient(145deg, #2d3748, #4a5568);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bg-gray-900 {
    background: linear-gradient(145deg, #1a202c, #2d3748);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.bg-blue-600 {
    background: linear-gradient(145deg, #3b82f6, #60a5fa);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.bg-blue-700 {
    background: linear-gradient(145deg, #2563eb, #3b82f6);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.5);
}

.bg-purple-600 {
    background: linear-gradient(145deg, #a855f7, #c084fc);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.bg-purple-700 {
    background: linear-gradient(145deg, #9333ea, #a855f7);
    box-shadow: 0 12px 35px rgba(147, 51, 234, 0.5);
}

/* Enhanced button styling */
.transform {
    transform: translateZ(0);
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

/* Enhanced button effects */
.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.hover\:shadow-xl:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Modern glassmorphism effects */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Enhanced text gradients */
.text-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced hero section buttons */
.hero-section a {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-section a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
    z-index: -1;
}

.hero-section a:hover::before {
    left: 100%;
}

.no-underline {
    text-decoration: none;
}





.bg-green-600 {
    background: linear-gradient(145deg, #16a34a, #22c55e);
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
}

.bg-green-700 {
    background: linear-gradient(145deg, #15803d, #16a34a);
}

.bg-yellow-600 {
    background: linear-gradient(145deg, #ca8a04, #eab308);
    box-shadow: 0 4px 15px rgba(202, 138, 4, 0.3);
}

.bg-yellow-700 {
    background: linear-gradient(145deg, #a16207, #ca8a04);
}

.bg-indigo-600 {
    background: linear-gradient(145deg, #4f46e5, #6366f1);
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.bg-indigo-700 {
    background: linear-gradient(145deg, #4338ca, #4f46e5);
}

.bg-red-600 {
    background: linear-gradient(145deg, #dc2626, #ef4444);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.bg-red-700 {
    background: linear-gradient(145deg, #b91c1c, #dc2626);
}

.bg-teal-600 {
    background: linear-gradient(145deg, #0d9488, #14b8a6);
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
}

.bg-teal-700 {
    background: linear-gradient(145deg, #0f766e, #0d9488);
}

.bg-orange-600 {
    background: linear-gradient(145deg, #ea580c, #f97316);
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.3);
}

.bg-orange-700 {
    background: linear-gradient(145deg, #c2410c, #ea580c);
}

.bg-pink-600 {
    background: linear-gradient(145deg, #db2777, #ec4899);
    box-shadow: 0 4px 15px rgba(219, 39, 119, 0.3);
}

.bg-pink-700 {
    background: linear-gradient(145deg, #be185d, #db2777);
}

.bg-cyan-600 {
    background: linear-gradient(145deg, #0891b2, #06b6d4);
    box-shadow: 0 4px 15px rgba(8, 145, 178, 0.3);
}

.bg-cyan-700 {
    background: linear-gradient(145deg, #0e7490, #0891b2);
}

.bg-gray-600 {
    background: linear-gradient(145deg, #4b5563, #6b7280);
}

.bg-gray-700 {
    background: linear-gradient(145deg, #374151, #4b5563);
}

.bg-black {
    background-color: #000000;
}

.bg-opacity-50 {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

/* Enhanced Text colors */
.text-white {
    color: #ffffff;
}

.text-gray-100 {
    color: #f3f4f6;
}

.text-gray-300 {
    color: #d1d5db;
}

.text-gray-400 {
    color: #9ca3af;
}

/* Enhanced Typography with better mobile scaling */
.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 600;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 800;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 800;
}

.text-5xl {
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.025em;
}

.text-6xl {
    font-size: 3.75rem;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.025em;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

/* Enhanced Layout */
.w-full {
    width: 100%;
}

.w-10 {
    width: 2.5rem;
}

.w-12 {
    width: 3rem;
}

.h-10 {
    height: 2.5rem;
}

.h-12 {
    height: 3rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.max-h-\[90vh\] {
    max-height: 90vh;
}

/* Enhanced Borders and rounded corners */
.rounded {
    border-radius: 0.5rem;
}

.rounded-lg {
    border-radius: 1rem;
}

.rounded-xl {
    border-radius: 1.5rem;
}

.border {
    border-width: 1px;
}

.border-gray-600 {
    border-color: #4b5563;
}

/* Enhanced Shadows */
.shadow-lg {
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
}

/* Enhanced Transitions */
.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 200ms;
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.duration-300 {
    transition-duration: 300ms;
}

/* Enhanced Hover states */
.hover\:bg-gray-700:hover {
    background: linear-gradient(145deg, #374151, #4b5563);
    transform: translateY(-2px);
}

.hover\:bg-gray-800:hover {
    background: linear-gradient(145deg, #1f2937, #374151);
    transform: translateY(-2px);
}

.hover\:bg-blue-700:hover {
    background: linear-gradient(145deg, #1d4ed8, #2563eb);
    transform: translateY(-2px);
}

.hover\:bg-purple-700:hover {
    background: linear-gradient(145deg, #7c3aed, #9333ea);
    transform: translateY(-2px);
}

.hover\:bg-green-700:hover {
    background: linear-gradient(145deg, #15803d, #16a34a);
    transform: translateY(-2px);
}

.hover\:bg-yellow-700:hover {
    background: linear-gradient(145deg, #a16207, #ca8a04);
    transform: translateY(-2px);
}

.hover\:bg-indigo-700:hover {
    background: linear-gradient(145deg, #4338ca, #4f46e5);
    transform: translateY(-2px);
}

.hover\:bg-red-700:hover {
    background: linear-gradient(145deg, #b91c1c, #dc2626);
    transform: translateY(-2px);
}

.hover\:bg-teal-700:hover {
    background: linear-gradient(145deg, #0f766e, #0d9488);
    transform: translateY(-2px);
}

.hover\:bg-orange-700:hover {
    background: linear-gradient(145deg, #c2410c, #ea580c);
    transform: translateY(-2px);
}

.hover\:bg-pink-700:hover {
    background: linear-gradient(145deg, #be185d, #db2777);
    transform: translateY(-2px);
}

.hover\:bg-cyan-700:hover {
    background: linear-gradient(145deg, #0e7490, #0891b2);
    transform: translateY(-2px);
}

.hover\:text-white:hover {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* Enhanced Responsive utilities */
@media (min-width: 640px) {
    .sm\:flex-row {
        flex-direction: row;
    }
    
    .sm\:text-xl {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
    
    .sm\:text-5xl {
        font-size: 3rem;
        line-height: 1.1;
        font-weight: 900;
        letter-spacing: -0.025em;
    }
}

/* Base responsive utilities */
.hidden {
    display: none;
}

.inline-flex {
    display: inline-flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.space-x-6 > * + * {
    margin-left: 1.5rem;
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.p-2 {
    padding: 0.5rem;
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.rounded-md {
    border-radius: 0.375rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.font-medium {
    font-weight: 500;
}

.focus\:outline-none:focus {
    outline: none;
}

.focus\:ring-2:focus {
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
}

.focus\:ring-inset:focus {
    box-shadow: inset 0 0 0 2px rgba(59, 130, 246, 0.5);
}

.focus\:ring-white:focus {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
    .md\:flex {
        display: flex;
    }
    
    .md\:hidden {
        display: none;
    }
    
    .md\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }
    
    .md\:text-6xl {
        font-size: 3.75rem;
        line-height: 1;
    }
    
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Enhanced Modal styles */
.fixed {
    position: fixed;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.z-50 {
    z-index: 50;
}

.hidden {
    display: none;
}

.min-h-screen {
    min-height: 100vh;
}

.overflow-y-auto {
    overflow-y: auto;
}

/* Enhanced Form styles */
input, textarea {
    background: linear-gradient(145deg, #374151, #4b5563);
    border: 2px solid #4b5563;
    border-radius: 0.75rem;
    color: #ffffff;
    padding: 1rem;
    width: 100%;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
    transform: translateY(-1px);
}

input::placeholder, textarea::placeholder {
    color: #9ca3af;
    opacity: 0.7;
}

/* Enhanced Button styles */
button {
    cursor: pointer;
    border: none;
    border-radius: 0.75rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

button:active {
    transform: translateY(1px);
}

/* Enhanced Tool card styles */
.tool-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1.5rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(145deg, rgba(31, 41, 55, 0.8), rgba(55, 65, 81, 0.8));
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.tool-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.tool-card:hover::before {
    opacity: 1;
}

.tool-card:hover::after {
    left: 100%;
}

.tool-card button {
    position: relative;
    z-index: 2;
    background: linear-gradient(145deg, var(--button-color), var(--button-color-dark));
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    transition: all 0.3s ease;
}

.tool-card button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Tool card color variants */
.tool-card[data-color="blue"] button {
    --button-color: #2563eb;
    --button-color-dark: #1d4ed8;
}

.tool-card[data-color="green"] button {
    --button-color: #16a34a;
    --button-color-dark: #15803d;
}

.tool-card[data-color="yellow"] button {
    --button-color: #ca8a04;
    --button-color-dark: #a16207;
}

.tool-card[data-color="purple"] button {
    --button-color: #9333ea;
    --button-color-dark: #7c3aed;
}

.tool-card[data-color="indigo"] button {
    --button-color: #4f46e5;
    --button-color-dark: #4338ca;
}

.tool-card[data-color="red"] button {
    --button-color: #dc2626;
    --button-color-dark: #b91c1c;
}

.tool-card[data-color="teal"] button {
    --button-color: #0d9488;
    --button-color-dark: #0f766e;
}

.tool-card[data-color="orange"] button {
    --button-color: #ea580c;
    --button-color-dark: #c2410c;
}

.tool-card[data-color="pink"] button {
    --button-color: #db2777;
    --button-color-dark: #be185d;
}

.tool-card[data-color="cyan"] button {
    --button-color: #0891b2;
    --button-color-dark: #0e7490;
}

/* Enhanced Gradient backgrounds */
.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-blue-900 {
    --tw-gradient-from: #1e3a8a;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0));
}

.to-purple-900 {
    --tw-gradient-to: #581c87;
}

.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-blue-400 {
    --tw-gradient-from: #60a5fa;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0));
}

.to-purple-400 {
    --tw-gradient-to: #a78bfa;
}

.via-purple-400 {
    --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0));
}

.bg-clip-text {
    background-clip: text;
}

.text-transparent {
    color: transparent;
}

/* Enhanced Icon styles */
.w-6 {
    width: 1.5rem;
}

.h-6 {
    height: 1.5rem;
}

/* Enhanced Utility classes */
.block {
    display: block;
}

.text-center {
    text-align: center;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.pt-4 {
    padding-top: 1rem;
}

/* Enhanced scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Enhanced focus states for better accessibility */
*:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Enhanced button hover effects */
button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Enhanced link hover effects */
a:hover {
    text-decoration: none;
}

/* Enhanced form focus states */
input:focus, textarea:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
    transform: translateY(-1px);
}

/* Enhanced loading animation for buttons */
button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Enhanced card hover effects */
.tool-card:hover .w-12 {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Enhanced text selection */
::selection {
    background: rgba(59, 130, 246, 0.3);
    color: white;
}

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

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(145deg, #4b5563, #6b7280);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(145deg, #6b7280, #9ca3af);
}

/* Enhanced Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mobile-menu-overlay:not(.hidden) {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 85%;
    max-width: 320px;
    background: linear-gradient(180deg, #1f2937 0%, #111827 100%);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-overlay:not(.hidden) .mobile-menu-panel {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.mobile-menu-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.025em;
}

.mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: #d1d5db;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    transform: rotate(90deg);
}

.mobile-menu-nav {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #d1d5db;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mobile-menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.mobile-menu-item:hover::before {
    left: 100%;
}

.mobile-menu-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.mobile-menu-item:active {
    transform: translateX(3px) scale(0.98);
}

.mobile-menu-icon {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    color: #60a5fa;
    transition: all 0.3s ease;
}

.mobile-menu-item:hover .mobile-menu-icon {
    color: #93c5fd;
    transform: scale(1.1);
}

.mobile-menu-item span {
    flex: 1;
}

.mobile-menu-arrow {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.mobile-menu-item:hover .mobile-menu-arrow {
    opacity: 1;
    transform: translateX(5px);
}

/* Mobile menu scrollbar */
.mobile-menu-nav::-webkit-scrollbar {
    width: 4px;
}

.mobile-menu-nav::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.mobile-menu-nav::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.mobile-menu-nav::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Animation for menu items */
.mobile-menu-overlay:not(.hidden) .mobile-menu-item {
    animation: slideInRight 0.4s ease-out backwards;
}

.mobile-menu-overlay:not(.hidden) .mobile-menu-item:nth-child(1) {
    animation-delay: 0.1s;
}

.mobile-menu-overlay:not(.hidden) .mobile-menu-item:nth-child(2) {
    animation-delay: 0.15s;
}

.mobile-menu-overlay:not(.hidden) .mobile-menu-item:nth-child(3) {
    animation-delay: 0.2s;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile menu button (hamburger) improvements */
@media (max-width: 767px) {
    button[onclick="toggleMobileMenu()"] {
        width: 2.75rem;
        height: 2.75rem;
        border-radius: 0.5rem;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }
    
    button[onclick="toggleMobileMenu()"]:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: scale(1.05);
    }
    
    button[onclick="toggleMobileMenu()"]:active {
        transform: scale(0.95);
    }
}

/* Mobile-specific enhancements */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .py-20 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .py-16 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .text-5xl {
        font-size: 2rem;
        line-height: 1.1;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .text-6xl {
        font-size: 2.25rem;
        line-height: 1.1;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .text-xl {
        font-size: 1.125rem;
    }
    
    .text-2xl {
        font-size: 1.25rem;
    }
    
    .px-10 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .py-4 {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }
    
    .text-lg {
        font-size: 1rem;
    }
    
    .tool-card {
        margin-bottom: 1.5rem;
    }
    
    .tool-card:hover {
        transform: translateY(-2px) scale(1.005);
    }
    
    /* Prevent horizontal overflow */
    .hero-section-cta {
        min-height: 70vh;
        padding: 2rem 0;
        overflow-x: hidden;
    }
    
    /* Ensure buttons stack properly */
    .flex-col {
        width: 100%;
    }
    
    /* Reduce gap between stacked elements */
    .gap-6 {
        gap: 1rem;
    }
    
    /* Force text wrapping */
    h1, h2, h3, p {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Prevent any horizontal scroll */
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    /* Ensure all content fits */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Mobile-optimized modern styles */
    .glass {
        border-radius: 1rem;
        backdrop-filter: blur(8px);
    }
    
    .modern-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        border-radius: 2rem;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        display: block;
    }
    
    .card {
        border-radius: 1rem;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    /* Better spacing for mobile cards */
    .tool-card {
        padding: 1.25rem;
        border-radius: 1rem;
    }
    
    /* Optimize grid for mobile */
    .grid {
        gap: 1rem;
    }
    
    /* Better button spacing */
    .flex-col.sm\:flex-row {
        gap: 1rem;
    }
    
    /* Optimize hero section for mobile */
    .hero-section {
        padding: 2rem 1rem;
    }
    
    /* Better text sizing for mobile */
    .gradient-text {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    /* Optimize about section for mobile */
    .section-header {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    /* Better modal for mobile */
    .modal-content {
        margin: 0.5rem;
        border-radius: 1rem;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .text-5xl {
        font-size: 1.75rem;
    }
    
    .text-6xl {
        font-size: 2rem;
    }
    
    .text-xl {
        font-size: 1rem;
    }
    
    .text-2xl {
        font-size: 1.125rem;
    }
    
    .px-10 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .py-4 {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    
    .text-lg {
        font-size: 0.875rem;
    }
    
    .hero-section-cta {
        min-height: 60vh;
    }
    
    .gap-6 {
        gap: 0.75rem;
    }
    
    /* Extra small screen optimizations */
    .modern-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
        max-width: 240px;
    }
    
    .card {
        padding: 1.25rem;
        border-radius: 0.75rem;
    }
    
    .tool-card {
        padding: 1rem;
        border-radius: 0.75rem;
    }
    
    .gradient-text {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .section-header {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
}
    
    /* Mobile navigation */
    nav {
        padding: 0.5rem 0;
    }
    
    nav a {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Mobile modal */
    .modal-content {
        margin: 1rem;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    /* Mobile form inputs */
    input, textarea {
        padding: 0.875rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Mobile buttons */
    button {
        padding: 0.875rem 1.25rem;
        font-size: 1rem;
        min-height: 44px; /* Better touch target */
    }

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #6b7280;
}

/* Enhanced focus states for accessibility */
*:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Enhanced loading states */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Enhanced animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Enhanced header styling */
header {
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Modern CTA Hero Section */
.hero-section-cta {
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0;
    background: #0a0f1c;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(147, 51, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 66, 77, 0.1) 0%, transparent 70%);
    animation: backgroundPulse 8s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2rem;
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.badge-icon {
    font-size: 1.25rem;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-weight: 400;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

.feature-icon {
    font-size: 1.25rem;
}

.hero-cta {
    margin-top: 3rem;
}

.cta-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
    background-size: 200% 200%;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 9999px;
    text-decoration: none;
    box-shadow: 0 20px 40px -10px rgba(59, 130, 246, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 25px 50px -10px rgba(59, 130, 246, 0.5);
}

.cta-arrow {
    width: 1.5rem;
    height: 1.5rem;
    transition: transform 0.3s ease;
}

.cta-primary:hover .cta-arrow {
    transform: translateX(5px);
}

.cta-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #ec4899, #f472b6);
    bottom: 20%;
    right: 15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    top: 50%;
    right: 20%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section-cta {
        min-height: 80vh;
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-features {
        gap: 1rem;
    }
    
    .feature-item {
        font-size: 0.875rem;
        padding: 0.625rem 1.25rem;
    }
    
    .cta-primary {
        padding: 1rem 2rem;
        font-size: 1.125rem;
    }
    
    .shape {
        filter: blur(40px);
    }
    
    .shape-1 {
        width: 250px;
        height: 250px;
    }
    
    .shape-2 {
        width: 200px;
        height: 200px;
    }
    
    .shape-3 {
        width: 150px;
        height: 150px;
    }
}

/* Enhanced section headers */
.section-header {
    position: relative;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
}

/* Enhanced modal styling */
#toolModal {
    backdrop-filter: blur(10px);
}

#toolModal .bg-gray-800 {
    background: linear-gradient(145deg, rgba(31, 41, 55, 0.95), rgba(55, 65, 81, 0.95));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
} 

/* Modern Glassmorphism and Gradient Theme */
body {
  background: linear-gradient(120deg, #232526 0%, #414345 100%);
  color: #f7faff;
  font-family: 'Montserrat', 'Inter', sans-serif;
}

.glass {
  background: rgba(255,255,255,0.08);
  box-shadow: 0 8px 32px 0 rgba(31,38,135,0.18);
  backdrop-filter: blur(12px);
  border-radius: 1.5rem;
  border: 1px solid rgba(255,255,255,0.18);
}

.modern-btn {
  background: linear-gradient(90deg, #6EE7B7 0%, #3B82F6 100%);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.75rem 2rem;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 2px 12px rgba(59,130,246,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.modern-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 24px rgba(59,130,246,0.25);
}

.gradient-text {
  background: linear-gradient(90deg, #60a5fa, #a78bfa, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card {
  border-radius: 1.5rem;
  background: rgba(255,255,255,0.10);
  box-shadow: 0 8px 32px 0 rgba(31,38,135,0.18);
  padding: 2rem;
  margin-bottom: 2rem;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 16px 48px 0 rgba(31,38,135,0.22);
} 

/* Enhanced Patreon Buttons for Desktop */
.patreon-buttons-container {
    margin-top: 2rem;
}

.patreon-btn-primary,
.patreon-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 9999px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    min-width: 220px;
}

.patreon-btn-primary {
    background: linear-gradient(135deg, #FF424D 0%, #E6303A 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px -5px rgba(255, 66, 77, 0.4);
}

.patreon-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.patreon-btn-primary:hover::before {
    left: 100%;
}

.patreon-btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 15px 40px -5px rgba(255, 66, 77, 0.5);
    background: linear-gradient(135deg, #E6303A 0%, #FF424D 100%);
}

.patreon-btn-secondary {
    background: linear-gradient(135deg, #4b5563 0%, #374151 100%);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.patreon-btn-secondary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 15px 40px -5px rgba(75, 85, 99, 0.4);
    background: linear-gradient(135deg, #374151 0%, #4b5563 100%);
    border-color: rgba(255, 255, 255, 0.2);
}

.patreon-icon {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.patreon-btn-primary:active,
.patreon-btn-secondary:active {
    transform: translateY(0) scale(0.98);
}

/* Desktop-specific enhancements */
@media (min-width: 768px) {
    .patreon-btn-primary,
    .patreon-btn-secondary {
        padding: 1.25rem 3rem;
        font-size: 1.25rem;
        min-width: 280px;
    }
    
    .patreon-icon {
        width: 1.75rem;
        height: 1.75rem;
    }
    
    .patreon-buttons-container {
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .patreon-btn-primary,
    .patreon-btn-secondary {
        padding: 1.5rem 3.5rem;
        font-size: 1.375rem;
        min-width: 320px;
        letter-spacing: 0.025em;
    }
    
    .patreon-icon {
        width: 2rem;
        height: 2rem;
    }
    
    .patreon-buttons-container {
        gap: 2rem;
    }
    
    .patreon-btn-primary:hover {
        box-shadow: 0 20px 50px -5px rgba(255, 66, 77, 0.6);
    }
    
    .patreon-btn-secondary:hover {
        box-shadow: 0 20px 50px -5px rgba(75, 85, 99, 0.5);
    }
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .patreon-btn-primary,
    .patreon-btn-secondary {
        width: 100%;
        max-width: 320px;
        padding: 0.875rem 2rem;
        font-size: 1rem;
        min-width: auto;
    }
    
    .patreon-buttons-container {
        gap: 1rem;
        width: 100%;
    }
}




