/* ===== SPORCU PROFİL ===== */

/* Breadcrumb */
.breadcrumb-section {
  background: linear-gradient(135deg, #0b132b, #020617);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.breadcrumb a {
  color: #fca311;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: #c1121f;
}

.breadcrumb .separator {
  color: rgba(255,255,255,0.4);
}

.breadcrumb .current {
  color: #fff;
  font-weight: 600;
}

/* Player Hero */
.player-hero {
  background: linear-gradient(135deg, #020617, #0b132b);
  padding: 60px 0;
}

.player-hero-card {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  gap: 50px;
  align-items: flex-start;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.player-photo-section {
  position: relative;
  flex-shrink: 0;
}

.player-photo {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 20px;
  border: 4px solid rgba(193,18,31,0.3);
  box-shadow: 0 10px 40px rgba(193,18,31,0.3);
}

.player-photo-placeholder {
  width: 280px;
  height: 280px;
  background: linear-gradient(135deg, #334155, #1e293b);
  border-radius: 20px;
  border: 4px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
}

.potw-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #fca311, #f59e0b);
  color: #020617;
  padding: 8px 14px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(252,163,17,0.5);
  border: 2px solid rgba(255,255,255,0.3);
}

.potw-badge svg {
  width: 18px;
  height: 18px;
}

.player-info-section {
  flex: 1;
}

.player-name {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, #e5e7eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.player-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
}

.category-badge, .position-badge {
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.category-badge {
  background: linear-gradient(135deg, #c1121f, #8b0a14);
  color: #fff;
  border: 1px solid rgba(193,18,31,0.4);
}

.position-badge {
  background: rgba(59,130,246,0.15);
  color: #60a5fa;
  border: 1px solid rgba(59,130,246,0.3);
}

.player-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
  padding: 25px;
  background: rgba(15,23,42,0.6);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
}

.stat-item {
  text-align: center;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.stat-value {
  display: block;
  font-size: 1.8rem;
  color: #fca311;
  font-weight: 800;
}

.previous-club, .player-since {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-top: 15px;
  padding: 12px 18px;
  background: rgba(15,23,42,0.4);
  border-radius: 10px;
  border-left: 3px solid #fca311;
}

.previous-club svg, .player-since svg {
  color: #fca311;
  flex-shrink: 0;
}

.previous-club strong {
  color: #fff;
}

/* Achievements Section */
.achievements-section {
  background: linear-gradient(135deg, #0b132b, #020617);
  padding: 60px 0;
}

.section-title {
  font-size: 2rem;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 800;
}

.achievement-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.achievement-card {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  gap: 20px;
  align-items: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.achievement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(252,163,17,0.3);
}

.potw-card {
  border-color: rgba(252,163,17,0.3);
}

.achievement-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #fca311, #f59e0b);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #020617;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(252,163,17,0.4);
}

.achievement-info h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 700;
}

.achievement-info p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.achievement-info small {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

/* CTA Section */
.profile-cta {
  background: linear-gradient(135deg, #020617, #0b132b);
  padding: 80px 0;
}

.cta-card {
  background: linear-gradient(135deg, #c1121f, #8b0a14);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(193,18,31,0.4);
  border: 2px solid rgba(255,255,255,0.1);
}

.cta-card h2 {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 800;
}

.cta-card p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  margin-bottom: 35px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
  border: 2px solid transparent;
}

.cta-btn.primary {
  background: #fff;
  color: #c1121f;
}

.cta-btn.primary:hover {
  background: #f6f7f9;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

.cta-btn.secondary {
  background: rgba(252,163,17,0.2);
  color: #fca311;
  border-color: #fca311;
}

.cta-btn.secondary:hover {
  background: #fca311;
  color: #020617;
  transform: translateY(-3px);
}

.cta-btn.tertiary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

.cta-btn.tertiary:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 960px) {
  .player-hero-card {
    flex-direction: column;
    gap: 30px;
    padding: 30px;
  }

  .player-photo, .player-photo-placeholder {
    width: 220px;
    height: 220px;
    margin: 0 auto;
  }

  .player-name {
    font-size: 2rem;
    text-align: center;
  }

  .player-meta {
    justify-content: center;
  }

  .player-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-card h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 680px) {
  .player-hero {
    padding: 40px 0;
  }

  .player-hero-card {
    padding: 25px;
  }

  .player-photo, .player-photo-placeholder {
    width: 180px;
    height: 180px;
  }

  .player-name {
    font-size: 1.6rem;
  }

  .player-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 20px;
  }

  .stat-value {
    font-size: 1.5rem;
  }

  .cta-card {
    padding: 40px 25px;
  }

  .cta-card h2 {
    font-size: 1.5rem;
  }

  .cta-btn {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .breadcrumb {
    font-size: 0.85rem;
  }

  .player-stats-grid {
    grid-template-columns: 1fr;
  }

  .achievement-card {
    flex-direction: column;
    text-align: center;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-btn {
    width: 100%;
  }
}
