/* =========================================
   FOOTER STYLES - Using Base CSS Variables
   ========================================= */

/* Base Footer Styles */
html,
body {
    height: 100%;
    min-height: 100vh;
}

body {
    display: flex;
    flex-direction: column;
}

main,
.app-container {
    flex: 1 0 auto;
}

footer {
    padding: 40px 0;
    width: 100%;
    margin-top: auto;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.4));
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

footer .footer-container {
    max-width: 1200px;
    /* Sitenizin genel genişliği ile senkronize edildi */
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    /* 3 eşit parça gibi davranır, orta her zaman merkezdedir */
    align-items: center;
    padding: 0 20px;
    width: 100%;
}

/* Left: Copyright */
footer .footer-left p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Center: Legal Links */
footer .footer-center {
    display: flex;
    justify-content: center;
}

footer .legal-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

footer .legal-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

footer .legal-links a:hover {
    color: #fff;
}

footer .legal-links .dot {
    color: rgba(255, 255, 255, 0.15);
    font-size: 14px;
    padding-bottom: 2px;
}

/* Right: Icons Stack */
footer .footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

footer .social-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 20px;
    transition: all 0.3s ease;
}

footer .social-links a:hover {
    color: #5865F2;
    /* Discord blue */
    transform: translateY(-2px);
}

footer .payment-methods {
    display: flex;
    align-items: center;
    gap: 15px;
}

footer .payment-methods img {
    height: 24px;
    width: auto;
    opacity: 0.5;
    filter: grayscale(1);
    transition: all 0.3s ease;
}

footer .payment-methods img:hover {
    opacity: 1;
    filter: grayscale(0);
    transform: translateY(-2px);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    footer .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    footer .footer-left,
    footer .footer-center,
    footer .footer-right {
        justify-content: center;
        align-items: center;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    footer .footer-container {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    footer .footer-left,
    footer .footer-center,
    footer .footer-right {
        justify-content: center;
        align-items: center;
        display: flex;
        text-align: center;
    }

    footer .footer-right {
        flex-direction: column;
    }

    footer .social-links,
    footer .payment-methods {
        justify-content: center;
    }

    footer .footer-left p {
        font-size: var(--font-sm);
    }
}

/* --- NEW CORPORATE STYLES --- */
.disclaimer-text {
    margin-top: 6px !important;
    font-size: 11px !important;
    color: rgba(255, 255, 255, 0.25) !important;
    font-weight: 400 !important;
}

.footer-corporate {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding: 20px 0;
    margin-bottom: 30px;
}

.corporate-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: flex-start;
}

.corporate-item {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    line-height: 1.4;
}

.corporate-item strong {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
    margin-right: 4px;
}


@media (max-width: 768px) {
    .corporate-container {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        text-align: center;
    }
}