/* 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='%23A52A2A' 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;
    /* Crimson Glow */
    background: linear-gradient(90deg, transparent, var(--color-crimson), transparent);
    box-shadow: 0px 0px 25px var(--color-crimson);
    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(63, 101, 136, 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(44, 62, 80, 0.6) 0%, rgba(52, 73, 94, 0.8) 100%);
    /* border: 1px solid var(--color-ember); */
}

.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, var(--color-gold) 0%, var(--color-crimson) 100%);
    -webkit-background-clip: text;
    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: var(--color-silver);
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-links a:hover {
    transform: translateX(4px);
    color: var(--color-gold);
}

.footer-links a:hover .link-dot {
    background-color: var(--color-gold);
    box-shadow: 0 0 10px var(--color-gold);
}

.link-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-crimson);
    margin-right: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Social Media */
.footer-social-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-btn {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    background: rgba(63, 101, 136, 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;
    border-color: var(--color-gold);
}

.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: var(--color-gold);
    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: #66a3d8;
    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(165, 42, 42, 0.1) 0%, rgba(16, 16, 16, 0.3) 100%);
    border: 1px solid rgba(165, 42, 42, 0.2);
}

.status-title {
    color: var(--color-gold);
    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(165, 42, 42, 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;
}