body {
    background:#000;
    color:#fff;
}

.page-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
}

.hero { 
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}
    
.hero img { 
    width: 100%; 
    display: block; 
}

/*.hero:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.4), rgba(0,0,0,0.7));
    pointer-events: none;
}*/

.hero img.banner {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.10),
    rgba(0,0,0,0.40),
    rgba(0,0,0,0.80)
    );
    pointer-events: none;
}

.hero-content {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 2;
}

.hero-logo-box {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(0,0,0,0.5);
}

.hero-logo-box img {
    width: 75px;
    height: 75px;
    object-fit: contain;
    overflow: hidden;
}

.hero-title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

.hero-subtitle {
    margin: 4px 0 0 0;
    font-size: 14px;
    color: #d4d4d8;
    line-height: 1.4;
}

.breadcrumb-card { margin-bottom:20px; border:1px solid rgba(255,255,255,.1); background:#1A1A1A; border-radius:16px; padding:12px 16px; font-size:14px; color:#a1a1aa; }
    
.breadcrumb-card ol { margin:0; padding:0; list-style:none; display:flex; flex-wrap:wrap; align-items:center; gap:8px; }
    
.breadcrumb-card a { color:#a1a1aa; transition:color .2s ease; }
    
.breadcrumb-card a:hover { color:#fff; }
    
.breadcrumb-separator { color:#52525b; }
    
.breadcrumb-current { color:#fff; font-weight:600; }

.card { 
    background: #1A1A1A;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 20px;
}

.card h4 {
    color: #fff;
}

.combine-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 0;
}

.combine-left {
    display: flex;
    align-items: center;
    gap: 20px;
}
    
.combine-icon {
    width: 75px;
    height: 75px;
    border-radius: 16px;
    background: #111;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: .2s;
}

.combine-icon.team {
    background: #fff;
}

.combine-icon:hover {
    border-color: rgba(255,255,255,0.3);
    box-shadow: 0 0 20px rgba(255,255,255,0.15);
    background: #1f1f1f;
}

.combine-icon img {
    width: 65px;
    height: 65px;
    object-fit: contain;
}

.combine-name {
    font-size: 18px;
    font-weight: bold;
    margin-top: 4px;
    margin-bottom: 8px;
}
    
.pill {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    background: #222;
    border: 1px solid rgba(255,255,255,0.1);
    margin-right: 5px;
}
    
.actions a {
    margin-left: 10px;
}

.btn-dark { 
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    color: #fff;
}

.btn-dark:hover {
    background: #222;
}

.btn-primary-custom {
    background: #fff;
    color: #000;
    font-weight: bold;
}

.divider {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 15px;
}

.muted {
    color: #aaa;
    font-size: 12px;
}

.button:focus, .button:hover, button:focus, button:hover {
    background-color: #007aff;
}

/**** Events ****/
.top-card { 
    background:#1A1A1A;
    border:1px solid rgba(255,255,255,.1);
    border-radius:20px;
    margin-bottom:20px;
}

.top-card { 
    padding:20px 24px;
}

.top-card h2 {
    margin: 0;
    font-size: 20px;
    color: #fff;
    font-weight: 700;
}

.top-card p {
    margin: 6px 0 0;
    color: #a1a1aa;
    font-size: 14px;
}

.top-performers-grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 16px;
}

.top-performer {
    border: 1px solid rgba(255,255,255,.1);
    background: #111;
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    transition: all .2s ease;
    display: block;
}
    
.top-performer:hover {
    border-color: rgba(255,255,255,.3);
    background: #1f1f1f;
    box-shadow: 0 0 18px rgba(255,255,255,.12);
}
    
.top-headshot {
    width: 72px;
    height: 72px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 999px;
    border: 2px solid rgba(255,255,255,.2);
    background: rgba(0,0,0,.4);
}
    
.top-headshot img, .headshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
    
.top-name {
    margin-top: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}
    
.top-exercise {
    margin-top: 5px;
    color: #71717a;
    font-size: 12px;
}
    
.top-result {
    margin-top: 8px;
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
}

@media screen and (max-width: 1024px) {
    .top-performers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 640px) {
    .top-performers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .top-performer {
        padding: 12px;
    }

    .top-headshot {
        width: 64px;
        height: 64px;
    }

    .top-name {
        font-size: 13px;
    }

    .top-exercise {
        font-size: 11px;
    }

    .top-result {
        font-size: 18px;
    }
}

@media screen and (max-width: 380px) {
    .top-performers-grid {
        grid-template-columns: 1fr;
    }
}

.nav-card {
    background: #1A1A1A;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 16px;
}

.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0;
    color: #fff;
    text-decoration: none;
}

.nav-row:hover, .nav-row:focus {
    color: #fff;
    text-decoration: none;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.combine-icon {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    background: #111111;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.combine-icon img {
    width: 65px;
    height: 65px;
    object-fit: contain;
}

.combine-icon img.events {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.nav-row:hover .combine-icon, .nav-row:focus .combine-icon {
    border-color: rgba(255,255,255,0.3);
    background: #1f1f1f;
    box-shadow: 0 0 20px rgba(255,255,255,0.15);
}

.nav-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 4px;
}

.nav-text {
    font-size: 14px;
    color: #a1a1aa;
    line-height: 1.4;
}

.nav-arrow {
    font-size: 35px;
    color: #71717a;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.nav-row:hover .nav-arrow, .nav-row:focus .nav-arrow {
    color: #fff;
    transform: translateX(4px);
}

.divider {
    border-top: 1px solid rgba(255,255,255,0.1);
}

/**** Player Lists ****/
.search-card {
    background: #1A1A1A;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    padding: 16px 24px;
    margin-bottom: 20px;
}

.search-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-header-logo {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.1);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.search-header-logo img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.search-card h2 {
    margin: 0;
    font-size: 20px;
    color: #fff;
}

.search-card p {
    margin: 6px 0 16px;
    color: #a1a1aa;
    font-size: 14px;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #111;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    padding: 12px 14px;
    margin-top: 20px;
}

.search-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #71717a;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.search-box input, .search-box input:focus {
    height: auto;
    margin: 0;
    padding: 0;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    color: #fff !important;
    font-size: 14px;
    line-height: 1.5;
    outline: none;
}

.search-box input::placeholder {
    color: #71717a;
}

.player-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0;
    color: #fff;
    text-decoration: none;
}

.player-row:hover {
    color: #fff;
}

.headshot {
    width: 75px;
    height: 75px;
    overflow: hidden;
    border-radius: 999px;
    border: 2px solid rgba(255,255,255,.2);
    background: rgba(0,0,0,.4);
    flex-shrink: 0;
}

.headshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.player-school {
    margin-top: 4px;
    font-size: 14px;
    color: #a1a1aa;
}

.positions {
    margin-top: 8px;
}

.position {
    display: inline-block;
    border: 1px solid rgba(255,255,255,.1);
    background: #111;
    color: #d4d4d8;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    margin-right: 6px;
    margin-bottom: 4px;
}

.player-row:hover .nav-arrow {
    color: #fff;
    transform: translateX(4px);
}

.empty-state {
    display: none;
    border: 1px dashed rgba(255,255,255,.1);
    background: #111;
    border-radius: 12px;
    padding: 36px;
    text-align: center;
}

.empty-state h3 {
    color: #fff;
    font-size: 18px;
    margin: 0;
}

.empty-state p {
    color: #a1a1aa;
    font-size: 14px;
    margin-top: 8px;
}

/**** Registration ****/
.nav-card h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.waiver {
    background:rgba(0,0,0,0.3);
    border:1px solid rgba(255,255,255,0.1);
    border-radius:12px;
    padding:15px;
    font-size:13px;
    color:#ccc;
    line-height:1.6;
    margin-bottom:15px;
}

.waiver strong {
    display: block;
    margin-top: 10px;
    color: #fff;
}

label {
    color: #aaa;
    font-size: 14px;
}

input, select {
    background: #111 !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    color: #fff !important;
    border-radius: 10px !important;
}

input:focus, select:focus {
    border-color: #fff !important;
}

.button-primary {
    background: #fff;
    color: #000;
    font-weight: bold;
    border-radius: 12px;
}

.breaking-news-container {
    display: table;
    width: 100%;
    min-height: 56px;
    
    /*background: #0a1f44;
    background: -webkit-linear-gradient(left, #0a1f44 0%, #0d2c6c 50%, #123a8c 100%);
    background: linear-gradient(to right, #0a1f44 0%, #0d2c6c 50%, #123a8c 100%);*/

    background: #d9d9d9;
    background: -webkit-linear-gradient(left, #f2f2f2 0%, #d9d9d9 50%, #bfbfbf 100%);
    background: linear-gradient(to right, #f2f2f2 0%, #d9d9d9 50%, #bfbfbf 100%);

    border-top: 3px solid #c8102e;
    border-bottom: 3px solid #c8102e;
    border-right: 3px solid #c8102e;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    font-family: Arial, sans-serif;
    table-layout: fixed;
}

.breaking-label-wrap {
    display: table-cell;
    width: 100px; /*220px;*/
    vertical-align: middle;
    
    /*background: #c8102e;
    background: -webkit-linear-gradient(top, #c8102e 0%, #a50d25 100%);
    background: linear-gradient(to bottom, #c8102e 0%, #a50d25 100%);
    color: #ffffff;*/

    background: #c8102e;
    background: -webkit-linear-gradient(top, #c8102e 0%, #a50d25 100%);
    background: linear-gradient(to bottom, #c8102e 0%, #a50d25 100%);

    padding: 0 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    box-shadow: inset -2px 0 0 rgba(255,255,255,0.15);
}

.breaking-live-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 10px;
    background: #ffffff;
    border-radius: 50%;
    vertical-align: middle;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.2);
}

.breaking-label {
    display: inline-block;
    font-size: 15px;
    line-height: 56px;
    vertical-align: middle;
}

.breaking-headline {
    display: table-cell;
    vertical-align: middle;
    padding: 0 20px;
    /*color: #ffffff;*/
    color: #333;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
    /*text-shadow: 0 1px 2px rgba(0,0,0,0.5);*/
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/**** Player Profiles ****/
.pt-card {
    background: #1A1A1A;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 20px;
}

.pt-section-title {
    margin: 0 0 20px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.pt-headshot-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.pt-headshot {
    width: 200px;
    height: 200px;
    overflow: hidden;
    border-radius: 999px;
    border: 2px solid rgba(255,255,255,.2);
    background: rgba(0,0,0,.4);
    display: flex;
    align-items: center;
    justify-content: center;
}
    
.pt-headshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pt-info-box, .pt-school-box {
    background: #111;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 16px;
}

.pt-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: #71717a;
}

.pt-value {
    margin-top: 8px;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}
    
.pt-school-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 12px;
}

.pt-school-icon {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.1);
    background: #fff; /*rgba(0,0,0,.4);*/
    flex-shrink: 0;
}
    
.pt-school-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}
    
.pt-school-name {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}
    
.pt-school-location {
    margin-top: 4px;
    font-size: 14px;
    color: #a1a1aa;
}

.pt-testing-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: #111;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 16px;
}
    
