* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    text-align: center;
    animation: fadeInBody 1s ease;
}

a {
    text-decoration: none;
    color: inherit;
}

/* HEADER */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    border-bottom: 2px solid #ff4da6;
    box-shadow: 0 0 15px #ff4da6;
    gap: 40px;
    position: relative;
    z-index: 9999;
    animation: glowHeader 3s infinite alternate;
}

.logo img {
    height: 50px;
}

.menu-toggle {
    position: absolute;
    left: 20px;
    font-size: 28px;
    cursor: pointer;
    display: none;
}

.menu {
    display: flex;
    gap: 20px;
}

/* MOBILE */
@media (max-width: 767px) {
    .menu {
        position: fixed;
        top: 70px;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: column;
        background: #111;
        padding: 20px;
        border-radius: 15px;
        display: none;
        z-index: 10000;
    }

    .menu.active {
        display: flex;
        animation: fadeInMenu 0.3s ease;
    }

    .menu-toggle {
        display: block;
    }
}

/* TARJETAS */
.partidos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    padding: 40px;
}

.partido {
    width: 300px;
    height: 300px;
    background: #111;
    border-radius: 20px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    animation: fadeUp 0.8s ease forwards;
    transition: 0.4s;
}

.partido:hover {
    transform: translateY(-10px) scale(1.03);
}

.partido img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 15px;
}

/* BOTONES */
.canal-btn {
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    transition: 0.3s;
}

.canal-btn:hover {
    transform: scale(1.1);
}

/* ESTADOS */

/* ROSADO = DISPONIBLE */
.partido.disponible {
    border: 2px solid #ff4da6;
    box-shadow: 0 0 25px #ff4da6;
}
.partido.disponible .canal-btn {
    background: #ff4da6;
}

/* NARANJA = SALE PRONTO */
.partido.proximamente {
    border: 2px solid #ff9900;
    box-shadow: 0 0 25px #ff9900;
}
.partido.proximamente .canal-btn {
    background: #ff9900;
}

/* GRIS = AGOTADO */
.partido.agotado {
    border: 2px solid #777;
    box-shadow: 0 0 20px #777;
    filter: grayscale(100%);
}
.partido.agotado .canal-btn {
    background: #777;
}

/* FOOTER */
footer {
    margin-top: 40px;
    padding: 20px;
}

.footer-line {
    width: 80%;
    height: 2px;
    background: #ff4da6;
    margin: 0 auto 15px auto;
}

/* ANIMACIONES */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInBody {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInMenu {
    from { opacity: 0; transform: translate(-50%, -10px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

@keyframes glowHeader {
    from { box-shadow: 0 0 10px #ff4da6; }
    to { box-shadow: 0 0 25px #ff4da6; }
}