/* ===== NETSTUTS - COMBINED OPTIMIZED STYLES ===== */
/* This file combines index.css + footers.css + critical fixes */

/* ===== RESET & BASE STYLES ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #2c3e50;
    transition: background 0.8s ease;
}

/* ===== NAVIGATION - NO BACKGROUND BEHIND BUTTONS ===== */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(90deg, #0e1c4e 0%, #166b8a 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    padding: 0 20px;
}

nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

/* Remove ALL backgrounds from nav-left and its children */
.nav-left {
    display: flex;
    gap: 5px;  /* Small gap between buttons */
    background: transparent !important;  /* Force transparent */
}

.nav-left ul {
    display: flex;
    gap: 5px;
    padding: 0;
    margin: 0;
    background: transparent !important;  /* Force transparent */
}

.nav-left li {
    background: transparent !important;  /* Force transparent */
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Style ONLY the anchor tags (the actual buttons) */
.nav-left li a {
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    padding: 10px 18px;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    /* Add background ONLY to the buttons */
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    display: inline-block;  /* Ensure proper button shape */
}

.nav-left li a:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.nav-left li a.active {
    background: rgba(255, 255, 255, 0.3);
    border-bottom: 3px solid #ffd700;
}

/* Donate button styling */
.donate-nav-btn {
    background: linear-gradient(90deg, #ff416c 0%, #ff4b2b 100%) !important;
    padding: 12px 28px !important;
    border-radius: 40px !important;
    font-weight: 800 !important;
    box-shadow: 0 4px 15px rgba(255, 75, 43, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.donate-nav-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(255, 75, 43, 0.6) !important;
}

/* ===== HEADER ===== */
header {
    text-align: center;
    padding: 50px 20px;
    background: #ffffff;
    background-size: cover;
    background-position: center;
    border-radius: 0 0 12px 12px;
    margin-bottom: 40px;
}

header h1 {
    font-size: 3.2rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(to right, #ffffff, #e0f7fa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

header p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    opacity: 1;
}

/* Header text colors */
header .site-title,
header .hero-title,
header .domain-url,
header .welcome-text,
header .motivation-text {
    color: #2c3e50 !important;
}

header .domain-url i,
header .motivation-text i {
    color: #2c3e50 !important;
}

.encourage {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 25px;
    max-width: 800px;
    margin: 0 auto;
    border-left: 5px solid #26d0ce;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #2c3e50;
}

.encourage span {
    font-size: 1.1rem;
    line-height: 1.7;
    display: block;
}

.encourage b {
    color: #003366;
    font-weight: 700;
}

/* ===== MAIN CONTENT ===== */
main {
    max-width: 960px;
    margin: 40px auto 25px auto;
    padding: 0 16px;
    min-height: 600px;
}

section {
    background: #ffffff;
    border-radius: 12px;
    padding: 28px 22px 14px 34px;
    margin-bottom: 40px;
    box-shadow: 0 6px 22px rgba(23, 141, 202, 0.07), 0 2px 6px rgba(50, 218, 196, 0.19);
    transition: box-shadow 0.26s ease, transform 0.24s ease, border-left-width 0.2s ease;
    position: relative;
    color: #2c3e50;
}

section:hover {
    box-shadow: 0 12px 28px rgba(20, 175, 187, 0.16), 0 2px 12px rgba(255, 227, 135, 0.19);
    transform: scale(1.013);
}

/* Section headings */
h2,
.section-heading {
    color: #003366 !important;
    font-weight: 700;
}

h2 {
    font-size: 1.34rem;
    padding: 8px 12px;
    background: rgba(26, 41, 128, 0.05);
    border-radius: 4px;
    margin: 20px auto;
    display: inline-block;
    text-align: center;
}

h2::before {
    margin-right: 6px;
    font-size: 1rem;
    vertical-align: middle;
}

/* Lists */
ul {
    list-style: none;
    padding-left: 20px;
}

ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
    color: #2c3e50;
}

main section ul li::before {
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #26d0ce;
}

ul li a {
    color: #004c8c !important;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1.5px solid #004c8c !important;
    border-radius: 4px;
    padding: 1px 4px;
    transition: color 0.2s ease, border-bottom 0.2s ease, background 0.2s ease;
}

ul li a:hover {
    color: #ff416c !important;
    background: linear-gradient(90deg, #15b3b7 10%, #ffe387 100%);
    border-bottom: 2.2px solid #168b95;
    box-shadow: 0 2px 12px rgba(255, 227, 135, 0.31);
}

strong,
b {
    color: #003366 !important;
}

a,
a:visited,
section a {
    color: #004c8c !important;
    border-bottom-color: #004c8c !important;
}

.site-motivation {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    border-left: 5px solid #ff416c;
    color: #2c3e50;
    font-size: 1.15rem;
    line-height: 1.7;
    text-align: center;
    font-weight: 500;
}

/* ===== FOOTER STYLES (from footers.css) ===== */
#main-footer {
    display: flex !important;
    justify-content: center !important;
    margin-top: 30px !important;
    padding: 0 20px 14px !important;
    background: transparent !important;
    position: relative !important;
    box-sizing: border-box !important;
}

#main-footer .footer-inner {
    background: white !important;
    color: #1a1a1a !important;
    max-width: 800px !important;
    width: 100% !important;
    padding: 22px 36px !important;
    border-radius: 20px !important;
    text-align: center !important;
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08), 0 1px 0 rgba(255, 255, 255, 0.5) inset !important;
    position: relative !important;
    overflow: hidden !important;
    margin: 0 auto !important;
    display: block !important;
}

#main-footer .footer-copy {
    color: #111827 !important;
    font-size: 0.9rem !important;
    margin-top: 18px !important;
    padding-top: 16px !important;
    border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    line-height: 1.5 !important;
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    clear: both !important;
}

