/* =============================================================================
   FUTBOLCU — Menajer Profili (v3 Saha)
   ========================================================================== */

.fb-profile {
    padding-top: 24px;
    padding-bottom: 48px;
}

.fb-pf-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 22px;
    align-items: start;
}

.fb-profile .fb-card,
.fb-pf-clubs {
    background: #F5F0E1;
    border: 3px solid #12291E;
    box-shadow: 6px 6px 0 rgba(12, 31, 22, .35);
}

.fb-profile .fb-stack {
    display: grid;
    gap: 20px;
    min-width: 0;
}

/* -----------------------------------------------------------------------------
   KİMLİK KARTI
   -------------------------------------------------------------------------- */
.fb-pf-card {
    padding: 26px 22px;
    display: grid;
    justify-items: center;
    gap: 12px;
    text-align: center;
}

.fb-pf-avatar {
    width: 108px;
    height: 108px;
    border-radius: 50%;
    border: 4px solid #12291E;
    object-fit: cover;
    box-shadow: 5px 5px 0 rgba(12, 31, 22, .3);
    background: #C9E3B5;
}

.fb-pf-name {
    margin: 4px 0 0;
    font-family: Anton, sans-serif;
    font-size: 26px;
    letter-spacing: .02em;
    color: #16281F;
    word-break: break-word;
}

.fb-pf-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.fb-pf-since {
    font-size: 11.5px;
    font-weight: 700;
    color: #6C7C6F;
}

.fb-pf-stats {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 2px solid #12291E;
    margin-top: 4px;
}

.fb-pf-stats > div {
    padding: 12px 6px;
    display: grid;
    gap: 3px;
    justify-items: center;
    background: #FFFBF0;
    border-right: 2px solid #12291E;
}

.fb-pf-stats > div:last-child {
    border-right: none;
}

.fb-pf-stats span {
    font-family: Anton, sans-serif;
    font-size: 22px;
    color: #16281F;
    line-height: 1;
}

.fb-pf-stats small {
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: .12em;
    color: #6C7C6F;
    text-transform: uppercase;
}

/* -----------------------------------------------------------------------------
   ETKİLEŞİM BUTONLARI
   -------------------------------------------------------------------------- */
.fb-pf-actions {
    width: 100%;
    display: grid;
    gap: 9px;
    margin-top: 6px;
}

.fb-pf-actions .fb-mo-btn {
    width: 100%;
    padding: 12px;
    font-size: 13.5px;
}

.fb-pf-pending {
    background: #FFFBF0;
    border: 2px dashed #12291E;
    padding: 10px 12px;
    font-size: 12px;
    font-weight: 700;
    color: #6C7C6F;
    text-wrap: pretty;
}

.fb-pf-selfnote {
    margin-top: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #6C7C6F;
}

/* -----------------------------------------------------------------------------
   KULÜP LİSTESİ
   -------------------------------------------------------------------------- */
.fb-pf-crest {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border: 2px solid #12291E;
    border-radius: 30%;
    display: block;
}

/* -----------------------------------------------------------------------------
   SOHBET PANELİ — sağdan açılır, popup değil
   -------------------------------------------------------------------------- */
.fb-chat {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 9998500;
    width: min(400px, 100vw);
    display: flex;
    flex-direction: column;
    background: #F5F0E1;
    border-left: 4px solid #12291E;
    box-shadow: -10px 0 0 rgba(12, 31, 22, .25);
    transform: translateX(100%);
    transition: transform .26s cubic-bezier(.16, 1, .3, 1);
}

.fb-chat.open {
    transform: translateX(0);
}

/* Panel açıkken sayfa gezilebilir kalır; yalnızca yatay taşma engellenir. */
body.fb-chat-open {
    overflow-x: hidden;
}

.fb-chat-head {
    flex: 0 0 auto;
    background: #1B3A2B;
    border-bottom: 3px solid #12291E;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.fb-chat-titlewrap {
    display: grid;
    gap: 2px;
    min-width: 0;
    margin-right: auto;
}

