:root{
      --bg:#0b0f12;
      --card: rgba(255,255,255,0.04);
      --muted: rgba(255,255,255,0.65);
      --accent:#1db954; /* vivid accent */
      --glass: #1A1A1A;
      --glass-2: rgba(255,255,255,0.02);
      --radius:14px;
      --max-width:1100px;
	  --max-width-dashboard:1300px;
       
    }
  
 

.player-profile-detail.wrap {
  width: 100%;
  max-width: var(--max-width);
  margin: 110px auto;
  color: #fff;
}

.interai-dashboard-right .player-profile-detail.wrap {
	 margin: 20px auto;
	 max-width: var(--max-width-dashboard);
}

.player-profile-detail .profile {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  align-items: start;
  /*background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 30px rgba(2,6,23,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.03);*/
}

/* Left column */
.player-profile-detail .card-left {
  padding: 18px;
  background: var(--card);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.player-profile-detail .dp {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  height: 360px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.45));
}

.player-profile-detail .dp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.player-profile-detail .dp .meta {
  padding: 14px;
  backdrop-filter: blur(6px);
  background: linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.35));
  width: 100%;
  box-sizing: border-box;
  color: #fff;
  display: flex;
  gap: 10px;
  align-items: center;
}

.player-profile-detail .dp .badge {
  font-weight: 600;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
}

.player-profile-detail .quick-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.player-profile-detail .info-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}

.player-profile-detail .info-row strong {
  color: #fff;
}

.player-profile-detail .actions {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}

.player-profile-detail .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,1);
  background: var(--glass-2);
  font-weight: normal;
  font-size: 14px;
  color: #fff;
}

.player-profile-detail .btn.primary {
  background: #fff;
  color: #000;
  border: transparent;
}

.player-profile-detail .btn.ghost {
  background: transparent;
  color: var(--muted);
}

/* Right column */
.player-profile-detail .card-right {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.player-profile-detail .header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.player-profile-detail .title {
  font-size: 2.5vw;
  font-family: plusjakartasansextrabold;
}
 .player-profile-detail .title .type{   font-size: 14px;
    color: var(--muted);
    font-weight: 500;
    display: block;
    margin-top: 5px;
}

.player-profile-detail .sub {
  color: var(--muted);
  font-size: 14px;
}

.player-profile-detail .about {
  background: #1A1A1A;
  padding: 14px;
  border-radius: 10px;
  color: var(--muted);
  line-height: 1.5;
}

.player-profile-detail .details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.player-profile-detail .detail {
  background: #1A1A1A;
  padding: 12px;
  border-radius: 10px;
}

.player-profile-detail .detail h4 {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

.player-profile-detail .detail p {
  margin: 6px 0 0;
  font-weight: normal;
  font-family: plusjakartasansextrabold;
  color: #fff;
}

.player-profile-detail .media {
  display: grid;
  grid-template-columns: 1fr ;
  gap: 12px;
}

.player-profile-detail .video {
  border-radius: 10px;
  overflow: hidden;
  background: #000;
}
.player-profile-detail .video iframe {
  width: 100%!important;
  height:403px!important;
}

.player-profile-detail .video video {
  width: 100%;
  display: block;
  object-fit: cover;

}

.player-profile-detail .cta-box {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  padding: 14px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.player-profile-detail #achievements h3{
    margin: 0 0 10px 0; 
    font-size: 2vw;
        font-family: plusjakartasansextrabold;
}
.player-profile-detail .achievements {
  display: flex;
  gap: 12px;
}

.player-profile-detail .achievements .list {
  flex: 1;
  background: var(--card);
  padding: 12px;
  border-radius: 10px;
  min-height: 120px;
}

.player-profile-detail .list ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.player-profile-detail .list ul li{
    font-size:15px;
}
.player-profile-detail .socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.player-profile-detail .socials a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,0.02);
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.player-profile-detail .socials svg {
  width: 16px;
  height: 16px;
  opacity: 0.95;
}

.player-profile-detail footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}
.social-links a{
   background: var(--glass-2);
    border-radius: 100%;
    width: 50px;
    height: 50px;
    border: 0px;
    color: #fff;
    font-size: 16px;
    margin: 2px;
    display: inline-block;
    text-align: center;
    line-height: 50px;
}
.social-links a:hover{
    background:#fff;
    color:#000;
}
/* Responsive */
@media (max-width: 920px) {
  .player-profile-detail .profile {
    grid-template-columns: 1fr;
  }
  .player-profile-detail .media {
    grid-template-columns: 1fr;
  }
  .player-profile-detail .dp {
    height: 300px;
  }
}

@media (max-width: 650px) {

  .player-profile-detail .dp {
    height: 320px;
  }
  .player-profile-detail .title {
    font-size: 20px;
  }
  .player-profile-detail .achievements {
  display: flex;
  gap: 8px;
  flex-direction: column;
}
.player-profile-detail #achievements h3 {
  margin: 0 0 10px 0;
  font-size: 6vw;
}
.player-profile-detail .details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
}
 body.logged-in .interai-dashboard-mobile-header .interai-dashboard-mobile-logo img {
	filter: invert(0)!important;
  }
   body.logged-in .interai-dashboard-mobile-header .kai-manager-burger-icon img {
    filter: invert(0)!important;
  }

}
