        /* LOGO */
        .brand-logo {
            display: flex; align-items: center; gap: 12px;
            font-size: 2.2rem; color: white; cursor: pointer;
            font-family: 'Orbitron'; font-weight: 900;
            text-transform: uppercase; letter-spacing: 2px;
        }
        .brand-logo i { color: #8000ff; font-size: 2.5rem; filter: drop-shadow(0 0 5px #8000ff); }

        /* --- BIG FOOTER --- */
        footer { background: #000; padding: 100px 0; border-top: 1px solid #333; position: relative; z-index: 2; }
        .f-col-header { color: white; margin-bottom: 30px; font-family: 'Orbitron'; letter-spacing: 1px; }
        .f-link-list li { margin-bottom: 12px; }
        .f-link-list a { color: #888; text-decoration: none; transition: 0.3s; font-size: 1.1rem; }
        .f-link-list a:hover { color: var(--accent-cyan); padding-left: 8px; }
        .f-social a { width: 50px; height: 50px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid #333; color: white; margin-right: 15px; border-radius: 8px; transition: 0.3s; font-size: 1.2rem; }
        .f-social a:hover { background: #8000ff; border-color: #8000ff; transform: translateY(-5px); }
        /* --- BUTTONS & UI --- */
        .btn-cyber {
            background: #8000ff;
            color: white;
            border: none;
            padding: 12px 35px;
            font-family: 'Orbitron';
            clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
            transition: 0.3s;
            text-transform: uppercase;
            font-weight: 700;
            position: relative;
            overflow: hidden;
            letter-spacing: 1px;
            text-decoration: none;
            display: inline-block;
        }
        .btn-cyber:hover { transform: scale(1.05); box-shadow: 0 0 35px #8000ff; color: white; }
.a-link{text-decoration: none;}        