/**
 * Styles pour l'affichage d'un événement spécial unique
 */

.pokehub-special-event-content {
    margin: 2em 0;
}

.pokehub-event-dates {
    background: #f8f9fa;
    border-left: 4px solid #0073aa;
    padding: 1.5em;
    margin: 2em 0;
    border-radius: 4px;
}

.pokehub-event-dates p {
    margin: 0.5em 0;
}

.pokehub-event-dates strong {
    color: #333;
    font-weight: 600;
}

/* Badge de type d'événement */
.pokehub-event-type-badge {
    display: inline-block;
    padding: 0.5em 1em;
    border-radius: 20px;
    color: #fff;
    font-weight: 600;
    font-size: 0.875em;
    margin-bottom: 1em;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Pokémon associés */
.pokehub-event-pokemon-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1em;
    margin: 2em 0;
}

.pokehub-event-pokemon-item {
    text-align: center;
    padding: 1em;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.pokehub-event-pokemon-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pokehub-event-pokemon-item img {
    max-width: 100px;
    height: auto;
}

/* Bonus */
.pokehub-event-bonus-list {
    margin: 2em 0;
}

.pokehub-event-bonus-item {
    padding: 1em;
    background: #f0f8ff;
    border-left: 4px solid #4CAF50;
    margin-bottom: 1em;
    border-radius: 4px;
}

.pokehub-event-bonus-item strong {
    display: block;
    margin-bottom: 0.5em;
    color: #2c3e50;
}

/* Pass GO (battle pass) */
.pokehub-go-pass {
    margin: 2rem 0;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(160deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
    color: #e8eaf0;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.pokehub-go-pass-meta p,
.pokehub-go-pass-note {
    margin: 0.35em 0;
    font-size: 0.95rem;
}

.pokehub-go-pass-task-section .pokehub-go-pass-daily-cap {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: #b0bec5;
}

.pokehub-go-pass-points-per-rank {
    font-weight: 600;
    color: #ffd54f;
}

.pokehub-go-pass-subtitle {
    margin: 1.25rem 0 0.5rem;
    font-size: 1.05rem;
    color: #90caf9;
}

/* Frise verticale + cartes (esprit battle pass, palette alignée sur .pokehub-go-pass) */
.pokehub-go-pass-task-section {
    margin: 1.05rem 0 1.3rem;
}

.pokehub-go-pass-task-section--weekly .pokehub-go-pass-subtitle {
    color: #81d4fa;
}

.pokehub-go-pass-task-section--daily-extra .pokehub-go-pass-subtitle {
    color: #a5d6a7;
}

.pokehub-go-pass-task-track {
    list-style: none;
    margin: 0.55rem 0 0;
    padding: 0;
}

.pokehub-go-pass-task-card {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 0.75rem;
    align-items: stretch;
    margin: 0 0 0.6rem;
}

.pokehub-go-pass-task-card:last-child {
    margin-bottom: 0;
}

.pokehub-go-pass-task-card__rail {
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 0.65rem;
}

.pokehub-go-pass-task-card:not(:last-child) .pokehub-go-pass-task-card__rail::after {
    content: '';
    position: absolute;
    left: 50%;
    top: calc(0.65rem + 6px);
    bottom: -0.6rem;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-radius: 2px;
}

.pokehub-go-pass-task-card__marker {
    position: relative;
    z-index: 1;
    display: block;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: linear-gradient(145deg, #eceff1 0%, #90caf9 100%);
    box-shadow:
        0 0 0 3px rgba(22, 33, 62, 0.95),
        0 1px 4px rgba(0, 0, 0, 0.35);
}

.pokehub-go-pass-task-card--weekly .pokehub-go-pass-task-card__marker {
    background: linear-gradient(145deg, #e1f5fe 0%, #4fc3f7 100%);
}

.pokehub-go-pass-task-card--daily_core .pokehub-go-pass-task-card__marker {
    background: linear-gradient(145deg, #b3e5fc 0%, #29b6f6 100%);
}

.pokehub-go-pass-task-card--daily_extra .pokehub-go-pass-task-card__marker {
    background: linear-gradient(145deg, #c8e6c9 0%, #66bb6a 100%);
}

.pokehub-go-pass-task-card__panel {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    flex-wrap: wrap;
    min-height: 2.65rem;
    padding: 0.55rem 0.9rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.pokehub-go-pass-task-card--weekly .pokehub-go-pass-task-card__panel {
    background: linear-gradient(135deg, rgba(100, 181, 246, 0.2) 0%, rgba(41, 182, 246, 0.08) 100%);
    border-color: rgba(129, 212, 250, 0.38);
}

.pokehub-go-pass-task-card--daily_core .pokehub-go-pass-task-card__panel {
    background: linear-gradient(135deg, rgba(100, 181, 246, 0.24) 0%, rgba(30, 136, 229, 0.1) 100%);
    border-color: rgba(100, 181, 246, 0.42);
}

.pokehub-go-pass-task-card--daily_extra .pokehub-go-pass-task-card__panel {
    background: linear-gradient(135deg, rgba(165, 214, 167, 0.16) 0%, rgba(76, 175, 80, 0.07) 100%);
    border-color: rgba(129, 199, 132, 0.35);
}

.pokehub-go-pass-task-card__label {
    font-weight: 600;
    font-size: 0.92rem;
    line-height: 1.35;
    color: #eceff1;
    letter-spacing: 0.015em;
}

.pokehub-go-pass-task-card__badge {
    flex-shrink: 0;
    padding: 0.28rem 0.55rem;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.02em;
    background: rgba(0, 0, 0, 0.38);
    color: #ffe082;
    border: 1px solid rgba(255, 213, 79, 0.45);
}

.pokehub-go-pass-task-card__badge-abbr {
    margin-left: 0.12em;
    font-weight: 700;
    font-size: 0.72em;
    text-decoration: none;
    cursor: help;
    border: 0;
}

@media (max-width: 480px) {
    .pokehub-go-pass-task-card__panel {
        flex-direction: column;
        align-items: flex-start;
    }

    .pokehub-go-pass-task-card__badge {
        align-self: flex-end;
    }
}

.pokehub-go-pass-pts {
    display: inline-block;
    margin-left: 0.35rem;
    padding: 0.1em 0.45em;
    border-radius: 4px;
    background: rgba(255, 213, 79, 0.15);
    color: #ffe082;
    font-size: 0.85em;
    font-weight: 600;
}

/* —— Pass GO : piste récompenses (cartes Basic / Deluxe, frise rangs) —— */
.pokehub-go-pass-track-wrap {
    margin-top: 1.5rem;
    overflow-x: auto;
}

.pokehub-go-pass-track {
    --pokehub-gp-basic-bg: rgba(129, 212, 250, 0.22);
    --pokehub-gp-basic-border: rgba(129, 212, 250, 0.45);
    --pokehub-gp-deluxe-bg: rgba(255, 213, 79, 0.18);
    --pokehub-gp-deluxe-border: rgba(255, 213, 79, 0.5);
    --pokehub-gp-rail: rgba(129, 212, 250, 0.55);
}

.pokehub-go-pass-track--empty {
    padding: 1.25rem 1rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    border: 1px dashed rgba(255, 255, 255, 0.2);
}

.pokehub-go-pass-track__header {
    display: grid;
    grid-template-columns: 3.25rem 1fr 1fr;
    gap: 0.65rem 0.85rem;
    align-items: end;
    margin-bottom: 0.35rem;
    padding: 0 0.15rem 0.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.pokehub-go-pass-track__head-basic,
.pokehub-go-pass-track__head-deluxe {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
}

.pokehub-go-pass-track__head-basic {
    color: #81d4fa;
}

.pokehub-go-pass-track__head-deluxe {
    color: #ffd54f;
}

.pokehub-go-pass-track__body {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.pokehub-go-pass-track__row {
    display: grid;
    grid-template-columns: 3.25rem 1fr 1fr;
    gap: 0.65rem 0.85rem;
    align-items: stretch;
    padding: 0.55rem 0.15rem;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.pokehub-go-pass-track__row--current {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 152, 0, 0.35);
    box-shadow: 0 0 0 1px rgba(255, 152, 0, 0.2);
}

.pokehub-go-pass-track__rail {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0.35rem;
}

.pokehub-go-pass-track__rail-line {
    position: absolute;
    top: 0;
    bottom: -0.65rem;
    left: 50%;
    width: 3px;
    transform: translateX(-50%);
    border-radius: 3px;
    background: linear-gradient(180deg, var(--pokehub-gp-rail) 0%, rgba(129, 212, 250, 0.15) 100%);
}

.pokehub-go-pass-track__body > .pokehub-go-pass-track__row:last-child .pokehub-go-pass-track__rail-line {
    bottom: 50%;
}

.pokehub-go-pass-track__badge {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 2.1rem;
    height: 2.1rem;
    padding: 0 0.35rem;
    border-radius: 50%;
    font-weight: 800;
    font-size: 0.85rem;
    color: #eceff1;
    background: linear-gradient(160deg, #546e7a 0%, #37474f 100%);
    box-shadow:
        0 0 0 3px rgba(22, 33, 62, 0.9),
        0 2px 6px rgba(0, 0, 0, 0.35);
}

.pokehub-go-pass-track__row--current .pokehub-go-pass-track__badge {
    background: linear-gradient(160deg, #ff8a65 0%, #f4511e 100%);
    color: #fff;
}

.pokehub-go-pass-track__cell {
    min-width: 0;
}

.pokehub-go-pass-track__stack {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Carte récompense */
.pokehub-go-pass-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.pokehub-go-pass-card--basic {
    background: var(--pokehub-gp-basic-bg);
    border-color: var(--pokehub-gp-basic-border);
}

.pokehub-go-pass-card--deluxe {
    background: var(--pokehub-gp-deluxe-bg);
    border-color: var(--pokehub-gp-deluxe-border);
}

.pokehub-go-pass-card__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 4.5rem;
    gap: 0.5rem 0.65rem;
    align-items: center;
    padding: 0.65rem 0.75rem 0.65rem 0.85rem;
}

.pokehub-go-pass-card__text {
    min-width: 0;
}

.pokehub-go-pass-card__title {
    margin: 0;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.25;
    color: rgba(255, 255, 255, 0.95);
}

.pokehub-go-pass-card--basic .pokehub-go-pass-card__title {
    color: #e1f5fe;
}

.pokehub-go-pass-card--deluxe .pokehub-go-pass-card__title {
    color: #fff8e1;
}

.pokehub-go-pass-card__subtitle {
    margin: 0.2rem 0 0;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.3;
}

.pokehub-go-pass-card__qty {
    margin: 0.35rem 0 0;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.pokehub-go-pass-card__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.2);
}

.pokehub-go-pass-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.pokehub-go-pass-card__visual--placeholder .pokehub-go-pass-card__glyph {
    display: block;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.pokehub-go-pass-card--xp .pokehub-go-pass-card__glyph {
    border-radius: 8px;
    background: linear-gradient(145deg, #ff9800 0%, #f57c00 100%);
}

.pokehub-go-pass-card--stardust .pokehub-go-pass-card__glyph {
    border-radius: 50%;
    background: linear-gradient(145deg, #90caf9 0%, #42a5f5 100%);
}

.pokehub-go-pass-card__lock {
    position: absolute;
    right: 0.45rem;
    bottom: 0.45rem;
    color: #ffc107;
    opacity: 0.95;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
    line-height: 0;
}

.pokehub-go-pass-card__lock-icon {
    display: block;
}

.pokehub-go-pass-card--empty {
    min-height: 3.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.45;
}

.pokehub-go-pass-card__empty-dash {
    font-size: 1.25rem;
    font-weight: 700;
}

.pokehub-go-pass-card--featured {
    box-shadow: 0 0 0 2px rgba(255, 213, 79, 0.65), 0 2px 10px rgba(0, 0, 0, 0.25);
}

/* Palier bonus (même esprit cartes) */
.pokehub-go-pass-track__milestone {
    padding: 0.75rem 0.65rem;
    border-radius: 12px;
    background: rgba(236, 64, 122, 0.12);
    border: 1px solid rgba(236, 64, 122, 0.35);
}

.pokehub-go-pass-track__milestone-label {
    font-weight: 800;
    font-size: 0.82rem;
    color: #f48fb1;
    margin-bottom: 0.55rem;
    text-align: center;
}

.pokehub-go-pass-track__milestone-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem 0.85rem;
}

.pokehub-go-pass-reward--featured {
    font-weight: 700;
    color: #ffe082;
}

.pokehub-go-pass-featured-summary {
    margin: 1rem 0 1.25rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 213, 79, 0.12);
    border: 1px solid rgba(255, 213, 79, 0.35);
    border-radius: 8px;
}

.pokehub-go-pass-featured-intro {
    margin: 0.25rem 0 0.75rem !important;
    color: rgba(255, 255, 255, 0.75);
}

.pokehub-go-pass-featured-list {
    margin: 0;
    padding-left: 1.25rem;
}

.pokehub-go-pass-featured-list li {
    margin: 0.35em 0;
}

.pokehub-go-pass-featured-side {
    font-weight: 700;
    color: #90caf9;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
}

.pokehub-go-pass-empty {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .pokehub-event-pokemon-list {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 0.5em;
    }
    
    .pokehub-event-dates {
        padding: 1em;
    }

    .pokehub-go-pass-track__header,
    .pokehub-go-pass-track__row {
        gap: 0.45rem 0.45rem;
    }

    .pokehub-go-pass-track__milestone-grid {
        grid-template-columns: 1fr;
    }
}








