/* Standard header and footer styles for all pages */
#global-header, #mobile-header {
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #1e293b 100%);
    background-size: 200% 100%;
    animation: shimmer 8s ease-in-out infinite;
    color: #fff;
    box-shadow: 0 4px 20px 0 rgba(30,41,59,0.3), 0 1px 3px 0 rgba(0,0,0,0.1);
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

#global-header::before, #mobile-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.5), transparent);
}

#global-header .font-bold, #mobile-header .font-bold {
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
#global-header a, #mobile-header a, #global-footer a, #mobile-footer a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #cbd5e1;
    text-decoration: none;
    position: relative;
}
#global-header a:hover, #mobile-header a:hover, #global-footer a:hover, #mobile-footer a:hover {
    color: #fff;
    text-shadow: 0 2px 10px rgba(99, 102, 241, 0.5);
    transform: translateY(-1px);
}
#global-footer, #mobile-footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: #cbd5e1;
    box-shadow: 0 -4px 20px 0 rgba(15, 23, 42, 0.4);
    position: relative;
}

#global-footer::before, #mobile-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(79, 172, 254, 0.4), transparent);
}

#global-footer .font-bold, #mobile-footer .font-bold {
    color: #fff;
    font-weight: 700;
}
#global-footer .text-slate-400, #mobile-footer .text-slate-400 {
    color: #94a3b8;
}
#global-footer .rounded-md, #mobile-footer .rounded-md {
    box-shadow: 0 4px 12px 0 rgba(99, 102, 241, 0.15);
    transition: all 0.3s ease;
}

#global-footer .rounded-md:hover, #mobile-footer .rounded-md:hover {
    box-shadow: 0 8px 20px 0 rgba(99, 102, 241, 0.25);
    transform: translateY(-2px);
}

/* Newsletter form enhancements */
#global-footer form input, #mobile-footer form input {
    transition: all 0.3s ease;
    border: 1px solid #475569;
}

#global-footer form input:focus, #mobile-footer form input:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1), 0 4px 12px rgba(99, 102, 241, 0.2);
    transform: translateY(-1px);
}

#global-footer form button, #mobile-footer form button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

#global-footer form button::before, #mobile-footer form button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

#global-footer form button:hover::before, #mobile-footer form button:hover::before {
    width: 300px;
    height: 300px;
}

/* Add more standard header/footer styles as needed */