#main-footer .footer-title {
    font-size: 1.45rem !important;
    font-weight: 700 !important;
    margin-bottom: 16px !important;
    color: #1a1a1a !important;
    letter-spacing: 0.5px !important;
    position: relative !important;
    display: inline-block !important;
    padding: 0 15px !important;
    text-align: center !important;
}

#main-footer .footer-title::before {
    content: '✨' !important;
    position: absolute !important;
    left: -30px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 1rem !important;
    animation: sparkle 2s ease-in-out infinite !important;
}

#main-footer .footer-title::after {
    content: '✨' !important;
    position: absolute !important;
    right: -30px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 1rem !important;
    animation: sparkle 2s ease-in-out infinite !important;
    animation-delay: 1s !important;
}

#main-footer .social-buttons {
    display: flex !important;
    justify-content: center !important;
    gap: 8px !important;
    margin: 20px 0 25px !important;
    flex-wrap: wrap !important;
    position: relative !important;
}

#main-footer .svg-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    border-radius: 50% !important;
    text-decoration: none !important;
    color: white !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15), 0 1px 0 rgba(255, 255, 255, 0.1) inset !important;
    min-width: auto !important;
    width: 38px !important;
    height: 38px !important;
    border: none !important;
    position: relative !important;
    overflow: hidden !important;
    cursor: pointer !important;
    margin: 0 !important;
}

#main-footer .social-icon {
    width: 18px !important;
    height: 18px !important;
    filter: brightness(0) invert(1) !important;
    transition: transform 0.3s ease !important;
}

#main-footer .svg-button.facebook {
    background: #3b5998 !important;
}

#main-footer .svg-button.x {
    background: #000000 !important;
}

#main-footer .svg-button.whatsapp {
    background: #25d366 !important;
}

#main-footer .svg-button.linkedin {
    background: #0077b5 !important;
}

#main-footer .svg-button::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(120deg, rgba(255,255,255,0.35), rgba(255,255,255,0.05), rgba(255,255,255,0.35)) !important;
    opacity: 0 !important;
    transition: opacity 0.4s ease !important;
    z-index: 1 !important;
}

