/* ── Coucoucool Agenda — styles frontend ── */

.cc-agenda {
    background: #1A1A1A;
    padding: 48px 36px;
    font-family: 'Josefin Sans', sans-serif;
}

.cc-agenda-header {
    margin-bottom: 32px;
}

.cc-sec-title {
    font-family: 'Anton', sans-serif;
    font-size: 34px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #DFFB7A;
    -webkit-text-stroke: 2px #DFFB7A;
    paint-order: stroke fill;
    line-height: 1;
    margin-bottom: 6px;
}

.cc-sec-year {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
}

.cc-ev {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: background 0.15s;
}

.cc-ev:last-child {
    border-bottom: none;
}

.cc-ev:hover {
    background: rgba(255, 255, 255, 0.03);
}

.cc-ev-date {
    min-width: 64px;
    text-align: center;
    flex-shrink: 0;
}

.cc-ev-day {
    font-family: 'Anton', sans-serif;
    font-size: 36px;
    color: #DFFB7A;
    line-height: 1;
    -webkit-text-stroke: 1.5px #DFFB7A;
    paint-order: stroke fill;
}

.cc-ev-mon {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.25);
    display: block;
    margin-top: 2px;
}

.cc-ev-sep {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.cc-ev-info {
    flex: 1;
    min-width: 0;
}

.cc-ev-info strong {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    display: block;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cc-ev-info small {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    display: block;
}

.cc-ev-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.cc-ev-pill {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.35);
    white-space: nowrap;
}

.cc-ev-pill.match {
    border-color: rgba(245, 166, 35, 0.4);
    color: rgba(245, 166, 35, 0.85);
}

.cc-ev-pill.qqtp {
    border-color: rgba(62, 207, 207, 0.4);
    color: rgba(62, 207, 207, 0.85);
}

.cc-ev-pill.prive {
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.2);
}

.cc-agenda-empty {
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
    padding: 20px 0;
}

/* Responsive */
@media (max-width: 600px) {
    .cc-agenda {
        padding: 32px 20px;
    }
    .cc-ev {
        gap: 12px;
    }
    .cc-ev-day {
        font-size: 28px;
    }
    .cc-ev-date {
        min-width: 48px;
    }
    .cc-ev-info strong {
        font-size: 12px;
    }
}
