/* Homepage sport anchors */
.bp-lol{
    padding: 28px 0;
}

.bp-sport-anchor {
    scroll-margin-top: 96px;
}

.bp-side-card a,
.bp-sport-tabs a {
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
}

.bp-lol-hero {
    margin-bottom: 24px;
    padding: 38px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 30px;
    background:
        radial-gradient(
            circle at 14% 0%,
            rgba(56, 189, 248, 0.18),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.075),
            rgba(255, 255, 255, 0.035)
        );
}

.bp-lol-title {
    margin: 0 0 10px;
    color: #fff;
    font-size: 2rem;
    line-height: 1.15;
    letter-spacing: -0.06em;
}

.bp-lol-description {
    margin: 0;
    color: #93a4bb;
    font-size: 1rem;
    font-weight: 700;
}

.bp-lol-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 20px 0 24px;
}

.bp-lol-tab {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    color: #cbd5e1;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.055);
    font-size: 1rem;
    font-weight: 900;
    transition: 0.18s ease;
}

.bp-lol-tab:hover {
    border-color: rgba(56, 189, 248, 0.38);
    color: #fff;
    background: rgba(56, 189, 248, 0.08);
}

.bp-lol-tab.active {
    border-color: rgba(56, 189, 248, 0.35);
    color: #fff;
    background: rgba(56, 189, 248, 0.18);
}

.bp-lol-category {
    margin: 30px 0;
}

.bp-lol-category-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.bp-lol-category-title {
    margin: 0;
    color: #fff;
    font-size: 1.25rem;
    letter-spacing: -0.03em;
}

.bp-lol-category-count {
    color: #64748b;
    font-size: 12px;
    font-weight: 900;
}

.bp-lol-competition-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.bp-lol-competition-card {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 96px;
    padding: 17px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    color: inherit;
    text-decoration: none;
    transition: 0.18s ease;
}

.bp-lol-competition-card:hover {
    border-color: rgba(56, 189, 248, 0.32);
    background: rgba(56, 189, 248, 0.08);
    transform: translateY(-2px);
}

.bp-lol-competition-logo {
    flex: 0 0 auto;
    width: 54px;
    height: 54px;
    padding: 6px;
    object-fit: contain;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
}

.bp-lol-competition-logo-empty {
    display: grid;
    place-items: center;
    color: #38bdf8;
    font-weight: 950;
}

.bp-lol-competition-name {
    display: block;
    margin: 0 0 6px;
    color: #fff;
    font-size: 1rem;
    line-height: 1.35;
}

.bp-lol-competition-meta {
    display: block;
    color: #8492a6;
    font-size: 1rem;
    font-weight: 800;
}

.bp-lol-panel {
    margin: 22px 0;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.055);
}

.bp-lol-panel-title {
    margin: 0 0 18px;
    color: #fff;
    font-size: 1.25rem;
    letter-spacing: -0.03em;
}

.bp-lol-table-wrap {
    overflow-x: auto;
}

.bp-lol-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.bp-lol-table th,
.bp-lol-table td {
    padding: 13px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    text-align: center;
    white-space: nowrap;
}

.bp-lol-table th {
    color: #8190a8;
    font-size: 1rem;
    font-weight: 900;
}

.bp-lol-table td {
    color: #d8e1ef;
    font-size: 1rem;
    font-weight: 800;
}

.bp-lol-table tbody tr {
    transition: 0.18s ease;
}

.bp-lol-table tbody tr:hover {
    background: rgba(56, 189, 248, 0.065);
}

.bp-lol-table td:first-child,
.bp-lol-table th:first-child {
    text-align: left;
}

.bp-lol-team-cell,
.bp-lol-player-cell {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.bp-lol-team-cell > strong,
.bp-lol-player-cell > strong {
    min-width: 22px;
    color: #38bdf8;
}

.bp-lol-mini-logo {
    width: 32px;
    height: 32px;
    padding: 3px;
    object-fit: contain;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.08);
}

.bp-lol-form {
    font-weight: 950;
    letter-spacing: 2px;
}

.bp-lol-form .win {
    color: #86efac;
}

.bp-lol-form .loss {
    color: #fca5a5;
}

.bp-lol-match-list {
    display: grid;
}

.bp-lol-match-card {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr) 90px;
    align-items: center;
    gap: 50px;
    min-height: 88px;
    padding: 15px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    color: inherit;
    text-decoration: none;
    transition: 0.18s ease;
}

.bp-lol-match-card:first-child {
    border-top: 0;
}

.bp-lol-match-card:hover {
    background: rgba(56, 189, 248, 0.07);
}

