body {
    background: #0b0b0b;
    color: #ffffff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container-binge {
    width: 90%;
    max-width: 1500px;
    margin: 40px auto;
}

h1 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 50px;
    color: #ffcc00;
}

.section-title {
    font-size: 32px;
    margin-top: 70px;
    margin-bottom: 30px;
    color: #ffcc00;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.stat-card {
    background: #161616;
    border: 1px solid #2b2b2b;
    border-radius: 18px;
    padding: 25px;
    text-align: center;
    transition: 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    border-color: #ffcc00;
}

.stat-card span {
    display: block;
    color: #aaaaaa;
    font-size: 16px;
    margin-bottom: 15px;
}

.stat-card strong {
    font-size: 34px;
    color: #ffcc00;
}

.series-binge {
    color: #ffcc00;
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.records-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 60px;
}

.record-card {
    background: #161616;
    border: 1px solid #2b2b2b;
    border-radius: 18px;
    padding: 25px;
    transition: 0.2s ease;
}

.record-card:hover {
    transform: translateY(-3px);
    border-color: #ffcc00;
}

.record-card h2 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #ffcc00;
    font-size: 24px;
}

.record-card p {
    color: #bbbbbb;
    margin-bottom: 15px;
}

.record-card strong {
    font-size: 20px;
}

.top-binges {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.binge-card {
    background: #161616;
    border: 1px solid #2b2b2b;
    border-radius: 18px;
    overflow: hidden;
    transition: 0.2s ease;
}

.binge-card:hover {
    transform: translateY(-3px);
    border-color: #ffcc00;
}

.binge-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.binge-content {
    padding: 20px;
}

.binge-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #ffcc00;
    font-size: 26px;
}

.binge-content p {
    color: #bbbbbb;
    margin-bottom: 20px;
}

.binge-stats {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.binge-stats span {
    background: #202020;
    padding: 10px 15px;
    border-radius: 10px;
    font-weight: bold;
}

.series-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.serie-card {
    background: #161616;
    border: 1px solid #2b2b2b;
    border-radius: 18px;
    overflow: hidden;
    transition: 0.2s ease;
}

.serie-card:hover {
    transform: translateY(-3px);
    border-color: #ffcc00;
}

.serie-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.serie-content {
    padding: 20px;
}

.serie-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #ffcc00;
    font-size: 24px;
}

.serie-content p {
    color: #bbbbbb;
    margin-bottom: 20px;
}

.serie-stats {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.serie-stats span {
    background: #202020;
    padding: 10px 15px;
    border-radius: 10px;
    font-weight: bold;
}

.binge-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.binge-card-link:hover {
    text-decoration: none;
}

.history-button-container {
    display: flex;
    justify-content: center;
    margin: 50px 0 20px;
}

.history-button {
    background: #ffcc00;
    color: #000000;
    padding: 16px 28px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.history-button:hover {
    transform: translateY(-3px);
    background: #ffd633;
}

@media screen and (max-width: 768px) {

    h1 {
        font-size: 36px;
    }

    .section-title {
        font-size: 26px;
    }

    .binge-card img {
        height: 350px;
    }

    .serie-card img {
        height: 300px;
    }

    .binge-stats,
    .serie-stats {
        flex-direction: column;
    }

    .top-binges {
    grid-template-columns: 1fr;
}

}