#main-footer .svg-button:hover::before {
    opacity: 1 !important;
}

#main-footer .svg-button:hover {
    transform: translateY(-3px) scale(1.06) !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35) !important;
}

#main-footer .sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
}

@keyframes sparkle {
    0%, 100% { 
        opacity: 1 !important;
        transform: translateY(-50%) scale(1) !important;
    }
    50% { 
        opacity: 0.5 !important;
        transform: translateY(-50%) scale(0.9) !important;
    }
}

#main-footer * {
    box-sizing: border-box !important;
}

#main-footer strong {
    color: #1e40af !important;
    font-weight: 700 !important;
    position: relative !important;
    display: inline-block !important;
}

#main-footer strong::after {
    content: '' !important;
    position: absolute !important;
    bottom: -2px !important;
    left: 0 !important;
    width: 100% !important;
    height: 3px !important;
    background: linear-gradient(90deg, #2563eb, transparent) !important;
    border-radius: 1.5px !important;
    transform: scaleX(0) !important;
    transition: transform 0.3s ease !important;
}

#main-footer strong:hover::after {
    transform: scaleX(1) !important;
}

/* ===== LEGAL LINKS SECTION ===== */
.footer-legal {
    background: #ffffff;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #e5e7eb;
    margin-top: 20px;
}

.footer-legal-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-legal-links a {
    color: #1a2980;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-legal-links a:hover {
    color: #26d0ce;
    text-decoration: underline;
}

.separator {
    color: #999999;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
    header h1 {
        font-size: 2.5rem;
    }

    .section-heading {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.2rem;
    }
    
    .donate-nav-btn {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .nav-left {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        background: transparent;  /* Removed dark background */
        padding: 0;  /* Removed padding */
    }
    
    .nav-left ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    
    .nav-left li a {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    /* Header */
    header {
        padding: 40px 15px;
    }

    header h1 {
        font-size: 2rem;
    }

    header p {
        font-size: 1.2rem;
    }

    /* Main Content */
    section {
        padding: 20px;
    }
    
    /* Donate Button */
    .donate-nav-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
        letter-spacing: 1px;
        width: auto;
        min-width: 140px;
    }

    li:has(.donate-nav-btn) {
        width: 100%;
        text-align: center;
    }

    /* Footer */
    #main-footer .social-buttons {
        gap: 5px !important;
        margin: 15px 0 20px !important;
    }
    
    #main-footer .svg-button {
        width: 34px !important;
        height: 34px !important;
    }
    
    #main-footer .social-icon {
        width: 16px !important;
        height: 16px !important;
    }
    
    #main-footer .footer-title::before,
    #main-footer .footer-title::after {
        display: none !important;
    }
}

@media (max-width: 600px) {
    .footer-legal-links {
        flex-direction: column;
        gap: 8px;
    }

    .separator {
        display: block;
    }
}

@media (max-width: 480px) {
    .ad-wrapper {
        padding: 0 10px;
    }

    header h1 {
        font-size: 1.8rem;
    }

    .encourage {
        padding: 15px;
    }

    h2 {
        padding: 12px;
        font-size: 1.3rem;
    }
    
    .donate-nav-btn {
        padding: 7px 16px;
        font-size: 0.85rem;
    }
    
    /* Footer mobile styles */
    #main-footer .svg-button {
        width: 38px !important;
        height: 38px !important;
    }
    
    #main-footer .social-icon {
        width: 18px !important;
        height: 18px !important;
    }
    
    #main-footer .social-buttons {
        gap: 8px !important;
    }
}

/* ===== DONATE BUTTON VARIATIONS ===== */
.donate-paypal-btn {
    background: linear-gradient(135deg, #003087 0%, #009cde 100%);
    color: #ffffff !important;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 12px 30px;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(0, 48, 135, 0.3);
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    text-decoration: none !important;
    white-space: nowrap;
}

.donate-paypal-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 48, 135, 0.5);
    background: linear-gradient(135deg, #009cde 0%, #003087 100%);
    color: #ffffff !important;
    text-decoration: none !important;
}