.bp-lol-match-time {
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.45;
}

.bp-lol-match-teams {
    display: grid;
    gap: 8px;
}

.bp-lol-match-team {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: #fff;
    font-size: 1rem;
    font-weight: 900;
}

.bp-lol-match-team strong {
    color: #38bdf8;
    font-size: 1rem;
}

.bp-lol-match-score {
    color: #93c5fd;
    font-size: .85rem;
    font-weight: 900;
    text-align: right;
}

.bp-lol-empty {
    padding: 42px 12px;
    color: #94a3b8;
    text-align: center;
    font-size: 14px;
    font-weight: 800;
}

.bp-lol-notice {
    margin: 14px 0 0;
    color: #758399;
    font-size: 12px;
    line-height: 1.6;
}

.bp-lol-fixtures-panel {
    padding-bottom: 8px;
}

.bp-lol-fixture-block {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bp-lol-fixture-block:first-of-type {
    border-top: 0;
}

.bp-lol-fixture-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 2px 12px;
}

.bp-lol-fixture-head strong {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 950;
}

.bp-lol-fixture-head span {
    color: #64748b;
    font-size: 1rem;
    font-weight: 900;
}

.bp-lol-fixture-block .bp-lol-match-list {
    margin: 0 -2px;
}

.bp-lol-fixture-block .bp-lol-match-card {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 0;
}

.bp-lol-fixture-block .bp-lol-match-card:first-child {
    border-top: 0;
}

.bp-lol-match-time {
    display: grid;
    gap: 1px;
}

.bp-lol-match-time strong {
    color: #fff;
    font-size: 1rem;
    line-height: 1.1;
}

.bp-lol-match-time span {
    color: #fff;
    font-size: 1rem;
    font-weight: 900;
}

.bp-lol-match-time em {
    margin-top: 4px;
    color: #93a4bb;
    font-size: .85rem;
    font-style: normal;
    font-weight: 900;
}

.bp-lol-empty-compact {
    padding: 28px 10px 32px;
}

.bp-lol-match-hero {
    margin-bottom: 22px;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(56, 189, 248, 0.16),
            transparent 42%
        ),
        rgba(255, 255, 255, 0.055);
}

.bp-lol-back-link {
    color: #8fcfff;
    font-size: 1rem;
    font-weight: 900;
    text-decoration: none;
}

.bp-lol-match-meta {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
    color: #93a4bb;
    font-size: 1rem;
    font-weight: 900;
}

.bp-lol-match-meta strong {
    color: #38bdf8;
}

.bp-lol-match-date {
    display: block;
    margin-top: 8px;
    color: #cbd5e1;
    text-align: center;
    font-size: 1rem;
    font-weight: 800;
}

.bp-lol-versus {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px minmax(0, 1fr);
    align-items: center;
    gap: 28px;
    margin-top: 30px;
}

.bp-lol-versus-team {
    display: grid;
    justify-items: center;
    gap: 14px;
    color: #fff;
    text-align: center;
}

.bp-lol-versus-team img {
    width: 92px;
    height: 92px;
    padding: 10px;
    object-fit: contain;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
}

.bp-lol-versus-team strong {
    font-size: 1.25rem;
}

.bp-lol-versus-score {
    display: grid;
    justify-items: center;
    gap: 6px;
}

.bp-lol-versus-score strong {
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
}

.bp-lol-versus-score span {
    color: #38bdf8;
    font-size: 1.15rem;
    font-weight: 900;
}

.bp-lol-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 20px;
}

.bp-lol-comparison,
.bp-lol-roster-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.bp-lol-comparison-card,
.bp-lol-roster-card {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.035);
}

.bp-lol-comparison-card h3,
.bp-lol-roster-card h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 1.25rem;
}

.bp-lol-comparison-card dl {
    margin: 0;
}

.bp-lol-comparison-card dl > div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.bp-lol-comparison-card dt {
    color: #7f8ba0;
    font-size: 1rem;
}

.bp-lol-comparison-card dd {
    margin: 0;
    color: #fff;
    font-size: 1rem;
    font-weight: 900;
}

.bp-lol-form-large {
    margin-top: 14px;
    font-size: 1rem;
}

.bp-lol-game-list {
    display: grid;
}

.bp-lol-game-row {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr) 80px;
    align-items: center;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.bp-lol-game-row:last-child {
    border-bottom: 0;
}

.bp-lol-game-row strong {
    color: #38bdf8;
    font-size:1rem;
}

.bp-lol-game-row span {
    color: #fff;
    font-weight: 900;
    font-size:1rem;
}

.bp-lol-game-row em {
    color: #93a4bb;
    text-align: right;
    font-size: 1rem;
    font-style: normal;
}

