/* css/layout/footer.css */
.footer {
    background: rgba(17, 25, 40, 0.95);
    border-top: 2px solid rgba(99, 102, 241, 0.3);
    padding: 30px 0;
    margin-top: 40px;
}

.footer-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 25px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-section h3 {
    color: #00eaff;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-links a:hover {
    color: #00eaff;
}

.footer-bottom {
    max-width: 1500px;
    margin: 0 auto;
    padding: 20px 25px 0;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    text-align: center;
    color: var(--text-secondary);
    font-size: 13px;
}

/* ========== FOOTER SOCIAL LINKS ========== */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
}

.social-link.youtube:hover {
    background: rgba(255, 0, 0, 0.2);
    color: #ff0000;
}

.social-link.twitter:hover {
    background: rgba(29, 161, 242, 0.2);
    color: #1da1f2;
}

.social-link.tiktok:hover {
    background: rgba(255, 0, 80, 0.2);
    color: #ff0050;
}

/* Footer TradingView Banner */
.footer-tradingview-banner {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(16, 185, 129, 0.1) 100%);
    padding: 12px 20px;
    text-align: center;
    border-top: 1px solid rgba(34, 197, 94, 0.2);
    border-bottom: 1px solid rgba(34, 197, 94, 0.2);
}

.footer-tradingview-banner a {
    color: #22c55e;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-tradingview-banner a:hover {
    color: #4ade80;
}