/* Anime Wordle — mod geçiş bar'ı: bağlı çemberler (stepper), logonun üstünde, akışta. */
.aw-mode-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    margin: 6px auto 14px;
    padding: 0;
}

/* İkonu çevreleyen çember */
.aw-mode-link {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    box-sizing: border-box;
    font-size: 1.5rem;
    line-height: 1;
    text-decoration: none;
    color: var(--text-primary, #f5f5f0);
    background: rgba(255, 255, 255, 0.06);
    border: 3px solid rgba(255, 255, 255, 0.22);
    opacity: 0.8;
    transition: opacity .18s ease, transform .18s ease, border-color .18s ease, background .18s ease;
}

/* Çemberleri birbirine bağlayan çubuk */
.aw-mode-connector {
    flex: 0 0 auto;
    width: 20px;
    height: 4px;
    background: rgba(255, 255, 255, 0.22);
    transition: background .18s ease;
}

.aw-mode-link:hover {
    opacity: 1;
    transform: scale(1.06);
}

/* Aktif (şu an oynanan) mod */
.aw-mode-link.active {
    opacity: 1;
    border-color: var(--accent-sky, #5ba4d4);
    background: rgba(91, 164, 212, 0.18);
}

/* Bugün tamamlanan mod → içerik ✓, yeşil çember */
.aw-mode-link.completed {
    opacity: 1;
    color: var(--color-correct, #4ade80);
    border-color: var(--color-correct, #4ade80);
    background: rgba(74, 222, 128, 0.15);
    font-weight: 700;
    font-size: 1.55rem;
}

/* Tamamlanan modun sağındaki köprü de aynı yeşile döner. */
.aw-mode-link.completed + .aw-mode-connector {
    background: var(--color-correct, #4ade80);
}

@media (max-width: 480px) {
    .aw-mode-link {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    .aw-mode-link.completed {
        font-size: 1.35rem;
    }
    .aw-mode-connector {
        width: 12px;
    }
    .aw-mode-nav {
        margin: 4px auto 12px;
    }
}