.bp-lol-roster-list {
    display: grid;
    gap: 9px;
}

.bp-lol-roster-player {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.04);
}

.bp-lol-roster-player img {
    width: 38px;
    height: 38px;
    object-fit: cover;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.08);
}

.bp-lol-roster-player span {
    display: grid;
    gap: 2px;
}

.bp-lol-roster-player strong {
    color: #fff;
    font-size: 1rem;
}

.bp-lol-roster-player small {
    color: #8190a8;
    font-size: .85rem;
    font-weight: 900;
}

.bp-lol-muted {
    color: #7f8ba0;
    font-size: 12px;
}

.bp-lol-recent-summary {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4px 12px;
    margin-top: 14px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.035);
}

.bp-lol-recent-summary span {
    color: #7f8ba0;
    font-size: .85rem;
    font-weight: 900;
}

.bp-lol-recent-summary strong {
    color: #fff;
    font-size: .85rem;
}

.bp-lol-recent-summary em {
    grid-column: 1 / -1;
    color: #93a4bb;
    font-size: .85rem;
    font-style: normal;
    font-weight: 800;
}

.bp-lol-recent-list {
    display: grid;
    gap: 6px;
    margin-top: 12px;
}

.bp-lol-recent-row {
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    padding: 8px 9px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.035);
    color: inherit;
    text-decoration: none;
}

.bp-lol-recent-row:hover {
    background: rgba(56, 189, 248, 0.08);
}

.bp-lol-recent-row > span {
    font-size: 1rem;
    font-weight: 950;
}

.bp-lol-recent-row > span.win {
    color: #86efac;
}

.bp-lol-recent-row > span.loss {
    color: #fca5a5;
}

