/* 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(102, 163, 216, 1.0), transparent);
    /* Increased opacity */
    box-shadow: 0px 0px 25px rgba(102, 163, 216, 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(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(20, 30, 40, 0.6) 0%, rgba(10, 15, 20, 0.8) 100%);
    border: 1px solid rgba(102, 163, 216, 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, #66a3d8 0%, #3f6588 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: #66a3d8;
}

.link-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #3f6588;
    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(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;
}

.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: #66a3d8;
    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(63, 101, 136, 0.1) 0%, rgba(16, 16, 16, 0.3) 100%);
    border: 1px solid rgba(63, 101, 136, 0.2);
}

.status-title {
    color: #66a3d8;
    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(63, 101, 136, 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;
}

.footer-time-fused {
    margin: 14px auto 0 auto;
    width: 100%;
    max-width: 300px;
    padding: 10px 12px 12px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;

    background: linear-gradient(135deg, rgba(12, 25, 45, 0.92), rgba(5, 10, 20, 0.96));
    border: 1px solid rgba(80, 150, 255, 0.16);

    box-shadow:
        0 0 0 1px rgba(255,255,255,0.02) inset,
        0 0 18px rgba(0, 100, 255, 0.10),
        0 0 28px rgba(0, 255, 179, 0.05);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.footer-time-fused:hover {
    border-color: rgba(0,255,179,0.25);
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.03) inset,
        0 0 24px rgba(0, 120, 255, 0.14),
        0 0 32px rgba(0, 255, 179, 0.08);
    transform: translateY(-1px);
}

.footer-time-fused::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(102, 209, 255, 0.10), transparent 34%);
    pointer-events: none;
}

.footer-time-fused::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -25%;
    width: 70%;
    height: 200%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255,255,255,0.02) 42%,
        rgba(255,255,255,0.06) 50%,
        rgba(255,255,255,0.02) 58%,
        transparent 100%
    );
    transform: rotate(8deg);
    animation: fusedShine 6s linear infinite;
    pointer-events: none;
}

@keyframes fusedShine {
    0% { transform: translateX(-120%) rotate(8deg); }
    100% { transform: translateX(240%) rotate(8deg); }
}

.time-fused-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.time-live-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0,255,179,0.06);
    border: 1px solid rgba(0,255,179,0.14);
    box-shadow: inset 0 0 10px rgba(0,255,179,0.03);
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ff9d;
    box-shadow:
        0 0 8px rgba(0,255,157,0.85),
        0 0 14px rgba(0,255,157,0.45);
    animation: livePulse 1.6s ease-in-out infinite;
}

.live-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #00ffb3;
}

@keyframes livePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
        box-shadow:
            0 0 8px rgba(0,255,157,0.85),
            0 0 14px rgba(0,255,157,0.45);
    }
    50% {
        transform: scale(1.28);
        opacity: 0.82;
        box-shadow:
            0 0 12px rgba(0,255,157,1),
            0 0 18px rgba(0,255,157,0.65);
    }
}

.time-sync-chip {
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #0f172a;
    background: #66d1ff;
    box-shadow: 0 0 10px rgba(102,209,255,0.35);
    transition: all 0.25s ease;
}

.time-fused-body {
    display: flex;
    align-items: stretch;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.time-panel {
    flex: 1;
    min-width: 0;
}

.time-panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    margin-bottom: 6px;
}

.time-panel-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.4px;
    color: #8ca0ba;
    white-space: nowrap;
}

.time-panel-badge {
    padding: 2px 7px;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.8px;
    line-height: 1.4;
    color: #07121d;
    background: #00ffb3;
    box-shadow: 0 0 8px rgba(0,255,179,0.30);
    white-space: nowrap;
}

.time-panel-divider {
    width: 1px;
    min-height: 64px;
    align-self: center;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.20), transparent);
}

.time-digital {
    font-family: "Consolas", "Courier New", monospace;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 1px;
    margin-bottom: 6px;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    transition: transform 0.18s ease, filter 0.18s ease, text-shadow 0.18s ease;
}

.server-digital {
    color: #66d1ff;
    text-shadow:
        0 0 8px rgba(102,209,255,0.45),
        0 0 16px rgba(102,209,255,0.18);
}

.local-digital {
    color: #00ffb3;
    text-shadow:
        0 0 8px rgba(0,255,179,0.40),
        0 0 16px rgba(0,255,179,0.16);
}