.pt-testing-label {
    font-size: 14px;
    font-weight: 500;
    color: #d4d4d8;
}
    
.pt-testing-value {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    text-align: right;
}

.pt-live-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.pt-muted {
    margin: 0;
    color: #a1a1aa;
    font-size: 14px;
    line-height: 1.5;
}

.pt-live-badge{
    display: inline-block;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(0,0,0,.3);
    padding: 4px 12px;
    font-size: 12px;
    color :#d4d4d8;
    white-space: nowrap;
}
    
.pt-table {
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.1);
}

.pt-table-head,.pt-table-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 12px;
    padding: 14px 16px;
    align-items: center;
}

.pt-table-head {
    border-bottom: 1px solid rgba(255,255,255,.1);
    background: rgba(0,0,0,.4);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: #71717a;
}
    
.pt-table-row {
    border-bottom: 1px solid rgba(255,255,255,.1);
    color: #d4d4d8;
    font-size: 14px;
}
    
.pt-table-row:last-child {
    border-bottom: 0;
}

.pt-event,.pt-best {
    font-weight: 700;
    color: #fff;
}

.pt-unlock-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
    
.pt-unlock-button {
    display: inline-block;
    border-radius: 12px;
    background :#fff;
    color: #000;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}
    
.pt-unlock-button:hover {
    color: #000;
    opacity: .9;
}

.pt-locked-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
    margin-top: 20px;
}