.bp-lol-recent-row strong {
    overflow: hidden;
    color: #e5edf8;
    font-size: 1rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bp-lol-recent-row em {
    color: #fff;
    font-size: 1rem;
    font-style: normal;
    font-weight: 900;
}

.bp-lol-roster-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.bp-lol-roster-head h3 {
    margin: 0;
}

.bp-lol-roster-head span {
    color: #7f8ba0;
    font-size: 1rem;
    font-weight: 900;
}


/* LoL 공식 승패 예측 */
.bp-lol-prediction-panel {
    margin: 24px 0;
    padding: 24px;
    border: 1px solid var(--bp-border, #293140);
    border-radius: 20px;
    background: var(--bp-card, #171b25);
}

.bp-lol-probability-row + .bp-lol-probability-row {
    margin-top: 18px;
}

.bp-lol-probability-row > div:first-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 8px;
}

.bp-lol-probability-row span {
    font-weight: 800;
    color: #35b9ff;
    font-size:1.25rem;
}

.bp-lol-probability-row strong{
    font-size:1.15rem;
}

.bp-lol-probability-track {
    overflow: hidden;
    height: 12px;
    border-radius: 999px;
    background: #262d3c;
}

.bp-lol-probability-track > span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #239ee9, #42c6ff);
}

.bp-lol-pick-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.bp-lol-pick-grid > div {
    padding: 16px;
    border: 1px solid #293140;
    border-radius: 14px;
    background: #121824;
}

.bp-lol-pick-grid span,
.bp-lol-pick-grid strong {
    display: block;
}

.bp-lol-pick-grid span {
    margin-bottom: 8px;
    color: #8fa4c1;
    font-size: 1rem;
}

.bp-lol-pick-grid strong{
    font-size:1.25rem;
}

.bp-lol-analysis-box {
    margin-top: 16px;
    padding: 16px;
    border-radius: 14px;
    background: #121824;
}

.bp-lol-analysis-box strong{font-size:1.15rem;}

.bp-lol-analysis-box ul {
    margin: 10px 0 0;
    padding-left: 20px;
    color: #c6d2e3;
    line-height: 1.8;
    font-size:1rem;
}

.bp-lol-prediction-note {
    margin: 16px 0 0;
    color: #8392aa;
    font-size: 1rem;
    line-height: 1.7;
}

/**
 * style.css에서 이동한 LoL 전용 스타일
 */

.bp-statistics-sport-badge.lol {
    background: rgba(197, 106, 255, 0.14);
    color: #d286ff;
}.bp-lol-power-ranking-card {
    overflow: hidden;
    border: 1px solid #273140;
    border-radius: 18px;
    background: #141b27;
}.bp-lol-power-ranking-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    list-style: none;
}.bp-lol-power-ranking-list li {
    border-bottom: 1px solid #242d39;
}.bp-lol-power-ranking-list li:nth-child(odd) {
    border-right: 1px solid #242d39;
}.bp-lol-power-ranking-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 72px;
    padding: 12px 16px;
    color: inherit;
    text-decoration: none;
}.bp-lol-power-ranking-list a:hover {
    background: rgba(45, 181, 255, .05);
}.bp-lol-ranking-card .bp-ranking-column {
    width: 100%;
}.bp-lol-player-ranking-notice {
    margin-top: 14px;
    padding: 16px;
    border: 1px dashed #2b394b;
    border-radius: 14px;
    background: rgba(9, 15, 24, .35);
}.bp-lol-player-ranking-notice strong {
    display: block;
    margin-bottom: 7px;
    color: #f0f4fa;
    font-size: 13px;
}.bp-lol-player-ranking-notice p {
    margin: 0;
    color: #7f8da0;
    font-size: 11px;
    line-height: 1.7;
}.bp-lol-team-current-standing {
    margin-top: 18px;
}.bp-lol-team-standing-title {
    margin: 14px 0 0;
    color: #8290a3;
    font-size: 1rem;
    text-align: center;
}.bp-lol-team-subheading {
    margin-top: 28px !important;
}.bp-lol-team-stat-list {
    margin-top: 18px;
}.bp-lol-team-roster-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}.bp-lol-team-player-card {
    display: grid;
    justify-items: center;
    gap: 5px;
    padding: 18px 12px;
    border: 1px solid #263140;
    border-radius: 15px;
    background: #171e2a;
    color: inherit;
    text-align: center;
    text-decoration: none;
}.bp-lol-team-player-card:hover {
    border-color: #2db5ff;
    background: rgba(45, 181, 255, .05);
}.bp-lol-team-player-card > div {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    overflow: hidden;
    border-radius: 16px;
    background: #222b38;
}.bp-lol-team-player-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}.bp-lol-team-player-card strong {
    color: #f5f8fc;
    font-size: 1.15rem;
}.bp-lol-team-player-card span {
    color: #3dbdff;
    font-size: 1rem;
    font-weight: 800;
}.bp-lol-team-player-card small {
    color: #7f8da0;
    font-size: 1rem;
}.bp-lol-team-tournament-list {
    display: grid;
    gap: 9px;
}.bp-lol-team-tournament-row {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 12px;
    min-height: 66px;
    padding: 10px 13px;
    border: 1px solid #263140;
    border-radius: 13px;
    background: #171e2a;
    color: inherit;
    text-decoration: none;
}.bp-lol-team-tournament-row:hover {
    border-color: #2db5ff;
}.bp-lol-team-tournament-row > div {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    overflow: hidden;
    border-radius: 10px;
    background: #222b38;
}.bp-lol-team-tournament-row img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}.bp-lol-team-tournament-row span {
    min-width: 0;
}.bp-lol-team-tournament-row strong,
.bp-lol-team-tournament-row small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}.bp-lol-team-tournament-row strong {
    color: #f5f8fc;
    font-size: 1rem;
}.bp-lol-team-tournament-row small {
    margin-top: 4px;
    color: #7f8da0;
    font-size: .85rem;
}.bp-lol-team-tournament-row b {
    color: #32bbff;
    font-size: 1rem;
}.bp-lol-team-tournament-row em {
    color: #a7b3c4;
    font-size: 1rem;
    font-style: normal;
}.bp-lol-versus-team-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: inherit;
    text-decoration: none;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}.bp-lol-versus-team-link:hover {
    color: #3dbdff;
    transform: translateY(-2px);
}.bp-lol-versus-team-link img {
    transition:
        transform 0.2s ease,
        filter 0.2s ease;
}.bp-lol-versus-team-link:hover img {
    transform: scale(1.04);
    filter: brightness(1.08);
}.bp-lol-versus-team-link:focus-visible {
    border-radius: 12px;
    outline: 2px solid #3dbdff;
    outline-offset: 6px;
}.bp-lol-table-link,
.bp-lol-inline-link {
    color: inherit;
    text-decoration: none;
}.bp-lol-table-link:hover,
.bp-lol-inline-link:hover {
    color: #36bfff;
}.bp-lol-roster-player {
    color: inherit;
    text-decoration: none;
    transition: border-color .2s ease, background .2s ease;
}.bp-lol-roster-player:hover {
    border-color: #36bfff;
    background: rgba(54, 191, 255, .06);
}.bp-lol-player-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
    padding: 30px;
    border: 1px solid #293341;
    border-radius: 22px;
    background:
        radial-gradient(circle at 25% 0%, rgba(45, 181, 255, .13), transparent 42%),
        #151b26;
}.bp-lol-player-profile {
    display: flex;
    align-items: center;
    gap: 20px;
}.bp-lol-player-photo {
    display: grid;
    place-items: center;
    width: 112px;
    height: 112px;
    overflow: hidden;
    border-radius: 22px;
    background: #222a36;
}.bp-lol-player-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}.bp-lol-player-profile span {
    color: #35bcff;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: .08em;
}.bp-lol-player-profile h1 {
    margin: 6px 0;
    color: #f8fafc;
    font-size: 2rem;
}.bp-lol-player-profile p {
    margin: 0;
    color: #8d9bad;
    font-size: 1rem;
}.bp-lol-player-current-team,
.bp-lol-player-team-card {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px 16px;
    border: 1px solid #2a3544;
    border-radius: 15px;
    background: #111722;
    color: inherit;
    text-decoration: none;
}.bp-lol-player-current-team:hover,
.bp-lol-player-team-card:hover {
    border-color: #36bfff;
}.bp-lol-player-current-team img,
.bp-lol-player-team-card img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}.bp-lol-player-current-team small,
.bp-lol-player-current-team strong,
.bp-lol-player-team-card small,
.bp-lol-player-team-card strong {
    display: block;
}.bp-lol-player-current-team small,
.bp-lol-player-team-card small {
    color: #8290a3;
    font-size: .85rem;
}.bp-lol-player-current-team strong,
.bp-lol-player-team-card strong {
    margin-top: 4px;
    color: #f4f7fb;
    font-size: 1rem;
}.bp-lol-player-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 18px;
}.bp-lol-player-tournament-list {
    display: grid;
    gap: 9px;
}.bp-lol-player-tournament-row {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    min-height: 68px;
    padding: 11px 14px;
    border: 1px solid #283342;
    border-radius: 13px;
    background: #171e2a;
    color: inherit;
    text-decoration: none;
}.bp-lol-player-tournament-row:hover {
    border-color: #36bfff;
}.bp-lol-player-tournament-row img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}.bp-lol-player-tournament-row strong,
.bp-lol-player-tournament-row small {
    display: block;
}.bp-lol-player-tournament-row strong {
    color: #f5f8fc;
    font-size: 1rem;
}.bp-lol-player-tournament-row small {
    margin-top: 4px;
    color: #8290a3;
    font-size: .85rem;
}.bp-lol-player-tournament-row em {
    color: #35bcff;
    font-size: 1rem;
    font-style: normal;
    font-weight: 800;
}.bp-lol-player-data-note p {
    margin: 0;
    color: #8290a3;
    font-size: 12px;
    line-height: 1.8;
}

