*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:system-ui,-apple-system,sans-serif;
}

body{
  background:#f4f6f9;
  color:#111;
}


a {
  text-decoration: none;
  color: inherit;
}

/* ================= HEADER ================= */
.team-header{
  background:linear-gradient(120deg,#061a46,#0a2f85);
  color:#fff;
  padding:22px 30px 80px;
  position:relative;
}

.breadcrumb{
  font-size:14px;
  opacity:.85;
}

.breadcrumb span{margin:0 6px}

.teams-strip{
  gap:14px;
  margin:22px 0 30px;
}

.teams-strip::-webkit-scrollbar{display:none}

.team-icon{
  min-width:70px;
  height:70px;
  background:#071c4d;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}

.team-icon img{
  width:100%;
  height:100%;
  object-fit:contain;
  border-radius:12px;
}

.team-icon span{
  position:absolute;
  top:6px;
  right:6px;
  width:18px;
  height:18px;
  background:#0a2f85;
  border-radius:50%;
  font-size:12px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.team-icon.active{
  outline:2px solid #ffffff55;
}

.logo-wrap{
  width:140px;
  height:140px;
  border-radius:50%;
  background:#071c4d;
  display:flex;
  align-items:center;
  justify-content:center;
}

.logo-wrap img{
  width:100%;
  height:100%;
  object-fit:contain;
  border-radius:50%;
}

.left h1{
  font-size:40px;
  margin:14px 0 10px;
}

.titles{
  background:#ffffff1a;
  padding:8px 14px;
  border-radius:20px;
  display:inline-block;
  margin-bottom:18px;
}

.official-btn{
  background:#ff4d30;
  padding:12px 18px;
  border-radius:6px;
  color:#fff;
  text-decoration:none;
  font-weight:600;
}

.right{
  background:#071c4d;
  padding:22px 26px;
  border-radius:12px;
  width:100%;
}

.info-row{
  display:flex;
  gap:16px;
  padding:12px 0;
  border-bottom:1px solid #ffffff1a;
}

.info-row span{
  color:#fbbf24;
  min-width:70px;
  font-weight:600;
}

/* Tabs */
.tabs-wrap{
  position:absolute;
  bottom:-24px;
  left:50%;
  transform:translateX(-50%);
  width:100%;
  display:flex;
  justify-content:center;
}

.tabs{
  background:#fff;
  padding:6px 16px;
  border-radius:30px;
  display:flex;
  gap:22px;
  box-shadow:0 10px 30px rgba(0,0,0,.25);
  flex-wrap:wrap;
}

.tabs button{
  border:none;
  background:none;
  padding:10px 8px;
  font-weight:600;
  color:#9aa0a6;
}

.tabs .active{color:#000}

/* ================= SQUAD ================= */
.squad-section{
  padding-top:80px;
}

.squad-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:24px;
}

.season-select{
  padding:10px 14px;
  border-radius:6px;
  border:1px solid #d0d5dd;
}

.player-card{
  background:#fff;
  border-radius:14px;
  padding:14px;
  text-align:center;
  position:relative;
  transition:.25s ease;
}

.player-card:hover{
  transform:translateY(-6px);
  box-shadow:0 10px 24px rgba(0,0,0,.12);
}

.player-card img{
  width:100%;
  height:280px;
  object-fit:cover;
  border-radius:10px;
}

.player-card h4{
  margin-top:12px;
  font-size:16px;
  font-weight:700;
}

.player-card p{
  font-size:14px;
  opacity:.75;
}

.player-card i{margin-right:6px}

/* captain / vc */
.captain{border:2px solid #fbbf24}
.vice-captain{border:2px dashed #60a5fa}

.role-badge{
  position:absolute;
  top:12px;
  left:12px;
  background:#0a2f85;
  color:#fff;
  width:30px;
  height:30px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
}

.group-title{
  font-size:26px;
  margin-bottom:22px;
}

/* Mobile tweaks */
@media(max-width:768px){
  .left h1{font-size:28px}
  .logo-wrap{width:110px;height:110px}
  .player-card img{height:240px}
}