.pt-locked-card {
    background: #111;
    border: 1px dashed rgba(255,255,255,.1);
    border-radius: 14px;
    padding: 16px;
}

.pt-lock-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(0,0,0,.4);
    font-size: 22px;
    margin-bottom: 12px;
}

.pt-locked-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.pt-locked-sub {
    margin-top: 8px;
    font-size: 12px;
    color: #71717a;
}

/**** Footer ****/
.cws-footer {
    margin-top: 24px;
    width: 100%;
    background: #1A1A1A;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    text-align: center;
    padding: 40px 24px;
    box-sizing: border-box;
}

.cws-footer-logo img {
    max-width: 250px;
    width: 100%;
    height: auto;
    margin-bottom: 24px;
}

.cws-social-links {
    display:flex;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
}

.cws-social-links a {
    width:42px;
    height:42px;
    border-radius:50%;
    background:#111;
    border:1px solid rgba(255,255,255,.1);
    color:#d4d4d8;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.2s;
}

.cws-social-links a:hover {
    color:#fff;
    border-color:rgba(255,255,255,.3);
    background:#1f1f1f;
    box-shadow:0 0 18px rgba(255,255,255,.12);
}
    
@media screen and (max-width:900px) {
    .pt-locked-grid {
        grid-template-columns: repeat(2,1fr);
    }
}
    
