/* ===================================
   SIMPLE MODERN FOOTER STYLES
   =================================== */

/* Main Footer Container */
.modern-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    padding: 40px 0 20px 0;
    margin-top: 60px;
}

/* Footer Content Grid */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 30px;
}

/* Footer Sections */
.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #4a9eff;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-section p {
    color: #b8b8b8;
    margin: 0;
    line-height: 1.5;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #b8b8b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4a9eff;
}

/* Contact Links */
.footer-section a {
    color: #b8b8b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #4a9eff;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    color: #b8b8b8;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: white;
    transform: translateY(-2px);
}

.social-icon.twitter:hover {
    background: #1da1f2;
}

.social-icon.discord:hover {
    background: #7289da;
}

.social-icon.github:hover {
    background: #333;
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background: #333;
    margin: 0 20px 20px 20px;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding: 0 20px;
}

.footer-bottom p {
    margin: 0;
    color: #888;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #4a9eff;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-footer {
        padding: 30px 0 15px 0;
        margin-top: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .social-icons {
        gap: 12px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Legacy Footer Compatibility */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 40px 0;
}

.footercontent ul {
    list-style: none;
    padding: 0;
}

.footercontent ul li {
    margin-bottom: 10px;
}

.footercontent ul li a {
    color: #b8b8b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footercontent ul li a:hover {
    color: #4a9eff;
}

#copyright {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #333;
    color: #888;
}