body {
    background: url("../imageequipe/ct9904x.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
:root {
    --bleu-clair  : #60b8cc;
    --bleu-fonce  : #529aa9;
    --gris        : #747474;
    --card-bg     : rgba(82, 154, 169, 0.18);
    --card-border : rgba(96, 184, 204, 0.30);
    --radius      : 10px;
}

.ct-hero {
    position: relative;
    min-height: 38vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 24px 60px;
}

.ct-hero-bg { display: none; }

.ct-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.ct-label { display: none; }

.ct-titre {
    font-family: 'Courier New', Courier, monospace;
    font-size: 70px;
    text-transform: uppercase;
    color: #fff;
}

.ct-accent { color: #fff; }

.ct-sous-titre {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: #fdffff;
    text-transform: uppercase;
    text-shadow: 0 0 20px #000;
    letter-spacing: 0.05em;
    max-width: 600px;
}


.ct-main {
    padding: 20px 5% 130px;
}


.ct-grille {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1200px;
    margin: 0 auto;
}


.ct-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    overflow: hidden;
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    transition: transform .2s, box-shadow .2s;
}

.ct-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(82, 154, 169, 0.25);
}


.ct-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #0a1e28;
    cursor: pointer;
}

.ct-thumb-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d2030 0%, #1a3d50 100%);
}

.ct-thumb-placeholder svg {
    width: 80%;
    opacity: 0.55;
}

.ct-video { display: none; }


.ct-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.28);
    opacity: 0;
    transition: opacity .2s;
}

.ct-card:hover .ct-overlay { opacity: 1; }


.ct-btn-play {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(96, 184, 204, 0.20);
    border: 2px solid #60b8cc;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s, transform .2s;
}

.ct-btn-play:hover {
    background: rgba(96, 184, 204, 0.38);
    transform: scale(1.1);
}

.ct-btn-play svg {
    width: 22px; height: 22px;
    fill: #60b8cc;
    transform: translateX(2px);
}



.ct-infos {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    flex: 1;
}

.ct-nom {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.3;
}

.ct-desc {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.60);
    line-height: 1.5;
    flex: 1;
}


.ct-actions {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.ct-btn-regarder,
.ct-btn-stop {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0.45em 1em;
    border-radius: 6px;
    cursor: pointer;
    transition: filter .15s, transform .15s;
}

.ct-btn-regarder svg,
.ct-btn-stop svg {
    width: 12px; height: 12px;
    flex-shrink: 0;
}


.ct-btn-regarder {
    color: #fff;
    background: #529aa9;
    border: 1px solid #60b8cc;
}
.ct-btn-regarder svg { fill: #fff; }
.ct-btn-regarder:hover { filter: brightness(1.15); transform: translateY(-1px); }


.ct-btn-stop {
    color: #fff;
    background: #747474;
    border: 1px solid #888;
}
.ct-btn-stop svg { fill: #fff; }
.ct-btn-stop:hover { filter: brightness(1.15); transform: translateY(-1px); }


.ct-modale {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity .3s;
}

.ct-modale.actif {
    pointer-events: all;
    opacity: 1;
}

.ct-modale-fond {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(6px);
    cursor: pointer;
}

.ct-modale-boite {
    position: relative;
    z-index: 1;
    width: min(920px, 94vw);
    background: #0d2030;
    border: 1px solid #529aa9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
    animation: popIn .25s ease;
}

@keyframes popIn {
    from { transform: scale(.94); opacity: 0; }
    to   { transform: scale(1);   opacity: 1; }
}

.ct-modale-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(82,154,169,0.30);
    background: rgba(82,154,169,0.12);
}

.ct-modale-titre {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #60b8cc;
}

.ct-modale-fermer {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    font-size: 0.9rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}
.ct-modale-fermer:hover { background: rgba(180,0,0,0.45); }

.ct-lecteur-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
}

#ct-player {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
}

.ct-modale-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-top: 1px solid rgba(82,154,169,0.20);
    background: rgba(82,154,169,0.08);
}

.ct-ctrl-btn {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.4em 1em;
    border-radius: 6px;
    cursor: pointer;
    color: #fff;
    background: #529aa9;
    border: 1px solid #60b8cc;
    transition: filter .15s, transform .15s;
}
.ct-ctrl-btn svg { width: 12px; height: 12px; fill: #fff; }
.ct-ctrl-btn:hover { filter: brightness(1.15); transform: translateY(-1px); }

.ct-ctrl-stop {
    background: #747474;
    border: 1px solid #888;
}
.ct-ctrl-stop:hover { filter: brightness(1.15); }


@media (max-width: 1024px) {
    .ct-grille { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .ct-grille  { grid-template-columns: 1fr; gap: 16px; }
    .ct-main    { padding: 16px 4% 100px; }
    .ct-titre   { font-size: 2.4rem; }
    .ct-modale-footer { flex-wrap: wrap; }
}