.watch-footer {
    background: #0a0a0a;
    color: #ffffff;
    padding: 100px 8% 40px;
    margin-top: 120px;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid #1a1a1a;
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    padding-bottom: 80px;
}

.footer-title {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 35px;
    color: #fff;
}

.footer-brand h2 {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-brand h2 span {
    font-weight: 300;
    color: #666;
}

.footer-brand p {
    color: #888;
    font-size: 14px;
    line-height: 1.8;
    max-width: 300px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 15px;
}

.footer-list a {
    color: #888;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    display: inline-block;
}

.footer-list a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-contact p {
    font-size: 13px;
    color: #888;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-email-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
    transition: border-color 0.3s;
    display: inline-block;
}

.footer-email-link:hover {
    border-color: #fff;
}

.footer-base {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #555;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    gap: 25px;
}

.social-links a {
    color: #555;
    font-size: 12px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    transition: color 0.3s;
}

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

@media (max-width: 1024px) {
    .watch-footer {
        padding: 80px 5% 30px;
        margin-top: 80px;
    }

    .footer-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding-bottom: 60px;
    }

    .footer-brand p {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .watch-footer {
        padding: 60px 5% 30px;
        margin-top: 60px;
    }

    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 40px;
    }

    .footer-brand h2 {
        font-size: 20px;
        letter-spacing: 2px;
    }

    .footer-brand p {
        font-size: 13px;
    }

    .footer-title {
        font-size: 12px;
        letter-spacing: 2px;
        margin-bottom: 25px;
    }

    .footer-list a {
        font-size: 12px;
    }

    .footer-contact p {
        font-size: 12px;
    }

    .footer-base {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding-top: 30px;
    }

    .social-links {
        gap: 20px;
    }

    .social-links a {
        font-size: 11px;
    }

    .copyright {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .watch-footer {
        padding: 50px 5% 25px;
        margin-top: 50px;
    }

    .footer-wrapper {
        gap: 35px;
        padding-bottom: 30px;
    }

    .footer-brand h2 {
        font-size: 18px;
    }

    .footer-title {
        font-size: 11px;
        margin-bottom: 20px;
    }

    .footer-list li {
        margin-bottom: 12px;
    }

    .social-links {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
}
