/* ===============================
   eSpire FOOTER — CLEAN CENTERED
   =============================== */

.gaming-footer {
    margin-top: 80px;
    padding: 50px 0 40px;
    background: rgba(15, 15, 30, 0.75);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(108, 92, 231, 0.15);
    position: relative;
    text-align: center;
}

/* Glow bar */
.footer-glow-line {
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg, 
        transparent 0%, 
        #6C5CE7 20%, 
        #FD79A8 50%, 
        #00D2A0 80%, 
        transparent 100%
    );
    animation: glow-line 3s ease-in-out infinite;
}

@keyframes glow-line {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* === TEXT BLOCK === */
.footer-content * {
    margin: 0;       /* reset */
    padding: 0;
}

.footer-logo {
    font-size: 1.9rem;
    font-weight: 900;
    background: linear-gradient(135deg, #6C5CE7, #FD79A8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.footer-tagline {
    color: #B8B8D0;
    font-size: 0.95rem;
    margin-bottom: 40px;   /* 2 reda razmak */
}

.footer-text {
    color: #B8B8D0;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-text-small {
    color: rgba(184, 184, 208, 0.75);
    font-size: 0.85rem;
    margin-bottom: 60px; /* veći gap pre verzije */
}

.version-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(108, 92, 231, 0.15);
    border: 1px solid rgba(108, 92, 231, 0.35);
    border-radius: 20px;
    color: #A29BFE;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    animation: pulse-badge 3s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        box-shadow: 0 0 12px rgba(108, 92, 231, 0.35);
    }
    50% {
        box-shadow: 0 0 22px rgba(108, 92, 231, 0.55);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .gaming-footer {
        padding: 40px 0 30px;
    }
    .footer-logo {
        font-size: 1.6rem;
    }
    .footer-tagline {
        font-size: 0.85rem;
    }
}
