﻿#footerContent{
    margin-top: 0;
}

#copyright {
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.1);
    padding: 40px 20px;
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

#copyright::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(5%, 5%);
    }
}

#trademark {
    color: white;
    text-align: center;
    text-transform: uppercase;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE OPTIMIZED
   ======================================== */

@media only screen and (max-width: 768px) {
    #copyright {
        padding: 30px 15px;
    }
    
    #trademark {
        font-size: 12px;
        letter-spacing: 0.5px;
    }
}

@media only screen and (max-width: 540px) {
    #copyright {
        padding: 25px 12px;
    }
    
    #trademark {
        font-size: 11px;
    }
}

@media only screen and (max-width: 400px) {
    #copyright {
        padding: 20px 10px;
    }
    
    #trademark {
        font-size: 10px;
        letter-spacing: 0.3px;
    }
}

/* Touch device optimization */
@media (hover: none) and (pointer: coarse) {
    #copyright {
        padding: 28px 15px;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    #copyright::before {
        animation: none;
    }
}

/* Print styles */
@media print {
    #copyright {
        background: #333 !important;
        box-shadow: none;
        padding: 20px;
        page-break-inside: avoid;
    }

    #copyright::before {
        display: none;
    }

    #trademark {
        color: white !important;
        font-size: 12px;
    }
}