/* Footer */
.footer {
    width: 100%;
    background-color: #000000;
    padding: 40px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
    box-sizing: border-box;
}

/* Top Section - Tagline */
.footer-tagline {
    text-align: center;
    margin-bottom: 30px;
}

.footer-tagline p {
    font-size: 0.95rem;
    font-weight: 400;
    color: #ffffff;
    font-family: 'Prompt', sans-serif;
    line-height: 1.6;
    margin: 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Middle Section - Social Icons */
.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.footer-social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    background: rgba(255, 255, 255, 0.1);
}

.footer-social-icon svg {
    width: 24px;
    height: 24px;
}

.footer-social-icon.line:hover {
    background: rgba(0, 195, 0, 0.2);
    color: #00C300;
}

.footer-social-icon.facebook:hover {
    background: rgba(24, 119, 242, 0.2);
    color: #1877F2;
}

.footer-social-icon.discord:hover {
    background: rgba(88, 101, 242, 0.2);
    color: #5865F2;
}

/* Bottom Section - Copyright and Links */
.footer-bottom {
    text-align: center;
}

.footer-copyright {
    margin-bottom: 15px;
}

.footer-copyright p {
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Prompt', sans-serif;
    margin: 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-link {
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Prompt', sans-serif;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-separator {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0 5px;
}

/* Responsive Design */
@media screen and (max-width: 968px) {
    .footer {
        padding: 35px 0 25px;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-tagline p {
        font-size: 0.85rem;
    }
    
    .footer-social {
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .footer-social-icon {
        width: 36px;
        height: 36px;
    }
    
    .footer-social-icon svg {
        width: 22px;
        height: 22px;
    }
}

@media screen and (max-width: 480px) {
    .footer {
        padding: 30px 0 20px;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-tagline {
        margin-bottom: 25px;
    }
    
    .footer-tagline p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    .footer-social {
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .footer-social-icon {
        width: 32px;
        height: 32px;
    }
    
    .footer-social-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .footer-copyright {
        margin-bottom: 12px;
    }
    
    .footer-copyright p {
        font-size: 0.7rem;
    }
    
    .footer-links {
        gap: 8px;
    }
    
    .footer-link {
        font-size: 0.7rem;
    }
    
    .footer-separator {
        font-size: 0.7rem;
        margin: 0 3px;
    }
}

