/* ============================================================================
   BCMonster shared site footer — extracted from index.html so every page can
   use the same full footer instead of index having one and the rest having a
   one-line mini footer (or none at all).
   ========================================================================== */
footer {
            background: linear-gradient(135deg, #0a1a40 0%, #0f2567 30%, #1e3a8a 60%, #1e40af 100%);
            border-top: 1px solid rgba(96,165,250,0.12);
            padding: 1.5rem 1rem;
            margin-top: 2rem;
            box-shadow: 0 -4px 30px rgba(0,0,0,0.2);
        }
.footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }
.footer-section h3 {
            margin-bottom: 0.5rem;
            color: #fff;
            font-size: 0.9rem;
        }
.footer-section p {
            color: rgba(255,255,255,.8);
        }
.footer-section a {
            display: block;
            color: rgba(255,255,255,.75);
            text-decoration: none;
            margin-bottom: 0.25rem;
            font-size: 0.85rem;
            transition: color 0.3s;
        }
.footer-section a:hover {
            color: #fff;
        }
.footer-bottom {
            text-align: center;
            padding-top: 1rem;
            margin-top: 1rem;
            border-top: 1px solid rgba(255,255,255,.2);
            color: rgba(255,255,255,.6);
            font-size: 0.8rem;
        }
.footer-brand {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 1.7rem;
            font-weight: 900;
            letter-spacing: -0.02em;
            line-height: 1;
            margin-bottom: 0.35rem;
            background: linear-gradient(135deg, #ffffff 0%, #93b4ff 45%, #4169E1 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 2px 10px rgba(65,105,225,0.45));
        }
.footer-brand .bc { color: #60a5fa; -webkit-text-fill-color: #7aa5ff; }
.footer-slogan {
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: #93b4ff;
            margin-bottom: 0.4rem;
        }
.footer-socials { display: flex; gap: 1rem; margin-top: 0.25rem; }
.footer-social {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 0;
            border: none;
            background: none;
            box-shadow: none;
            transition: transform 0.2s, opacity 0.2s;
            text-decoration: none;
            opacity: 0.85;
        }
.footer-social svg { width: 24px; height: 24px; fill: #fff; transition: transform 0.2s; }
.footer-social:hover { transform: translateY(-2px); opacity: 1; }
.footer-social:hover svg { transform: scale(1.1); }
footer { position: relative; }
footer::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(96,165,250,0.6), rgba(59,130,246,1), rgba(96,165,250,0.6), transparent);
            box-shadow: 0 0 20px rgba(59,130,246,0.4);
        }
