@charset "UTF-8";

.bc-tp-row {
    margin-bottom: 18px;
}

.bc-tp-card {
    background: #314761;
    border-radius: 10px;
    border: 1px solid #243447;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .35);
    color: #e9edf5;
    padding: 12px 16px;
}

/* Header */
.bc-tp-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.bc-tp-header-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #13c4af;
    flex-shrink: 0;
}

.bc-tp-header-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bc-tp-header-main {
    flex: 1;
    min-width: 0;
}

.bc-tp-header-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bc-tp-header-meta {
    font-size: .8rem;
    color: #c5d0e0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.bc-tp-header-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
}

.bc-tp-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .02em;
}

.bc-tp-pill--free {
    background: #13c4af;
    color: #072026;
}

.bc-tp-pill--paid {
    background: #ffc94a;
    color: #1d2635;
}

.bc-tp-follow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 14px;
    border-radius: 999px;
    border: none;
    background: #ffc94a;
    color: #1d2635;
    font-size: .8rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
}

.bc-tp-follow-btn:hover {
    filter: brightness(1.05);
}

/* XP / Level pills */
.bc-tp-stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .02em;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
    color: #e9edf5;
}

.bc-tp-stat-pill b {
    font-weight: 900;
    color: #ffffff;
}

/* Helpers */
.bc-tp-green {
    color: #2ecc71;
}

.bc-tp-red {
    color: #e74c3c;
}

.bc-tp-muted {
    color: #c5d0e0;
}

.bc-tp-perf-v.bc-tp-green {
    color: #2ecc71;
}

.bc-tp-perf-v.bc-tp-red {
    color: #e74c3c;
}

/* Recent Predictions table */
.bc-tp-scroll {
    max-height: 380px;
    overflow: auto;
    padding-right: 6px;
}

.bc-tp-scroll::-webkit-scrollbar {
    width: 8px;
    height: 8px
}

.bc-tp-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, .05);
    border-radius: 999px
}

.bc-tp-scroll::-webkit-scrollbar-thumb {
    background: rgba(19, 196, 175, .55);
    border-radius: 999px
}

.bc-tp-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(19, 196, 175, .75)
}

.bc-tp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .82rem;
}

.bc-tp-table th,
.bc-tp-table td {
    padding: 8px 6px;
    border-bottom: 1px solid #243447;
    vertical-align: top;
}

.bc-tp-table th {
    text-align: left;
    font-weight: 600;
    color: #d7e1f0;
    position: sticky;
    top: 0;
    background: #2b3f57;
}

.bc-tp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 13px;
    border-radius: 999px;
    border: none;
    background: #13c4af;
    color: #072026;
    font-size: .8rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
}

.bc-tp-btn-google {
    background: #ffffff !important;
}

.bc-tp-btn:hover {
    filter: brightness(1.05);
}

/* Badge carousel */
.bc-tp-badges-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 0 0 10px;
}

.bc-tp-badges-head h3 {
    margin: 0;
    font-size: .95rem;
}

.bc-tp-carousel {
    position: relative;
}

.bc-tp-carousel-viewport {
    overflow: hidden;
    border-radius: 10px;
}

.bc-tp-carousel-track {
    display: flex;
    gap: 10px;
    transition: transform .28s ease;
    will-change: transform;
    padding: 2px;
}

.bc-tp-badge-card {
    flex: 0 0 auto;
    width: 160px;
    border: 1px solid #243447;
    border-radius: 12px;
    background: #2b3f57;
    padding: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
    min-height: 74px;
    position: relative;
}

.bc-tp-badge-card img {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    object-fit: contain;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
}

.bc-tp-badge-card strong {
    display: block;
    font-size: .85rem;
    line-height: 1.15;
}

.bc-tp-badge-card small {
    display: block;
    font-size: .74rem;
    color: #c5d0e0;
    line-height: 1.2;
    margin-top: 2px;
}

.bc-tp-badge-locked {
    opacity: .55;
    filter: saturate(.6);
}

.bc-tp-badge-locked:after {
    content: 'Locked';
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: .66rem;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .35);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #e9edf5;
}

.bc-tp-carousel-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(0, 0, 0, .18);
    color: #e9edf5;
    cursor: pointer;
}

.bc-tp-carousel-btn:hover {
    filter: brightness(1.08);
}

.bc-tp-carousel-btn[disabled] {
    opacity: .35;
    cursor: not-allowed;
    filter: none;
}

/* Settings tabs */
.bc-tps-tabs {
    background: #314761;
    border-radius: 10px;
    border: 1px solid #243447;
    padding: 10px;
    margin-bottom: 8px;
    color: #e9edf5;
}