@media screen and (max-width:640px){
    .pt-hero-content{bottom:12px;left:12px;gap:12px}.pt-hero-logo{width:64px;height:64px}.pt-hero-logo img{width:50px;height:50px}
    .pt-hero-title{font-size:20px}.pt-hero-subtitle{font-size:12px}.pt-school-row,.pt-testing-row,.pt-unlock-head{align-items:flex-start}
    .pt-testing-row,.pt-unlock-head{flex-direction:column}.pt-testing-value{text-align:left}.pt-table-head{display:none}.pt-table-row{display:block}
    .pt-table-row>div{margin-bottom:10px}.pt-table-row>div:last-child{margin-bottom:0}.pt-mobile-label{display:block;margin-bottom:3px;font-size:10px;text-transform:uppercase;letter-spacing:.16em;color:#71717a}
    .pt-locked-grid{grid-template-columns:1fr}
}

@media screen and (min-width:641px) {
    .pt-mobile-label {
        display :none;
    }
}

@media screen and (max-width: 640px) {
    .hero-content {
        bottom: 12px;
        left: 12px;
        gap: 12px;
    }

    .hero-logo-box {
        width: 64px;
        height: 64px;
    }

    .hero-logo-box img {
        width: 50px;
        height: 50px;
    }

    .hero-title {
        font-size: 20px;
    }

    .hero-subtitle {
        font-size: 12px;
    }

    .nav-row {
        gap: 12px;
    }

    .nav-left {
        gap: 12px;
    }

    .combine-icon {
        width: 75px;
        height: 75px;
    }

    .breaking-news-container {
        display: block;
    }

    .breaking-label-wrap, .breaking-headline {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    .breaking-label-wrap {
        min-height: 44px;
        padding: 0 14px;
    }

    .breaking-label {
        line-height: 44px;
        font-size: 13px;
    }

    .breaking-headline {
        padding: 12px 14px;
        font-size: 15px;
        white-space: normal;
        overflow: visible;
        text-overflow: initial;
    }
}

@media screen and (min-width: 641px) {
    .pt-live-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}