.donate-paypal-btn::after {
    content: " 💙";
    font-size: 1.2rem;
    margin-left: 8px;
}

.donate-outline-btn {
    background: transparent;
    color: #ff416c !important;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 11px 28px;
    border-radius: 50px;
    border: 2px solid #ff416c;
    box-shadow: 0 4px 12px rgba(255, 65, 108, 0.2);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none !important;
}

.donate-outline-btn:hover {
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 65, 108, 0.4);
    border-color: transparent;
    text-decoration: none !important;
}

.donate-outline-btn::after {
    content: " 🎁";
    font-size: 1.2rem;
    margin-left: 8px;
}

.donate-secure-btn {
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
    color: #ffffff !important;
    font-weight: 800;
    font-size: 1rem;
    padding: 12px 30px;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(255, 75, 43, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none !important;
}

.donate-secure-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 75, 43, 0.5);
    background: linear-gradient(135deg, #ff4b2b 0%, #ff416c 100%);
    color: #ffffff !important;
    text-decoration: none !important;
}

.donate-secure-btn::before {
    content: "🔒";
    font-size: 1rem;
    opacity: 0.9;
}

.donate-secure-btn::after {
    content: "🎁";
    font-size: 1rem;
    margin-left: 5px;
}

.donate-small-btn {
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(255, 75, 43, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    text-decoration: none !important;
}

.donate-small-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(255, 75, 43, 0.4);
    background: linear-gradient(135deg, #ff4b2b 0%, #ff416c 100%);
    color: #ffffff !important;
    text-decoration: none !important;
}

.donate-small-btn::after {
    content: " 🎁";
    font-size: 1rem;
    margin-left: 5px;
}

@keyframes gentlePulse {
    0% { box-shadow: 0 8px 20px rgba(255, 75, 43, 0.4); }
    50% { box-shadow: 0 8px 25px rgba(255, 75, 43, 0.7); }
    100% { box-shadow: 0 8px 20px rgba(255, 75, 43, 0.4); }
}

.donate-attention {
    animation: gentlePulse 2s infinite;
}

.donate-nav-btn[target="_blank"]::after {
    content: " 🎁 ↗";
    font-size: 1rem;
}

.donate-nav-btn {
    position: relative;
}

.donate-nav-btn[title]:hover::after {
    content: attr(title);
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap;
    z-index: 10;
}
/* ===== COMPLETE FOOTER STYLES WITH SOCIAL ICONS ===== */
#main-footer {
    display: flex !important;
    justify-content: center !important;
    margin-top: 30px !important;
    padding: 0 20px 14px !important;
    background: transparent !important;
    position: relative !important;
    box-sizing: border-box !important;
}

#main-footer .footer-inner {
    background: white !important;
    color: #1a1a1a !important;
    max-width: 800px !important;
    width: 100% !important;
    padding: 22px 36px !important;
    border-radius: 20px !important;
    text-align: center !important;
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08), 0 1px 0 rgba(255, 255, 255, 0.5) inset !important;
    position: relative !important;
    overflow: hidden !important;
    margin: 0 auto !important;
    display: block !important;
}

#main-footer .footer-title {
    font-size: 1.45rem !important;
    font-weight: 700 !important;
    margin-bottom: 16px !important;
    color: #1a1a1a !important;
    letter-spacing: 0.5px !important;
    position: relative !important;
    display: inline-block !important;
    padding: 0 15px !important;
    text-align: center !important;
}

#main-footer .footer-title::before {
    content: '✨' !important;
    position: absolute !important;
    left: -30px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 1rem !important;
    animation: sparkle 2s ease-in-out infinite !important;
}

#main-footer .footer-title::after {
    content: '✨' !important;
    position: absolute !important;
    right: -30px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 1rem !important;
    animation: sparkle 2s ease-in-out infinite !important;
    animation-delay: 1s !important;
}

