/* ===== NAVBAR ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1100px;
    margin: auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    font-size: 22px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.logo-play {
    color: #38bdf8;
    /* sky blue */
}

.logo-any {
    color: #e5e7eb;
}

.logo-m3u8 {
    color: #f97316;
    /* orange */
}

/* Nav links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 26px;
}

.nav-links a {
    text-decoration: none;
    color: #e5e7eb;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #38bdf8;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #38bdf8, #f97316);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hamburger Button */
.menu-toggle {
    background: none;
    border: none;
    font-size: 26px;
    color: #e5e7eb;
    cursor: pointer;
    display: none;
    padding: 0;
}

/* Mobile only */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
        margin-left: auto;
        /* sticks to right */
    }

    .nav-links {
        display: none;
        /* COMPLETELY removed from layout */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #020617;
        flex-direction: column;
        gap: 18px;
        padding: 20px 0;
        text-align: center;
    }

    .nav-links.open {
        display: flex;
    }
}

/* Footer base */
.footer {
    background: #0f172a;
    /* dark bg consistent with your site */
    color: #e5e7eb;
    /* light text */
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

/* Container max-width and center */
.footer .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px;
}

/* Grid row (flexbox) */
.footer .row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

/* Columns */
.footer .col-lg-4,
.footer .col-lg-3,
.footer .col-lg-2,
.footer .col-md-6 {
    box-sizing: border-box;
    padding: 0 12px;
    flex: 1 1 100%;
    /* Default full width on small screens */
}

/* Responsive widths on larger screens */
@media (min-width: 768px) {
    .footer .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 992px) {
    .footer .col-lg-4 {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }

    .footer .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .footer .col-lg-2 {
        flex: 0 0 16.6667%;
        max-width: 16.6667%;
    }
}

/* Footer titles */
.footer-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 16px;
    color: #38bdf8;
    /* sky blue accent */
}

/* Paragraph in about section */
.footer p {
    line-height: 1.6;
    color: #cbd5e1;
    /* lighter muted text */
}

/* Footer links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: #e5e7eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: #f97316;
    /* orange accent on hover */
}

/* Social links list */
.social-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 16px;
}

.social-links li a {
    color: #e5e7eb;
    font-size: 18px;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-links li a:hover {
    color: #38bdf8;
    /* sky blue on hover */
}

/* Bottom copyright */
.footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 13px;
    color: #64748b;
    /* muted text */
    text-align: center;
}