.bc-tps-tab-nav {
    display: flex;
    gap: 7px;
    border-bottom: 1px solid #223245;
    padding: 7px 0px 7px 0px;
    scrollbar-color: #ffc037 #314761;
    scrollbar-width: thin;
}

.bc-tps-tab-nav button {
    border: 0;
    background: #243447;
    color: #d7e1f0;
    font-size: .8rem;
    font-weight: 600;
    padding: 7px 12px;
    border-radius: 999px;
    cursor: pointer;
    white-space: nowrap;
    flex-grow: 1;
}

.bc-tps-tab-nav button.bc-tps-tab-active {
    background: #13c4af;
    color: #072026;
}

.bc-tps-tab-panel {
    display: none;
    padding: 13px 0px 13px;
    font-size: .85rem;
}

.bc-tps-tab-panel.bc-tps-tab-panel-active {
    display: block;
}

.bc-tps-tab-panel h4 {
    margin: 0 0 10px;
    font-size: .95rem;
    color: #ffffff;
}

.bc-tps-block {
    margin-bottom: 14px;
    padding-top: 7px;
}

.bc-tps-danger {
    border-top: 3px dashed #e74d3d;
    padding-top: 17px;
}

.bc-tps-block:last-child {
    margin-bottom: 0;
}

.bc-tps-field-row {
    margin-bottom: 10px;
    /* width: 500px; */
}

.bc-tps-field-row label {
    display: block;
    font-size: .8rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.bc-tps-input,
.bc-tps-textarea,
.bc-tps-select {
    width: 100%;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid #1d2938;
    background: #1b2838;
    color: #e9edf5;
    font-size: .85rem;
    box-sizing: border-box;
}

.bc-tps-textarea {
    min-height: 110px;
}

.bc-tps-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
}

.bc-tps-checkbox-label input {
    margin: 0;
}

.bc-tps-help {
    font-size: .75rem;
    color: #aeb8c6;
    margin-top: 4px;
}

.bc-tps-msg {
    margin-bottom: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: .85rem;
}

.bc-tps-msg--ok {
    background: #23412f;
    color: #d9f7e0;
    border: 1px solid #2ecc71;
}

.bc-tps-msg--err {
    background: #4b2226;
    color: #ffecec;
    border: 1px solid #e74c3c;
}

/* Notifications chooser */
.bc-tps-notify-status {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    background: #1b2838;
    border: 1px solid #1d2938;
    border-radius: 12px;
    padding: 10px 12px;
    margin-bottom: 12px;
}

.bc-tps-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.bc-tps-dot--ok {
    background: #2ecc71;
}

.bc-tps-dot--warn {
    background: #ffc94a;
}

.bc-tps-dot--error {
    background: #e74c3c;
}

.bc-tps-choice {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.bc-tps-choice-input {
    position: absolute;
    left: -9999px;
}

.bc-tps-choice-card {
    flex: 1;
    min-width: 240px;
    max-width: 520px;
    background: #1b2838;
    border: 1px solid #1d2938;
    border-radius: 14px;
    padding: 12px 14px;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .25);
    display: block;
}

.bc-tps-choice-input:checked+.bc-tps-choice-card {
    border-color: #13c4af;
    box-shadow: 0 0 0 2px rgba(19, 196, 175, .18), 0 1px 2px rgba(0, 0, 0, .25);
}

.bc-tps-choice-input:disabled+.bc-tps-choice-card {
    opacity: .6;
    cursor: not-allowed;
}

.bc-tps-choice-title {
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bc-tps-choice-desc {
    font-size: .8rem;
    color: #c5d0e0;
    line-height: 1.35;
}

.bc-tps-mini {
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .02em;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(255, 201, 74, .18);
    border: 1px solid rgba(255, 201, 74, .35);
    color: #ffc94a;
}

/* Make Google plugin button match bc-tp-btn when embedded here */
.bc-gsi-btn-wrap.bc-tp-btn .bc-gsi-btn-inner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border-radius: 999px;
    border: none;
    background: #ffffff;
    color: #072026;
    font-size: .8rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
}

.bc-gsi-btn-wrap.bc-tp-btn .bc-gsi-btn-inner:hover {
    filter: brightness(1.05);
}

/* Linked Accounts cards */
.bc-tps-linked-avatar span {
    color: #e9edf5;
    opacity: .9;
}

.bc-tps-linked-card {
    max-width: 720px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(0, 0, 0, .12);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.bc-tps-linked-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 2px solid rgba(19, 196, 175, .8);
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255, 255, 255, .06);
}

.bc-tps-linked-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bc-tps-linked-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 8px;
    width: 160px;
}

/* Performance analytics */
.bc-tp-perf-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0 0 10px;
}

.bc-tp-perf-top h3 {
    margin: 0;
    font-size: .95rem;
}