/* ===== SOCIAL BUTTONS STYLES ===== */
#main-footer .social-buttons {
    display: flex !important;
    justify-content: center !important;
    gap: 8px !important;
    margin: 20px 0 25px !important;
    flex-wrap: wrap !important;
    position: relative !important;
}

#main-footer .svg-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    border-radius: 50% !important;
    text-decoration: none !important;
    color: white !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15), 0 1px 0 rgba(255, 255, 255, 0.1) inset !important;
    min-width: auto !important;
    width: 38px !important;
    height: 38px !important;
    border: none !important;
    position: relative !important;
    overflow: hidden !important;
    cursor: pointer !important;
    margin: 0 !important;
}

#main-footer .social-icon {
    width: 18px !important;
    height: 18px !important;
    filter: brightness(0) invert(1) !important;
    transition: transform 0.3s ease !important;
}

/* Platform Colors */
#main-footer .svg-button.facebook {
    background: #3b5998 !important;
}

#main-footer .svg-button.x {
    background: #000000 !important;
}

#main-footer .svg-button.whatsapp {
    background: #25d366 !important;
}

#main-footer .svg-button.linkedin {
    background: #0077b5 !important;
}

/* Hover Effects */
#main-footer .svg-button::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(120deg, rgba(255,255,255,0.35), rgba(255,255,255,0.05), rgba(255,255,255,0.35)) !important;
    opacity: 0 !important;
    transition: opacity 0.4s ease !important;
    z-index: 1 !important;
}

#main-footer .svg-button:hover::before {
    opacity: 1 !important;
}

#main-footer .svg-button:hover {
    transform: translateY(-3px) scale(1.06) !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35) !important;
}

#main-footer .footer-copy {
    color: #111827 !important;
    font-size: 0.9rem !important;
    margin-top: 18px !important;
    padding-top: 16px !important;
    border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    line-height: 1.5 !important;
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    clear: both !important;
}

/* ===== LEGAL LINKS SECTION ===== */
.footer-legal {
    background: #ffffff !important;
    padding: 20px !important;
    text-align: center !important;
    border-top: 1px solid #e5e7eb !important;
    margin-top: 20px !important;
}

.footer-legal-inner {
    max-width: 1100px !important;
    margin: 0 auto !important;
}

.footer-legal-links {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
}

.footer-legal-links a {
    color: #1a2980 !important;
    text-decoration: none !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
}

.footer-legal-links a:hover {
    color: #26d0ce !important;
    text-decoration: underline !important;
}

.separator {
    color: #999999 !important;
}

/* ===== SPARKLE ANIMATION ===== */
@keyframes sparkle {
    0%, 100% { 
        opacity: 1 !important;
        transform: translateY(-50%) scale(1) !important;
    }
    50% { 
        opacity: 0.5 !important;
        transform: translateY(-50%) scale(0.9) !important;
    }
}

/* ===== RESPONSIVE FOOTER STYLES ===== */
@media (max-width: 768px) {
    #main-footer .social-buttons {
        gap: 1px !important;
        margin: 15px 0 20px !important;
    }
    
    #main-footer .svg-button {
        width: 34px !important;
        height: 34px !important;
    }
    
    #main-footer .social-icon {
        width: 16px !important;
        height: 16px !important;
    }
    
    #main-footer .footer-title::before,
    #main-footer .footer-title::after {
        display: none !important;
    }
}

@media (max-width: 600px) {
    .footer-legal-links {
        flex-direction: column !important;
        gap: 8px !important;
    }

    .separator {
        display: block !important;
    }
}

@media (max-width: 480px) {
    .svg-button {
        width: 42px !important;
        height: 42px !important;
    }
    
    .social-icon {
        width: 20px !important;
        height: 20px !important;
    }
    
    .social-buttons {
        gap: 10px !important;
    }
}
.donate-text {
    color: #ffffff !important;
    font-weight: 800;
}

.donate-nav-btn:hover .donate-text {
    color: #ffffff !important;
    text-decoration: none;
}
