.cycle-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin: 40px auto 30px auto;
    width: fit-content;
}

.cycle-header span {
    font-size: 26px;
    font-weight: 800;
    color: #ffcc00;
}

.watch-selector {
    background:
        linear-gradient(
            145deg,
            #2b2b35,
            #23232f
        );

    border: 2px solid rgba(255,255,255,0.08);

    border-radius: 14px;

    padding: 14px 18px;

    color: white;

    font-size: 18px;
    font-weight: 700;

    cursor: pointer;

    min-width: 220px;

    transition: 0.2s;

    outline: none;
}

.watch-selector:hover {
    border-color: #ffcc00;
}

.watch-selector:focus {
    border-color: #ffcc00;
}


.watch-selector {
    background: #2b2b35;
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 12px 18px;
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}

.watch-selector:hover {
    border-color: #ffcc00;
}


.suivi-bloc-3col {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 35px;
    margin: 40px auto 60px auto;
    width: calc(100% - 80px);
    max-width: 1800px;
}

.col-gauche,
.col-centre,
.col-droite {

    background:
        linear-gradient(
            145deg,
            #1f1f2b,
            #23232f
        );

    border-radius: 24px;

    padding: 28px;

    box-shadow:
        0 0 30px rgba(0,0,0,0.25);

    border:
        1px solid rgba(255,255,255,0.04);
}

.col-gauche {
    width: 280px;
}

.col-centre {
    width: 420px;
    text-align: center;
}

.col-droite {
    width: 280px;
}

.arrowverse-title {
    font-size: 22px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
}

.arrowverse-cover {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.arrowverse-cover img {

    width: 260px;

    border-radius: 20px;

    box-shadow:
        0 0 30px rgba(0,0,0,0.4);

    display: block;
}

.progress-section {
    margin-bottom: 20px;
}

.progress-bar {
    width: 100%;
    height: 14px;
    background: rgba(255,255,255,0.08);
    border-radius: 999px;
    overflow: hidden;
}

.progress-bar-inner {
    height: 100%;
    background:
        linear-gradient(
            90deg,
            #21d07a,
            #4cffb0
        );
}

.progress-percent {
    text-align: right;
    margin-top: 8px;
    font-size: 18px;
    font-weight: 700;
    color: #4cffb0;
}

.stats-bloc {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 15px;
    margin-bottom: 30px;
}

.current-arc-box {
    background: rgba(255,255,255,0.04);
    border-radius: 18px;
    padding: 18px;
    text-align: center;
    margin-top: 25px;
}

.current-arc-title {
    color: #ffcc00;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
}

.current-arc-name {
    font-weight: 700;
    font-size: 17px;
    color: #fff;
    margin-top: 6px;
}

.prochain-titre {
    font-size: 22px;
    font-weight: 800;
    color: #ffcc00;
    margin-bottom: 20px;
}

.prochain-serie {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
}

.prochain-ep {
    font-size: 16px;
    margin-bottom: 8px;
}

.arrowverse-serie-image {
    width: 170px;
    border-radius: 18px;
    margin: 25px auto;
    display: block;
    box-shadow: 0 0 25px rgba(0,0,0,0.35);
}

.next-inputs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.next-inputs input {
    background: #111;
    border: 2px solid #2c2c2c;
    border-radius: 10px;
    color: white;
    padding: 10px;
    font-size: 15px;
}

.btn-vu,
.btn-effacer,
.btn-maintenant {
    border: none;
    border-radius: 10px;
    padding: 10px 18px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}

.btn-vu {
    background: #57e5b0;
    color: #111;
}

#ajout-message {
    background: #60e3be;
    color: #232323;
    border-radius: 8px;
    padding: 12px 22px;
    font-weight: bold;
    text-align: center;
    font-size: 1.09em;
    margin: 0 auto 18px auto;
    box-shadow: 0 2px 8px #0003;
    width: fit-content;
}

.btn-effacer {
    background: #d84735;
    color: white;
}

.btn-maintenant {
    background: #ffcc33;
    color: #111;
}

.btn-vu:hover,
.btn-effacer:hover,
.btn-maintenant:hover {
    transform: translateY(-2px);
}