.time-digital.tick {
    transform: scale(1.04);
    filter: brightness(1.08);
}

.time-zone {
    font-size: 10px;
    line-height: 1.35;
    color: #8fa1b8;
    word-break: break-word;
}

@media (max-width: 991px) {
    .footer-time-fused {
        max-width: 300px;
    }
}

.sync-badge {
    background: linear-gradient(135deg, #66d1ff, #3bb8ff);
}

.premium-box {
    position: relative;
    padding: 20px 22px;
    border-radius: 16px;
    overflow: hidden;

    background: linear-gradient(
        135deg,
        rgba(8, 28, 48, 0.75) 0%,
        rgba(5, 13, 23, 0.60) 100%
    );

    border: 1px solid rgba(63, 101, 136, 0.35);

    box-shadow:
        0 0 0 1px rgba(255,255,255,0.02) inset,
        0 6px 24px rgba(0, 0, 0, 0.4);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* glow fijo suave */
.premium-box::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(
        circle at top left,
        rgba(102, 209, 255, 0.10),
        transparent 34%
    );
    z-index: 0;
}

/* fused shine animado */
.premium-box::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -25%;
    width: 70%;
    height: 200%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255,255,255,0.02) 42%,
        rgba(255,255,255,0.06) 50%,
        rgba(255,255,255,0.02) 58%,
        transparent 100%
    );
    transform: rotate(8deg);
    animation: fusedShine 6s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes fusedShine {
    0% {
        transform: translateX(-120%) rotate(8deg);
    }
    100% {
        transform: translateX(240%) rotate(8deg);
    }
}

/* división horizontal */
.split-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 28px;
}

/* columnas */
.box-left,
.box-right {
    width: 50%;
    position: relative;
    z-index: 2;
}

.box-right {
    text-align: right;
    padding-left: 18px;
}

/* línea divisoria central */
.split-box .box-left::after {
    content: "";
    position: absolute;
    top: 6px;
    bottom: 6px;
    right: -14px;
    width: 1px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(255,255,255,0.12) 20%,
        rgba(255,255,255,0.12) 80%,
        transparent 100%
    );
}

/* badges base */
.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 12px;
    white-space: nowrap;
    border: 1px solid;
    position: relative;
    z-index: 2;
}

/* badge servidor */
.premium-badge-server {
    color: #8fe8ff;
    background: rgba(0, 200, 255, 0.10);
    border-color: rgba(0, 200, 255, 0.28);
}

/* badge files premium gold */
.premium-badge-files {
    color: #ffd978;
    background: rgba(255, 196, 64, 0.10);
    border-color: rgba(255, 196, 64, 0.28);
}

/* dots */
.premium-badge .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* dot servidor */
.premium-badge-server .dot {
    background: #19ffd2;
    box-shadow: 0 0 8px rgba(25, 255, 210, 0.45);
    animation: serverPulse 1.8s infinite ease-in-out;
}

/* dot files */
.premium-badge-files .dot {
    background: #ffd15c;
    box-shadow: 0 0 8px rgba(255, 209, 92, 0.40);
    animation: filesPulse 2.2s infinite ease-in-out;
}

/* textos izquierda */
.premium-title {
    margin: 0 0 6px 0;
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.premium-sub {
    margin: 0;
    font-size: 14px;
    color: #9fb6d3;
    position: relative;
    z-index: 2;
}

/* texto derecha premium */
.premium-extra {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #ffdf8a;
    text-shadow: 0 0 10px rgba(255, 210, 100, 0.12);
    position: relative;
    z-index: 2;
}

/* animaciones dots */
@keyframes serverPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(25, 255, 210, 0.30);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 0 0 6px rgba(25, 255, 210, 0.00);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(25, 255, 210, 0.00);
    }
}

@keyframes filesPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 209, 92, 0.28);
    }
    50% {
        transform: scale(1.06);
        box-shadow: 0 0 0 6px rgba(255, 209, 92, 0.00);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 209, 92, 0.00);
    }
}

/* responsive */
@media (max-width: 600px) {
    .split-box {
        flex-direction: column;
        gap: 18px;
    }

    .box-left,
    .box-right {
        width: 100%;
        text-align: left;
        padding-left: 0;
    }

    .split-box .box-left::after {
        display: none;
    }
}