.fb-chat-title {
    font-family: Anton, sans-serif;
    font-size: 18px;
    color: #F5F0E1;
    letter-spacing: .03em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fb-chat-sub {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    color: #8FB39C;
    text-transform: uppercase;
}

.fb-chat-close {
    flex: 0 0 auto;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border: 2px solid #0C1F16;
    background: #12291E;
    color: #8FB39C;
    font-family: Anton, sans-serif;
    font-size: 17px;
    line-height: 1;
    padding: 0;
}

.fb-chat-close:hover {
    background: #E8552B;
    color: #FFF8E7;
}

.fb-chat-stream {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #FFFBF0;
}

.fb-chat-empty {
    margin: auto;
    text-align: center;
    font-size: 12.5px;
    font-weight: 700;
    color: #6C7C6F;
    padding: 20px;
}

/* Mesaj balonları */
.fb-bubble {
    max-width: 82%;
    align-self: flex-start;
    background: #F5F0E1;
    border: 2px solid #12291E;
    box-shadow: 3px 3px 0 rgba(12, 31, 22, .18);
    padding: 9px 11px;
    display: grid;
    gap: 4px;
}

.fb-bubble.mine {
    align-self: flex-end;
    background: #C9E3B5;
    border-color: #4F9433;
}

.fb-bubble-body {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
    color: #16281F;
    white-space: pre-wrap;
    word-break: break-word;
}

.fb-bubble-when {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .06em;
    color: #6C7C6F;
    justify-self: end;
}

.fb-chat-foot {
    flex: 0 0 auto;
    border-top: 3px solid #12291E;
    background: #F5F0E1;
    padding: 12px;
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

.fb-chat-input {
    flex: 1;
    min-width: 0;
    resize: none;
    border: 3px solid #12291E;
    background: #FFFBF0;
    padding: 9px 11px;
    font-family: Archivo, sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #16281F;
    outline: none;
}

.fb-chat-input:focus {
    box-shadow: inset 0 0 0 3px #F2B134;
}

.fb-chat-send {
    flex: 0 0 auto;
    padding: 11px 16px;
    font-size: 13px;
}

.fb-chat-locked {
    width: 100%;
    padding: 10px 12px;
    background: #D8D2BF;
    border: 2px solid #12291E;
    font-size: 12px;
    font-weight: 700;
    color: #55604F;
    text-align: center;
}

@media (max-width: 560px) {
    .fb-chat {
        width: 100vw;
        border-left: none;
    }
}

/* -----------------------------------------------------------------------------
   BULUNAMADI
   -------------------------------------------------------------------------- */
.fb-pf-missing {
    padding: 48px 28px;
    display: grid;
    justify-items: center;
    gap: 12px;
    text-align: center;
}

.fb-pf-missing-icon {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    font-size: 30px;
    background: #FFFBF0;
    border: 3px solid #12291E;
    box-shadow: 5px 5px 0 rgba(12, 31, 22, .3);
}

.fb-pf-missing h1 {
    margin: 4px 0 0;
    font-family: Anton, sans-serif;
    font-size: 26px;
    color: #16281F;
    letter-spacing: .03em;
}

.fb-pf-missing p {
    margin: 0;
    max-width: 420px;
    font-size: 13.5px;
    font-weight: 600;
    color: #6C7C6F;
}

.fb-pf-missing .fb-mo-btn {
    text-decoration: none;
    margin-top: 6px;
}

/* -----------------------------------------------------------------------------
   MENAJER LİNKİ (lig tablolarında)
   -------------------------------------------------------------------------- */
.fb-manager-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    color: #B3401C;
    text-decoration: none;
    border-bottom: 1px dashed rgba(179, 64, 28, .5);
}

.fb-manager-link:hover {
    color: #E8552B;
    border-bottom-color: #E8552B;
}

.fb-manager-link.on-dark {
    color: #F2B134;
    border-bottom-color: rgba(242, 177, 52, .45);
}

.fb-manager-link.on-dark:hover {
    color: #FFF8E7;
    border-bottom-color: #FFF8E7;
}

.fb-manager-empty {
    font-size: 11px;
    font-weight: 700;
    color: #9AA894;
}

/* Fikstürde takım adı + menajer alt alta */
.fx-stack {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.fx-side.a .fx-stack {
    justify-items: end;
}

/* -----------------------------------------------------------------------------
   YÖNETTİĞİ KULÜPLER KARTI
   -------------------------------------------------------------------------- */
.fb-pf-club-card {
    text-decoration: none;
    color: inherit;
    background: #FFFBF0;
    border: 3px solid #12291E;
    padding: 14px;
    box-shadow: 4px 4px 0 rgba(12, 31, 22, .3);
    display: flex;
    align-items: center;
    gap: 14px;
    transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
    cursor: pointer;
}

.fb-pf-club-card:hover {
    transform: translateY(-2px);
    box-shadow: 5px 5px 0 rgba(12, 31, 22, .4);
    background: #FBF6E7;
}

.fb-pf-club-action {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: Anton, sans-serif;
    font-size: 11px;
    letter-spacing: .06em;
    color: #FFF8E7;
    border: 1.5px solid #12291E;
    padding: 3px 8px;
    box-shadow: 1.5px 1.5px 0 rgba(12, 31, 22, .25);
    transition: filter .12s ease;
}

.fb-pf-club-card:hover .fb-pf-club-action {
    filter: brightness(1.1);
}

.fb-pf-club-action.is-self {
    background: #1B3A2B;
}

.fb-pf-club-action.is-other {
    background: #2B6BE8;
}

/* -----------------------------------------------------------------------------
   KULLANICI BULUNAMADI KARTI
   -------------------------------------------------------------------------- */
.fb-pf-notfound {
    background: #F5F0E1;
    border: 3.5px solid #12291E;
    box-shadow: 8px 8px 0 rgba(12, 31, 22, .4);
    padding: 32px;
    text-align: center;
}

.fb-pf-notfound-title {
    font-family: Anton, sans-serif;
    font-size: 26px;
    color: #16281F;
    margin: 0 0 10px 0;
}

.fb-pf-notfound-desc {
    font-size: 14px;
    font-weight: 600;
    color: #6C7C6F;
    margin: 0 0 20px 0;
}

.fb-pf-notfound-btn {
    border: 3px solid #12291E;
    background: #E8552B;
    color: #FFF8E7;
    padding: 12px 24px;
    font-family: Anton, sans-serif;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
}

/* -----------------------------------------------------------------------------
   PROFİL ETİKETLERİ & ROLLERİ
   -------------------------------------------------------------------------- */
.fb-pf-role-badge {
    background: #E8552B;
    color: #FFF8E7;
    border: 2px solid #12291E;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    letter-spacing: .1em;
}

.fb-pf-level-badge {
    background: #F2B134;
    color: #12291E;
    border: 2px solid #12291E;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    letter-spacing: .1em;
}

/* -----------------------------------------------------------------------------
   BAŞARIMLAR PANELİ (SOL KOLON)
   -------------------------------------------------------------------------- */
.fb-pf-ach-panel {
    background: #F5F0E1;
    border: 3px solid #12291E;
    box-shadow: 6px 6px 0 rgba(12, 31, 22, .35);
    overflow: hidden;
}

.fb-pf-ach-header {
    background: #1B3A2B;
    padding: 10px 14px;
    border-bottom: 3px solid #12291E;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px;
}

.fb-pf-ach-title-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fb-pf-ach-title-icon {
    font-size: 17px;
}

.fb-pf-ach-title-text {
    font-family: Anton, sans-serif;
    font-size: 15px;
    color: #FFF8E7;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.fb-pf-ach-header-right {
    display: flex;
    align-items: center;
    gap: 6px;
}

.fb-pf-ach-unclaimed-tag {
    background: #E8552B;
    color: #FFF8E7;
    font-size: 9.5px;
    font-weight: 900;
    padding: 1px 6px;
    border: 1.5px solid #12291E;
    border-radius: 2px;
}

.fb-pf-ach-count-badge {
    font-size: 10.5px;
    font-weight: 900;
    color: #16281F;
    background: #F2B134;
    padding: 2px 7px;
    border: 1.5px solid #12291E;
}

.fb-pf-ach-prog-track {
    background: #E4DDC8;
    height: 6px;
    width: 100%;
    border-bottom: 2px solid #12291E;
    position: relative;
}

.fb-pf-ach-prog-fill {
    background: linear-gradient(90deg, #4F9433 0%, #F2B134 100%);
    height: 100%;
    transition: width .4s ease;
}

/* -----------------------------------------------------------------------------
   KARE ROZETLER IZGARASI (7 SÜTUN)
   -------------------------------------------------------------------------- */
#fbAchTileGrid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 7px;
    padding: 12px;
    background: #EFE7D3;
}

.fb-ach-tile {
    aspect-ratio: 1 / 1;
    width: 100%;
    min-width: 32px;
    border-radius: 7px;
    display: grid;
    place-items: center;
    cursor: pointer;
    position: relative;
    padding: 0;
    transition: transform .12s ease, box-shadow .12s ease;
    overflow: visible;
}

.fb-ach-tile:hover {
    transform: translateY(-2px);
}

.fb-ach-tile.is-hidden {
    display: none !important;
}

.fb-ach-tile.is-unlocked {
    border: 2px solid #12291E;
    background: #F2B134;
    opacity: 1;
    filter: none;
    box-shadow: 2px 2px 0 #12291E;
}

.fb-ach-tile.is-claimable {
    border: 2px solid #12291E;
    background: #F2B134;
    opacity: 1;
    filter: none;
    box-shadow: 2px 2px 0 #12291E;
}

.fb-ach-tile.is-locked {
    border: 2px solid #D5CCB5;
    background: #FFFFFF;
    opacity: 0.45;
    filter: grayscale(100%);
    box-shadow: 1px 1px 0 rgba(18, 41, 30, .15);
}

.fb-ach-tile.is-locked.has-prog {
    opacity: 0.75;
    filter: grayscale(40%);
}

.fb-ach-tile-icon {
    font-size: 19px;
    line-height: 1;
    pointer-events: none;
}

.fb-ach-tile-prog-track {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #D5CCB5;
    border-top: 1px solid #12291E;
    border-radius: 0 0 5px 5px;
    overflow: hidden;
}

.fb-ach-tile-prog-fill {
    height: 100%;
    background: linear-gradient(90deg, #4F9433, #F2B134);
}

.fb-ach-gift-dot {
    position: absolute;
    top: -6px;
    right: -6px;
    font-size: 11px;
    background: #E8552B;
    border: 1.5px solid #12291E;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    z-index: 5;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, .35);
    animation: fbPulse 1.4s infinite;
}

.fb-ach-check-dot {
    position: absolute;
    bottom: -4px;
    right: -4px;
    font-size: 8.5px;
    font-weight: 900;
    background: #4F9433;
    color: #FFF8E7;
    border: 1.5px solid #12291E;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    display: grid;
    place-items: center;
    z-index: 5;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, .35);
}

.fb-pf-ach-footer {
    background: #E4DDC8;
    padding: 7px 12px;
    border-top: 2px solid #12291E;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px;
}

.fb-pf-ach-footer-hint {
    font-size: 10.5px;
    font-weight: 700;
    color: #526356;
}

.fb-pf-ach-tabs {
    display: flex;
    gap: 4px;
}

.fb-ach-sq-tab {
    cursor: pointer;
    background: #FFFBF0;
    color: #16281F;
    border: 1px solid #12291E;
    font-size: 9.5px;
    font-weight: 800;
    padding: 2px 6px;
    transition: background .12s ease, color .12s ease;
}

.fb-ach-sq-tab.active {
    background: #12291E;
    color: #F2B134;
}

/* -----------------------------------------------------------------------------
   KULÜPLER KARTI (SAĞ KOLON)
   -------------------------------------------------------------------------- */
.fb-pf-clubs-head {
    background: #1B3A2B;
    padding: 12px 18px;
    border-bottom: 3.5px solid #12291E;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fb-pf-clubs-title {
    font-family: Anton, sans-serif;
    font-size: 18px;
    color: #FFF8E7;
    letter-spacing: .06em;
}

.fb-pf-clubs-count {
    font-size: 10.5px;
    font-weight: 800;
    color: #16281F;
    background: #F2B134;
    padding: 3px 8px;
    border: 1.5px solid #12291E;
}

.fb-pf-clubs-body {
    padding: 20px;
    display: grid;
    gap: 14px;
}

.fb-pf-clubs-empty {
    padding: 24px;
    text-align: center;
    font-size: 13.5px;
    font-weight: 700;
    color: #6C7C6F;
    background: #FFFBF0;
    border: 2.5px dashed #12291E;
}

.fb-pf-clubs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 14px;
}

.fb-pf-club-shield {
    width: 48px;
    height: 48px;
    border: 2.5px solid #12291E;
    border-radius: 32%;
    flex-shrink: 0;
}

.fb-pf-club-info {
    display: grid;
    gap: 3px;
    min-width: 0;
    flex: 1;
}

.fb-pf-club-name {
    font-family: Anton, sans-serif;
    font-size: 16px;
    color: #16281F;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fb-pf-club-league {
    font-size: 11.5px;
    font-weight: 700;
    color: #2E9077;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fb-pf-club-league-muted {
    font-size: 11.5px;
    font-weight: 700;
    color: #6C7C6F;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fb-pf-club-action-wrap {
    margin-top: 2px;
}

.fb-pf-club-card-static {
    background: #FFFBF0;
    border: 3px solid #12291E;
    padding: 14px;
    box-shadow: 4px 4px 0 rgba(12, 31, 22, .3);
    display: flex;
    align-items: center;
    gap: 14px;
}

/* -----------------------------------------------------------------------------
   BAŞARIM MODALI (POPUP)
   -------------------------------------------------------------------------- */
.fb-ach-modal-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(12, 31, 22, .82);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 16px;
    backdrop-filter: blur(4px);
}

