/* NBL Design - Player Profile */
.nbl-player-profile {
    font-family: 'Inter', sans-serif;
    color: #1a1e23;
    background-color: #f8f9fa;
    min-height: 100vh;
}

/* NBL Hero Section */
.nbl-player-hero {
    position: relative;
    background: linear-gradient(135deg, #101216 0%, #1e252d 100%);
    color: #ffffff;
    padding: 60px 0;
    overflow: hidden;
    margin-bottom: 40px;
}

.nbl-hero-watermark {
    position: absolute;
    right: 5%;
    bottom: -10%;
    font-size: 350px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 255, 255, 0.03);
    z-index: 1;
    pointer-events: none;
    font-family: 'Oswald', sans-serif;
}

.nbl-hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    z-index: 2;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nbl-hero-photo-wrapper {
    flex: 0 0 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    background-color: #ffffff;
}

.nbl-hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.nbl-hero-info {
    flex: 1;
    min-width: 300px;
}

.nbl-player-name {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0 0 10px 0;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.nbl-player-team {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.nbl-team-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.nbl-team-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #a0aec0;
}

.nbl-player-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.nbl-metric-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #e2e8f0;
}

.nbl-metric-badge strong {
    color: #ffffff;
}

/* NBL Primary Stats inside Hero */
.nbl-main-stats {
    display: flex;
    gap: 20px;
}

.nbl-stat-box {
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #e53e3e;
    /* Red accent */
    padding: 15px 20px;
    border-radius: 0 8px 8px 0;
    min-width: 120px;
}

.nbl-stat-val {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.nbl-stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    color: #a0aec0;
    letter-spacing: 1px;
}

/* Page Content */
.nbl-player-content {
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

.nbl-section-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
    text-transform: uppercase;
    color: #2d3748;
}

/* Override SportsPress Default Tables */
.nbl-sp-table-override table.sp-data-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.nbl-sp-table-override table.sp-data-table thead th {
    background-color: #2d3748;
    color: #ffffff;
    font-weight: 600;
    padding: 15px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border: none;
}

.nbl-sp-table-override table.sp-data-table tbody td,
.nbl-sp-table-override table.sp-data-table tbody th {
    padding: 15px;
    border-bottom: 1px solid #edf2f7;
    color: #4a5568;
    font-size: 0.95rem;
}

.nbl-sp-table-override table.sp-data-table tbody tr:last-child td,
.nbl-sp-table-override table.sp-data-table tbody tr:last-child th {
    border-bottom: none;
}

.nbl-sp-table-override table.sp-data-table tbody tr:hover td,
.nbl-sp-table-override table.sp-data-table tbody tr:hover th {
    background-color: #f7fafc;
}

.nbl-sp-table-override .sp-post-caption {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
}

/* Bio */
.nbl-bio-text {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    line-height: 1.8;
    color: #4a5568;
    font-size: 1.05rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nbl-hero-content {
        flex-direction: column;
        text-align: center;
    }

    .nbl-player-team {
        justify-content: center;
    }

    .nbl-player-metrics,
    .nbl-main-stats {
        justify-content: center;
    }

    .nbl-stat-box {
        min-width: 100px;
    }
}