/* Modern Footer Styles */
.footer-modern {
    position: relative;
    background: linear-gradient(135deg, #101010 0%, #1a1a1a 100%);
    padding: 40px 0 20px 0;
    /* overflow: hidden; Removed to allow glow to spill out */
    color: #999;
    font-family: 'PT Sans', sans-serif;
}

.footer-modern .container {
    width: 90%;
    max-width: 1600px;
}

.footer-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2366a3d8' fill-opacity='0.3'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    overflow: hidden;
    /* Keep standard overflow hidden for inner elements if needed */
}

.footer-top-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    /* Increased height slightly */
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 1.0), transparent);
    /* Increased opacity */
    box-shadow: 0px 0px 25px rgba(255, 0, 0, 0.8);
    /* Stronger shadow */
    z-index: 100;
}

.footer-col {
    margin-bottom: 30px;
}

/* Logo & Description */
.footer-logo {
    height: 64px;
    /* h-16 */
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0px 4px 15px rgba(255, 0, 0, 0.4));
    margin-bottom: 16px;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-desc {
    color: #999;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-online-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(20, 30, 40, 0.6) 0%, rgba(10, 15, 20, 0.8) 100%);
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #00ff00;
    /* Standard green from template */
    margin-right: 8px;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }
}

.footer-online-badge span {
    color: #00ff00;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Titles */
.footer-title {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, #ff3b3b 0%, #7a0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: table;
}

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

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

.footer-links a {
    color: #ccc;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-links a:hover {
    transform: translateX(4px);
    color: #ff3b3b;
}

.link-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #7a0000;
    margin-right: 12px;
    transition: all 0.3s ease;
}

/* Social Media */
.footer-social-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-btn {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid transparent;
    border-radius: 8px;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.social-btn:hover {
    text-decoration: none;
}

.social-btn.discord:hover {
    background: rgba(88, 101, 242, 0.1);
    border-color: #5865F2;
    color: #5865F2;
}

.social-btn.facebook:hover {
    background: rgba(24, 119, 242, 0.1);
    border-color: #1877F2;
    color: #1877F2;
}

.social-btn.instagram:hover {
    background: rgba(225, 48, 108, 0.1);
    border-color: #E1306C;
    color: #E1306C;
}

.social-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    /* Removed filter as we now use SVGs with currentColor */
}

/* Info Column */
.footer-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-item {
    display: flex;
    align-items: flex-start;
}

.info-icon {
    color: #ff3b3b;
    font-size: 20px;
    margin-right: 12px;
    line-height: 1;
}

.info-main {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.info-email {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.info-email:hover {
    color: #ff3b3b;
    text-decoration: none;
}

.info-sub {
    color: #999;
    font-size: 12px;
    margin: 4px 0 0 0;
}

.server-status-box {
    margin-top: 8px;
    padding: 16px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, rgba(16, 16, 16, 0.3) 100%);
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.status-title {
    color: #ff3b3b;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 8px 0;
}

.status-main {
    color: #fff;
    font-size: 14px;
    margin: 0;
}

.status-sub {
    color: #999;
    font-size: 12px;
    margin: 4px 0 0 0;
}

/* Bottom Bar */
.footer-bottom-bar {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 0, 0, 0.2);
}

.copyright-text {
    color: #777;
    font-size: 14px;
    margin: 0;
}

.copyright-text .highlight {
    color: #ccc;
    font-weight: 600;
}

.legal-links {
    color: #777;
    font-size: 12px;
}

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

.legal-links a:hover {
    color: #fff;
}

.legal-links .sep {
    margin: 0 8px;
    color: #555;
}

/* ===== MU VOLCON FOOTER RED THEME ===== */

.footer-modern {
    background: linear-gradient(135deg, #050000 0%, #170000 50%, #050505 100%) !important;
    border-top: 1px solid rgba(255,0,0,.25);
    box-shadow: inset 0 25px 60px rgba(255,0,0,.06);
}

.footer-bg-overlay {
    opacity: 0.07 !important;
}

.footer-top-glow {
    background: linear-gradient(90deg, transparent, rgba(255,0,0,1), #ff6a00, transparent) !important;
    box-shadow: 0 0 30px rgba(255,0,0,.85) !important;
}

.footer-logo {
    filter: drop-shadow(0 0 16px rgba(255,0,0,.45)) !important;
}

.footer-online-badge,
.server-status-box {
    background: linear-gradient(135deg, rgba(30,0,0,.72) 0%, rgba(5,5,5,.88) 100%) !important;
    border: 1px solid rgba(255,0,0,.28) !important;
    box-shadow: 0 0 18px rgba(255,0,0,.12);
}

.footer-title {
    background: linear-gradient(90deg,#ff2b2b,#ff6a00,#ffffff) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.footer-links a:hover,
.info-email:hover,
.legal-links a:hover {
    color: #ff4d4d !important;
    text-shadow: 0 0 8px rgba(255,0,0,.45);
}

.link-dot {
    background-color: #ff2b2b !important;
    box-shadow: 0 0 8px rgba(255,0,0,.7);
}

.social-btn {
    background: rgba(35,0,0,.35) !important;
    border: 1px solid rgba(255,0,0,.15) !important;
}

.social-btn:hover {
    background: rgba(80,0,0,.35) !important;
    border-color: rgba(255,0,0,.45) !important;
    color: #ff4d4d !important;
    box-shadow: 0 0 15px rgba(255,0,0,.22);
}

.info-icon,
.status-title {
    color: #ff3b3b !important;
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255,0,0,.22) !important;
}