.bc-tp-perf-filters {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.bc-tp-perf-filter {
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(0, 0, 0, .18);
    color: #e9edf5;
    font-size: .78rem;
    font-weight: 800;
    padding: 6px 10px;
    border-radius: 999px;
    cursor: pointer;
}

.bc-tp-perf-filter.is-active {
    background: #13c4af;
    color: #072026;
    border-color: rgba(19, 196, 175, .55);
}

.bc-tp-perf-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.bc-tp-perf-tile {
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(0, 0, 0, .12);
    border-radius: 12px;
    padding: 10px 12px;
    min-height: 64px;
}

.bc-tp-perf-k {
    font-size: .72rem;
    color: #c5d0e0;
    font-weight: 700;
    margin-bottom: 4px;
}

.bc-tp-perf-v {
    font-size: 1rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.15;
}

.bc-tp-perf-sub {
    font-size: .74rem;
    color: #c5d0e0;
    margin-top: 4px;
    line-height: 1.25;
}

.bc-tp-perf-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: .68rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .02em;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
    color: #e9edf5;
    margin-left: 8px;
}

.bc-tp-perf-note {
    margin-top: 10px;
    font-size: .78rem;
    color: #c5d0e0;
    line-height: 1.35;
}

@media (max-width:900px) {
    .bc-tp-perf-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
        .bc-tps-tab-nav {
        overflow-x: auto;
        -webkit-mask-image: linear-gradient(to right, black 91%, transparent 97%);
        mask-image: linear-gradient(to right, black 91%, transparent 97%);
        padding: 7px 73px 7px 0px;
    }
}

@media (max-width:640px) {
    .bc-tp-header-actions {
        align-items: flex-start;
    }

    .bc-tp-table th,
    .bc-tp-table td {
        padding: 7px 5px;
    }

    .bc-tp-badge-card {
        width: 145px;
    }
}

/* Avatar picker carousel */
.bc-tp-avatar-picker {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 720px;
}

.bc-tp-avatar-nav {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(0, 0, 0, .18);
    color: #e9edf5;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
}

.bc-tp-avatar-nav:hover {
    filter: brightness(1.08);
}

.bc-tp-avatar-rail {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 6px 2px;
    overflow: hidden;
}

.bc-tp-avatar-item {
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 999px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    flex: 0 0 auto;
    opacity: .75;
    transform: scale(.92);
    transition: transform .15s ease, opacity .15s ease, border-color .15s ease;
}

.bc-tp-avatar-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bc-tp-avatar-item.is-center {
    opacity: 1;
    transform: scale(1.02);
}

.bc-tp-avatar-item.is-selected {
    border-color: #13c4af;
    box-shadow: 0 0 0 2px rgba(19, 196, 175, .18);
}

.bc-tp-avatar-item.is-selected::before {
    content: '';
    position: absolute;
    background: rgba(19, 196, 175, .18);
    /* transparent layer over photo */
    z-index: 2;
}

.bc-tp-avatar-item.is-selected::after {
    content: '✓';
    position: absolute;
    top: 22px;
    right: 25px;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .45);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px;
    z-index: 3;
    /* above overlay */
}

.bc-tp-avatar-item.is-discord {
    opacity: .9;
}

.bc-tp-avatar-item.is-discord::before {
    content: 'Discord';
    position: absolute;
    left: 8px;
    bottom: 4px;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .45);
    color: #fff;
    z-index: 4;
}

.bc-tp-avatar-item.is-google {
    opacity: .9;
}

.bc-tp-avatar-item.is-google::before {
    content: 'Google';
    position: absolute;
    left: 8px;
    bottom: 4px;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .45);
    color: #fff;
    z-index: 4;
}

.bc-tp-notify-toggle-shortcode {
    max-width: 420px;
}

.bc-tp-notify-toggle-title {
    font-size: .82rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    margin-top: 16px;
}

.bc-tp-notify-toggle-group {
    display: inline-flex;
    gap: 8px;
    flex-wrap: wrap;
    /* justify-content: space-between; */
    width: 100%;
}

.bc-tp-notify-toggle-input {
    position: absolute;
    left: -9999px;
}

.bc-tp-notify-toggle-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #1b2838;
    border: 1px solid #1d2938;
    color: #d7e1f0;
    font-size: .78rem;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
}

.bc-tp-notify-toggle-input:checked + .bc-tp-notify-toggle-pill {
    background: #13c4af;
    color: #072026;
    border-color: rgba(19, 196, 175, .55);
}

.bc-tp-notify-toggle-input:disabled + .bc-tp-notify-toggle-pill {
    opacity: .5;
    cursor: not-allowed;
}

.bc-tp-push-control {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
}