/* 
 * Enhanced Footer Styling 
 */

 .footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 30%);
    color: #aaa;
    font-family: 'ValheimFont', Arial, sans-serif;
    font-size: 14px;
    text-align: center;
    padding: 15px 20px;
    z-index: 100;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    transition: opacity 0.5s ease;
}

.footer-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer p {
    margin: 0;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    font-size: 12px;
    letter-spacing: 0.5px;
}

.footer .copyright {
    color: #ccc;
    font-size: 13px;
    font-weight: bold;
}

.footer a {
    color: #ff8800;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    display: inline-block;
}

.footer a:hover {
    color: #ffaa33;
    text-shadow: 0 0 8px rgba(255, 136, 0, 0.5);
}

.footer a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #ff8800;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.footer a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.footer strong {
    color: #ccc;
    font-weight: bold;
}

.footer .discord-link {
    font-weight: bold;
}

.footer .separator {
    display: inline-block;
    margin: 0 6px;
    color: #666;
}

/* Responsive adjustments for the footer */
@media (max-width: 768px) {
    .footer {
        padding: 12px 15px;
    }
    
    .footer-content {
        gap: 8px;
    }
}

/* Small screens */
@media (max-width: 576px) {
    .footer {
        position: relative;
        padding: 15px 10px;
    }
    
    .footer p {
        font-size: 11px;
    }
    
    .footer .copyright {
        font-size: 12px;
    }
    
    .footer-content {
        gap: 10px;
    }
}