.STING-WEB-Player {
    max-width: var(--Max-Size, 1180px);
    margin: 20px auto;
    width: 93%;
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Dashboard Cards */
.STING-WEB-Card {
    background: var(--B-Color, #151b26);
    border: 1px solid var(--Border-Color, rgba(255, 255, 255, 0.07));
    border-radius: var(--Card-Radius, 14px);
    padding: 22px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.Card-Header-Premium {
    font-size: 16px;
    font-weight: 700;
    color: var(--Primary-B-Color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 12px;
}

/* Player Header */
.STING-WEB-Player-Header {
    position: relative;
    margin-bottom: 25px;
}

.Player-Card-Glass {
    background: linear-gradient(135deg, #151b26, #182030);
    backdrop-filter: blur(10px);
    border-radius: var(--Card-Radius, 16px);
    padding: 35px 40px;
    border: 1px solid var(--Border-Color, rgba(255, 255, 255, 0.08));
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.Player-Profile-Top {
    display: flex;
    align-items: center;
    gap: 35px;
}

.Player-Image-Container {
    position: relative;
}

.Main-Profile-Img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 4px solid rgba(0, 223, 162, 0.25);
    background: #0c1017;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 223, 162, 0.12);
}

.Player-Age-Badge {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--Primary-A-Color, #00dfa2);
    color: #0c1017;
    padding: 3px 12px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 11px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
}

.Player-Main-Info h1 {
    font-size: 32px;
    color: var(--Primary-B-Color);
    margin: 8px 0;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.Player-Nationality-Box {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--Primary-C-Color, #8e9ab2);
    font-size: 14px;
    font-weight: 500;
}

.Player-Nationality-Box img {
    width: 22px;
    border-radius: 3px;
}

.Player-Badges {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

.Badge {
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 600;
    background: #1a2232;
    color: var(--Primary-E-Color, #c8d3e6);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.Position-Badge {
    border-color: rgba(0, 223, 162, 0.35);
    color: var(--Primary-A-Color, #00dfa2);
    background: rgba(0, 223, 162, 0.08);
}

/* Dashboard Layout */
.Player-Content-Dashboard {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 18px;
}

/* Stat Cards Showcase */
.Season-Stats-Showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 14px;
    margin-bottom: 22px;
}

.Stat-Card {
    background: var(--B-Color, #151b26);
    border: 1px solid var(--Border-Color, rgba(255, 255, 255, 0.07));
    border-radius: var(--Card-Radius, 14px);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s, border-color 0.25s;
}

.Stat-Card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 223, 162, 0.3);
}

.Stat-Icon {
    font-size: 24px;
    background: #1a2232;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.Stat-Data {
    display: flex;
    flex-direction: column;
}

.Stat-Val {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.Stat-Label {
    font-size: 11.5px;
    color: var(--Primary-C-Color, #8e9ab2);
    margin-top: 4px;
    font-weight: 600;
}

.Stat-Card.goals { border-left: 3px solid #00dfa2; }
.Stat-Card.assists { border-left: 3px solid #38bdf8; }
.Stat-Card.played { border-left: 3px solid #fbbf24; }
.Stat-Card.cards { border-left: 3px solid #f87171; }

/* Bio Grid */
.Bio-Grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.Bio-Item {
    background: #1a2232;
    padding: 14px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.Bio-Item .Label {
    font-size: 11.5px;
    color: var(--Primary-C-Color, #8e9ab2);
    font-weight: 600;
}

.Bio-Item .Value {
    font-size: 14px;
    color: #fff;
    font-weight: 700;
}

/* Club Card */
.Club-Info-Link {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    padding: 5px;
}

.Club-Info-Link img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: #1a2232;
    border-radius: 12px;
    padding: 8px;
}

.Club-Texts h4 {
    font-size: 16px;
    color: #fff;
    margin: 0;
    font-weight: 700;
}

.Jersey-Tag {
    font-size: 12.5px;
    color: var(--Primary-A-Color, #00dfa2);
    font-weight: 700;
    margin-top: 4px;
    display: block;
}

/* Premium Table */
.Stats-Scroll-Area {
    overflow-x: auto;
}

.Premium-Stats-Table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 6px;
}

.Premium-Stats-Table th {
    text-align: start;
    padding: 10px 14px;
    font-size: 11.5px;
    color: var(--Primary-C-Color, #8e9ab2);
    font-weight: 700;
    text-transform: uppercase;
}

.Premium-Stats-Table td {
    padding: 14px;
    background: #1a2232;
    color: #fff;
    font-size: 13.5px;
}

.Premium-Stats-Table tr td:first-child {
    border-radius: 10px 0 0 10px;
}

.Premium-Stats-Table tr td:last-child {
    border-radius: 0 10px 10px 0;
}

.Premium-Stats-Table tr:hover td {
    background: rgba(0, 223, 162, 0.08);
    transition: 0.2s;
}

.Comp-Name-Cell {
    font-weight: 700;
    color: var(--Primary-B-Color);
}

.Num-Cell {
    font-weight: 800;
    text-align: center;
}

.Goals-Cell {
    color: var(--Primary-A-Color, #00dfa2);
    font-size: 15px;
}

@media (max-width: 1000px) {
    .Player-Content-Dashboard { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    .Player-Profile-Top { flex-direction: column; text-align: center; gap: 16px; }
    .Player-Card-Glass { padding: 25px 16px; }
    .Player-Main-Info h1 { font-size: 24px; }
    .Player-Nationality-Box { justify-content: center; }
    .Player-Badges { justify-content: center; flex-wrap: wrap; }
    .Season-Stats-Showcase { grid-template-columns: 1fr 1fr; }
    .Bio-Grid { grid-template-columns: 1fr 1fr; }
}
