/* ========================================
   Footer - NewlyRegisteredDomains.io
   ======================================== */

.footer {
    background: linear-gradient(135deg, #0a0f0f 0%, #1a2525 100%);
    color: white;
    padding: 60px 0 30px;
    margin-top: 100px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--nrds-blue);
    margin-bottom: 20px;
}

.footer-logo a {
    color: var(--nrds-blue);
    text-decoration: none;
    transition: var(--transition);
}

.footer-logo a:hover {
    color: var(--nrds-light);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--nrds-blue);
}

.footer-affiliate {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin: 30px auto;
    max-width: 900px;
    text-align: left;
}

.footer-affiliate p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    line-height: 1.6;
    margin: 0 0 10px 0;
}

.footer-affiliate p:last-child {
    margin-bottom: 0;
}

.footer-affiliate strong {
    color: rgba(255, 255, 255, 0.8);
}

.footer-affiliate a {
    color: var(--nrds-blue);
    text-decoration: none;
}

.footer-affiliate a:hover {
    text-decoration: underline;
}

.footer-affiliate em {
    font-style: italic;
    opacity: 0.8;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        padding: 0 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .footer-affiliate {
        padding: 15px;
        margin: 20px auto;
    }

    .footer-affiliate p {
        font-size: 11px;
    }
}