.fb-ach-modal-backdrop.is-open {
    display: flex;
}

.fb-ach-modal-container {
    width: 100%;
    max-width: 440px;
    display: flex;
    justify-content: center;
}

/* Vitrin (Arkadaş/Diğer Menajer) */
.fb-ach-vitrin-panel {
    background: #F5F0E1;
    border: 3.5px solid #12291E;
    box-shadow: 10px 10px 0 rgba(12, 31, 22, .6);
    width: 100%;
    max-width: 440px;
    overflow: hidden;
    position: relative;
}

.fb-ach-vitrin-header {
    background: linear-gradient(90deg, #10261C 0%, #1A3E2D 100%);
    padding: 11px 16px;
    border-bottom: 3.5px solid #F2B134;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.fb-ach-vitrin-user {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.fb-ach-vitrin-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #F2B134;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, .5);
}

.fb-ach-vitrin-meta {
    min-width: 0;
}

.fb-ach-vitrin-uname {
    font-family: Anton, sans-serif;
    font-size: 14px;
    color: #FFF8E7;
    letter-spacing: .05em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fb-ach-vitrin-badge {
    font-size: 9.5px;
    font-weight: 900;
    color: #F2B134;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.fb-ach-vitrin-close {
    color: #FFF8E7;
    border-color: #F2B134;
    flex-shrink: 0;
}

.fb-ach-vitrin-body {
    padding: 16px 18px 18px;
    display: grid;
    gap: 12px;
}

.fb-ach-vitrin-hero {
    background: radial-gradient(circle at 50% 28%, #25593E 0%, #0F2218 88%);
    border: 2.5px solid #12291E;
    box-shadow: inset 0 0 28px rgba(0, 0, 0, .5), 3px 3px 0 rgba(12, 31, 22, .25);
    border-radius: 8px;
    padding: 22px 14px 18px;
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 9px;
    position: relative;
}

.fb-ach-vitrin-icon-box {
    width: 78px;
    height: 78px;
    border-radius: 24%;
    background: linear-gradient(135deg, #FFE082 0%, #F2B134 100%);
    border: 3px solid #12291E;
    box-shadow: 0 0 26px rgba(242, 177, 52, 0.5), 3px 3px 0 #12291E;
    display: grid;
    place-items: center;
    font-size: 40px;
}

.fb-ach-vitrin-icon-box.locked {
    width: 72px;
    height: 72px;
    background: #1C3326;
    border: 2px dashed #405748;
    box-shadow: none;
    font-size: 36px;
    opacity: 0.85;
    filter: grayscale(90%);
}

.fb-ach-vitrin-bob {
    animation: fbBob 3.5s ease-in-out infinite;
    display: inline-block;
}

.fb-ach-vitrin-status-tag {
    background: linear-gradient(90deg, #F2B134, #FFD166);
    color: #16281F;
    font-family: Anton, sans-serif;
    font-size: 11.5px;
    letter-spacing: .07em;
    padding: 4px 14px;
    border: 2px solid #12291E;
    box-shadow: 2px 2px 0 #12291E;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
}

.fb-ach-vitrin-status-tag.locked {
    background: #25392E;
    color: #8FB39C;
    border: 1.5px solid #405748;
    box-shadow: none;
}

.fb-ach-vitrin-date {
    font-size: 11px;
    font-weight: 800;
    color: #8FB39C;
}

.fb-ach-vitrin-notyet {
    font-size: 11px;
    font-weight: 700;
    color: #6C7C6F;
}

.fb-ach-vitrin-title-wrap {
    margin-top: 4px;
}

.fb-ach-vitrin-title {
    font-family: Anton, sans-serif;
    font-size: 21px;
    color: #FFF8E7;
    letter-spacing: .04em;
    margin: 0;
    text-transform: uppercase;
}

.fb-ach-vitrin-cat {
    display: inline-block;
    margin-top: 5px;
    background: rgba(242, 177, 52, .18);
    color: #F2B134;
    border: 1px solid #F2B134;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 3px;
    text-transform: uppercase;
}

.fb-ach-vitrin-desc {
    background: #FFFBF0;
    border: 2px solid #12291E;
    box-shadow: 2px 2px 0 rgba(12, 31, 22, .2);
    padding: 11px 14px;
    font-size: 12.5px;
    font-weight: 600;
    color: #16281F;
    line-height: 1.45;
    text-align: center;
}

.fb-ach-vitrin-prog {
    background: #FFFBF0;
    border: 2px solid #12291E;
    padding: 9px 12px;
    display: grid;
    gap: 5px;
    box-shadow: 2px 2px 0 rgba(12, 31, 22, .15);
}

.fb-ach-vitrin-prog-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fb-ach-vitrin-prog-title {
    font-family: Anton, sans-serif;
    font-size: 11.5px;
    color: #16281F;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.fb-ach-vitrin-prog-badge {
    font-size: 11px;
    font-weight: 900;
    color: #16281F;
    background: #F2B134;
    padding: 1px 6px;
    border: 1px solid #12291E;
}

.fb-ach-vitrin-prog-track {
    background: #E4DDC8;
    height: 8px;
    width: 100%;
    border: 1px solid #12291E;
    border-radius: 3px;
    overflow: hidden;
}

.fb-ach-vitrin-prog-fill {
    background: linear-gradient(90deg, #4F9433 0%, #F2B134 100%);
    height: 100%;
}

.fb-ach-vitrin-rewards {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-family: Anton, sans-serif;
    font-size: 12px;
}

.fb-ach-vitrin-reward-coin {
    background: #FFFBF0;
    border: 1.5px solid #12291E;
    padding: 4px 11px;
    color: #B57C00;
    box-shadow: 2px 2px 0 rgba(0, 0, 0, .12);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.fb-ach-vitrin-coin-icon {
    width: 14px;
    height: 14px;
}

.fb-ach-vitrin-reward-xp {
    background: #FFFBF0;
    border: 1.5px solid #12291E;
    padding: 4px 11px;
    color: #2E9077;
    box-shadow: 2px 2px 0 rgba(0, 0, 0, .12);
}

.fb-ach-vitrin-compare-unlocked {
    background: #E8F5E9;
    border: 2px solid #4F9433;
    box-shadow: 3px 3px 0 rgba(12, 31, 22, .25);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 11px;
    text-align: left;
}

.fb-ach-vitrin-compare-locked {
    background: #FFF4E5;
    border: 2px solid #E8552B;
    box-shadow: 3px 3px 0 rgba(12, 31, 22, .25);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 11px;
    text-align: left;
}

.fb-ach-vitrin-compare-icon {
    font-size: 26px;
    line-height: 1;
    flex-shrink: 0;
}

.fb-ach-vitrin-compare-h-green {
    font-family: Anton, sans-serif;
    font-size: 13px;
    color: #1B3A2B;
    letter-spacing: .04em;
}

.fb-ach-vitrin-compare-t-green {
    font-size: 11.5px;
    font-weight: 700;
    color: #356040;
    line-height: 1.35;
}

.fb-ach-vitrin-compare-h-red {
    font-family: Anton, sans-serif;
    font-size: 13px;
    color: #9A2F13;
    letter-spacing: .04em;
}

.fb-ach-vitrin-compare-t-red {
    font-size: 11.5px;
    font-weight: 700;
    color: #78351B;
    line-height: 1.35;
}

.fb-ach-vitrin-close-btn {
    cursor: pointer;
    width: 100%;
    border: 2.5px solid #12291E;
    background: #1B3A2B;
    color: #FFF8E7;
    padding: 10px 0;
    font-family: Anton, sans-serif;
    font-size: 14.5px;
    letter-spacing: .06em;
    box-shadow: 3px 3px 0 #12291E;
    margin-top: 2px;
}

/* Ödül Merkezi (Kendi Başarımım) */
.fb-ach-self-panel {
    background: #F5F0E1;
    border: 3.5px solid #12291E;
    box-shadow: 8px 8px 0 rgba(12, 31, 22, .5);
    width: 100%;
    max-width: 420px;
    overflow: hidden;
    position: relative;
}

.fb-ach-self-header {
    background: #1B3A2B;
    padding: 11px 16px;
    border-bottom: 3.5px solid #12291E;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fb-ach-self-headertitle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: Anton, sans-serif;
    font-size: 15px;
    color: #FFF8E7;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.fb-ach-self-body {
    padding: 18px;
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 12px;
}

.fb-ach-self-gift-hero {
    width: 100%;
    background: radial-gradient(circle at 50% 30%, #FFE57F 0%, #FFF3C4 85%);
    border: 2.5px solid #12291E;
    border-radius: 8px;
    padding: 18px 14px;
    display: grid;
    justify-items: center;
    gap: 8px;
    box-shadow: 3px 3px 0 rgba(12, 31, 22, .2);
    box-sizing: border-box;
}

.fb-ach-self-gift-iconbox {
    width: 72px;
    height: 72px;
    border-radius: 26%;
    background: #4F9433;
    border: 3px solid #12291E;
    display: grid;
    place-items: center;
    font-size: 36px;
    box-shadow: 3px 3px 0 #12291E;
    animation: fbBob 3s ease-in-out infinite;
}

.fb-ach-self-gift-tag {
    background: #E8552B;
    color: #FFF8E7;
    font-family: Anton, sans-serif;
    font-size: 12px;
    letter-spacing: .06em;
    padding: 3px 12px;
    border: 1.5px solid #12291E;
    box-shadow: 2px 2px 0 #12291E;
    text-transform: uppercase;
}

.fb-ach-self-gift-title {
    font-family: Anton, sans-serif;
    font-size: 21px;
    color: #16281F;
    letter-spacing: .03em;
    margin: 2px 0 0;
    text-transform: uppercase;
}

.fb-ach-self-unlocked-iconbox {
    width: 70px;
    height: 70px;
    border-radius: 26%;
    background: #F2B134;
    border: 3px solid #12291E;
    display: grid;
    place-items: center;
    font-size: 35px;
    box-shadow: 3px 3px 0 #12291E;
}

.fb-ach-self-title-wrap {
    display: grid;
    gap: 4px;
}

.fb-ach-self-unlocked-title {
    font-family: Anton, sans-serif;
    font-size: 20px;
    color: #16281F;
    letter-spacing: .03em;
    margin: 0;
    text-transform: uppercase;
}

.fb-ach-self-unlocked-badge {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 900;
    background: #4F9433;
    color: #FFF8E7;
    padding: 2px 9px;
    border: 1.5px solid #12291E;
    margin: 0 auto;
}

.fb-ach-self-locked-iconbox {
    width: 66px;
    height: 66px;
    border-radius: 26%;
    background: #FFFFFF;
    border: 3px solid #12291E;
    display: grid;
    place-items: center;
    font-size: 32px;
    box-shadow: 3px 3px 0 rgba(12, 31, 22, .3);
    opacity: 0.55;
    filter: grayscale(100%);
}

.fb-ach-self-locked-badge {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 900;
    background: #E4DDC8;
    color: #16281F;
    padding: 2px 9px;
    border: 1.5px solid #12291E;
    margin: 0 auto;
}

.fb-ach-self-desc {
    font-size: 12.5px;
    font-weight: 600;
    color: #4A5B4E;
    line-height: 1.4;
    margin: 0;
    background: #FFFBF0;
    border: 2px solid #12291E;
    padding: 10px 14px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.fb-ach-self-prog-card {
    width: 100%;
    background: #FFFBF0;
    border: 2px solid #12291E;
    padding: 10px 14px;
    box-sizing: border-box;
    text-align: left;
    display: grid;
    gap: 6px;
}

.fb-ach-self-prog-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fb-ach-self-prog-title {
    font-family: Anton, sans-serif;
    font-size: 12px;
    color: #16281F;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.fb-ach-self-prog-badge {
    font-size: 12px;
    font-weight: 900;
    color: #16281F;
    background: #F2B134;
    padding: 2px 7px;
    border: 1px solid #12291E;
}

.fb-ach-self-prog-track {
    background: #E4DDC8;
    height: 10px;
    width: 100%;
    border: 1.5px solid #12291E;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.fb-ach-self-prog-fill {
    height: 100%;
    transition: width .35s ease;
}

.fb-ach-self-prog-fill.is-unlocked {
    background: #4F9433;
}

.fb-ach-self-prog-fill.is-progressing {
    background: linear-gradient(90deg, #4F9433 0%, #F2B134 100%);
}

.fb-ach-self-prog-foot {
    display: flex;
    justify-content: space-between;
    font-size: 10.5px;
    font-weight: 800;
}

.fb-ach-self-prog-pct {
    color: #4A5B4E;
}

.fb-ach-self-prog-status.is-unlocked {
    color: #2E9077;
}

.fb-ach-self-prog-status.is-remaining {
    color: #E8552B;
}

.fb-ach-self-rewards {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    font-family: Anton, sans-serif;
    font-size: 15px;
}

.fb-ach-self-reward-coin {
    color: #B57C00;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.fb-ach-self-coin-icon {
    width: 15px;
    height: 15px;
}

.fb-ach-self-reward-xp {
    color: #2E9077;
}

.fb-ach-self-action-wrap {
    width: 100%;
    margin-top: 4px;
}

.fb-ach-self-claim-btn {
    cursor: pointer;
    width: 100%;
    border: 3px solid #12291E;
    background: #4F9433;
    color: #FFF8E7;
    padding: 12px 0;
    font-family: Anton, sans-serif;
    font-size: 16px;
    letter-spacing: .06em;
    box-shadow: 3px 3px 0 #12291E;
}

.fb-ach-self-claimed-box {
    background: #E8F5E9;
    color: #1B3A2B;
    border: 2.5px solid #4F9433;
    padding: 11px 14px;
    font-family: Anton, sans-serif;
    font-size: 14px;
    letter-spacing: .04em;
    text-align: center;
}

.fb-ach-self-locked-box {
    background: rgba(18, 41, 30, .06);
    color: #6C7C6F;
    border: 1.5px dashed #12291E;
    padding: 10px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

/* -----------------------------------------------------------------------------
   ÖZEL BİLDİRİM / TOAST
   -------------------------------------------------------------------------- */
.fb-profile-custom-alert {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999999;
    border: 3px solid #12291E;
    box-shadow: 6px 6px 0 rgba(12, 31, 22, .45);
    padding: 12px 20px;
    font-family: Anton, sans-serif;
    font-size: 15px;
    letter-spacing: .04em;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 90%;
    transition: all .3s ease;
    color: #FFF8E7;
}

.fb-profile-custom-alert.is-error {
    background: #E8552B;
}

.fb-profile-custom-alert.is-success {
    background: #1B3A2B;
}

.fb-profile-custom-alert-icon {
    font-size: 18px;
}

/* -----------------------------------------------------------------------------
   MOBİL
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
    .fb-pf-grid {
        grid-template-columns: 1fr;
    }
}