/* LoL team SEO summary */

.bp-team-seo-summary {
    margin: 18px 0 20px;
    padding: 24px 26px;
    border: 1px solid rgba(111, 142, 184, 0.18);
    border-radius: 16px;
    background: rgba(14, 24, 39, 0.88);
}

.bp-team-seo-summary h2 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 1.25rem;
    line-height: 1.45;
    letter-spacing: -0.025em;
}

.bp-team-seo-summary p {
    margin: 0;
    color: #aebed2;
    font-size: 1rem;
    word-break: keep-all;
}

.bp-team-seo-summary p + p {
    margin-top: 9px;
}

@media (max-width: 768px) {
    .bp-team-seo-summary {
        margin: 14px 0 16px;
        padding: 19px 17px;
        border-radius: 14px;
    }

    .bp-team-seo-summary h2 {
        font-size: 1rem;
    }

    .bp-team-seo-summary p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

/* LoL shared SEO summary */

.bp-lol-seo-summary {
    margin: 18px 0 20px;
    padding: 24px 26px;
    border: 1px solid rgba(111, 142, 184, 0.18);
    border-radius: 16px;
    background: rgba(14, 24, 39, 0.88);
}

.bp-lol-seo-summary h2 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 1.25rem;
    line-height: 1.45;
    letter-spacing: -0.025em;
}

.bp-lol-seo-summary p {
    margin: 0;
    color: #aebed2;
    font-size: 1rem;
    word-break: keep-all;
}

.bp-lol-seo-summary p + p {
    margin-top: 9px;
}

.bp-lol-seo-summary a {
    color: #69c7ff;
    font-weight: 700;
    text-decoration: none;
}

.bp-lol-seo-summary a:hover,
.bp-lol-seo-summary a:focus-visible {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .bp-lol-seo-summary {
        margin: 14px 0 16px;
        padding: 19px 17px;
        border-radius: 14px;
    }

    .bp-lol-seo-summary h2 {
        font-size: 1rem;
    }

    .bp-lol-seo-summary p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