.next-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
}

.episodes-suivants-titre {
    font-size: 22px;
    font-weight: 800;
    color: #4cffb0;
    margin-bottom: 20px;
    text-align: center;
}

.next-mini {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 12px 15px;
    margin-bottom: 12px;
    font-size: 16px;
    transition: 0.2s;
}

.next-mini:hover {
    transform: translateX(4px);
}

.arrowverse-arcs {
    width: calc(100% - 80px);
    max-width: 1900px;
    margin: auto;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.arc-bloc {
    background: #1f1f23;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.04);
}

.arc-header {
    background: #2b2b35;
    padding: 24px 30px;
    font-size: 22px;
    font-weight: 800;
    color: #ffcc00;
    cursor: pointer;
}

.arc-content.closed {
    display: none;
}

.arc-content {
    padding: 25px;
}

.arc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
}

.arc-episode-card {
    border-radius: 18px;
    padding: 12px;
    min-height: 95px;
    text-align: center;
    border: 2px solid transparent;
    transition: 0.2s;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.arc-episode-card.vu {
    cursor: pointer;
}

.arc-episode-card.vu:hover {
    transform: translateY(-4px);
}

.arc-progress {
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
}

.arc-progress-bar {
    height: 8px;
    background: #2a2a2a;
    border-radius: 999px;
    overflow: hidden;
    margin-top: 8px;
}

.arc-progress-inner {
    height: 100%;
    background: #4caf50;
    border-radius: 999px;
}

.card-serie {
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
}

.card-sortie {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 4px;
}

.card-episode {
    font-size: 16px;
    font-weight: 700;
}

.card-vu {
    font-size: 12px;
}

.arc-episode-card.serie-arrow {
    background: #1f4d2f;
    border-color: #2ecc71;
}

.arc-episode-card.serie-flash {
    background: #5a1f1f;
    border-color: #e74c3c;
}

.arc-episode-card.serie-supergirl {
    background: #1f3f66;
    border-color: #3498db;
}

.arc-episode-card.serie-legends {
    background: #3a3a3a;
    border-color: #9a9a9a;
}

.arc-episode-card.serie-black-lightning {
    background: #4a321f;
    border-color: #b87333;
}

.arc-episode-card.serie-batwoman {
    background: #090909;
    border-color: #777;
    box-shadow: inset 0 0 0 1px #2a2a2a;
}

.popup-edit {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.popup-box {
    background: #1f1f23;
    border-radius: 22px;
    padding: 30px;
    width: 400px;
}

.popup-box form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.popup-box input {
    background: #111;
    border: 2px solid #2c2c2c;
    border-radius: 10px;
    padding: 12px;
    color: white;
}

.next-mini.serie-arrow {
    background: rgba(46, 204, 113, 0.15);
    border-color: rgba(46, 204, 113, 0.4);
}

.next-mini.serie-flash {
    background: rgba(231, 76, 60, 0.15);
    border-color: rgba(231, 76, 60, 0.4);
}

.next-mini.serie-supergirl {
    background: rgba(52, 152, 219, 0.15);
    border-color: rgba(52, 152, 219, 0.4);
}

.next-mini.serie-legends {
    background: rgba(180,180,180,0.12);
    border-color: rgba(180,180,180,0.35);
}

.next-mini.serie-black-lightning {
    background: rgba(184, 115, 51, 0.15);
    border-color: rgba(184, 115, 51, 0.35);
}

.next-mini.serie-batwoman {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.12);
}

.episode-added-message {
    position: fixed;
    top: 25px;
    right: 25px;
    background: #1f8f4d;
    color: white;
    padding: 14px 22px;
    border-radius: 12px;
    font-weight: bold;
    z-index: 9999;
}


.btn-create-watch {

    background:
        linear-gradient(
            145deg,
            #ffcc00,
            #ffae00
        );

    border: none;

    border-radius: 14px;

    padding: 14px 22px;

    color: #111;

    font-size: 18px;
    font-weight: 800;

    cursor: pointer;

    transition: 0.2s;

    margin-left: 20px;
}

.btn-create-watch:hover {

    transform: translateY(-2px);
}