footer {
    background: rgba(10, 14, 19, 1);
    backdrop-filter: blur(25px);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0;
    text-align: center;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        transparent,
        var(--pirate-gold),
        var(--bronze),
        transparent
    );
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 12px 18px;
    border-radius: 12px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    background: rgba(26, 26, 46, 0.6);
    font-family: 'Cinzel', serif;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.footer-links a:hover {
    color: var(--bright-gold);
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--pirate-gold);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.6),
        0 0 15px rgba(212, 175, 55, 0.4);
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 10px rgba(212, 175, 55, 0.6);
}

.social-icons {
    font-size: 3.2rem;
    margin: 2.5rem 0;
}

.social-icons a {
    color: var(--text-muted);
    margin: 0 1.5rem;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-block;
}

.social-icons a:hover {
    transform: scale(1.25);
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-icons a i {
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-icons a:hover .fa-brands.fa-facebook-f {
    color: #1877f2;
    filter: drop-shadow(0 0 10px #1877f2) drop-shadow(0 0 0 2px #ffffff);
    text-shadow: 
        -2px -2px 0 #ffffff,
        2px -2px 0 #ffffff,
        -2px 2px 0 #ffffff,
        2px 2px 0 #ffffff;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-icons a:hover .fa-brands.fa-x-twitter {
    color: #000000;
    filter: drop-shadow(0 0 10px #000000) drop-shadow(0 0 0 2px #ffffff);
    text-shadow: 
        -2px -2px 0 #ffffff,
        2px -2px 0 #ffffff,
        -2px 2px 0 #ffffff,
        2px 2px 0 #ffffff;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-icons a:hover .fa-brands.fa-instagram {
    color: #e4405f;
    filter: drop-shadow(0 0 10px #e4405f) drop-shadow(0 0 0 2px #ffffff);
    text-shadow: 
        -2px -2px 0 #ffffff,
        2px -2px 0 #ffffff,
        -2px 2px 0 #ffffff,
        2px 2px 0 #ffffff;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-icons a:hover .fa-brands.fa-bluesky {
    color: #00a8e8;
    filter: drop-shadow(0 0 10px #00a8e8) drop-shadow(0 0 0 2px #ffffff);
    text-shadow: 
        -2px -2px 0 #ffffff,
        2px -2px 0 #ffffff,
        -2px 2px 0 #ffffff,
        2px 2px 0 #ffffff;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-icons a:hover .fa-brands.fa-youtube {
    color: #ff0000;
    filter: drop-shadow(0 0 10px #ff0000) drop-shadow(0 0 0 2px #ffffff);
    text-shadow: 
        -2px -2px 0 #ffffff,
        2px -2px 0 #ffffff,
        -2px 2px 0 #ffffff,
        2px 2px 0 #ffffff;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-disclaimer {
    margin-top: 2.5rem;
    color: var(--text-primary);
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 700;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
    line-height: 1.8;
    text-align: center;
}

.footer-disclaimer a {
    color: var(--bright-gold);
    text-decoration: underline;
    font-weight: 800;
    font-size: 1.5rem;
}

.footer-disclaimer a:hover {
    color: #ffffff;
}