/* Social Icon Styles */
.social-icons, .footer-social-icons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 1.2rem;
}
.footer-social-icons {
  margin: 2rem 0 1rem 0;
}
.icon-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 8px;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 1px 4px rgba(30,60,114,0.10);
}
.icon-img.hudl {
  width: 44px;
  height: 36px;
}
.icon-img:hover, .icon-img:focus {
  box-shadow: 0 4px 16px rgba(30,60,114,0.18);
  transform: scale(1.08);
}
/* Modal Arrow Navigation */
.reel-modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  color: #1e3c72;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(30,60,114,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s;
}
.reel-modal-arrow.left {
  left: 10px;
}
.reel-modal-arrow.right {
  right: 10px;
}
.reel-modal-arrow:hover {
  background: #e0e6f6;
}
.reel-modal-content {
  position: relative;
}
/* --- Reels Thumbnails & Modal --- */
.reels-thumbnails {
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}
.reel-thumb-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  outline: none;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(30,60,114,0.15);
  transition: box-shadow 0.2s;
}
.reel-thumb-btn:focus, .reel-thumb-btn:hover {
  box-shadow: 0 4px 16px rgba(30,60,114,0.25);
}
.reel-thumb {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 1px 4px rgba(30,60,114,0.12);
}

/* Modal Styles */
.reel-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30, 44, 70, 0.75);
  justify-content: center;
  align-items: center;
  transition: opacity 0.2s;
}
.reel-modal.active {
  display: flex;
}
.reel-modal-content {
  background: #111;
  border-radius: 16px;
  padding: 0.5rem;
  box-shadow: 0 8px 32px rgba(30,60,114,0.25);
  max-width: 98vw;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.reel-modal video {
  width: 75vw;
  max-width: 600px;
  max-height: 80vh;
  border-radius: 12px;
  background: #000;
}
.reel-modal-close {
  margin-top: 0.5rem;
  background: #fff;
  color: #1e3c72;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(30,60,114,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.reel-modal-close:hover {
  background: #e0e6f6;
}
body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f5f6fa;
  color: #222;
}
header {
  background: linear-gradient(90deg, #1e3c72 0%, #2a5298 100%);
  color: #fff;
  padding: 2rem 1rem 1.5rem 1rem;
  text-align: center;
}
.profile-pic {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(30,60,114,0.2);
}
h1 {
  margin: 0.2em 0 0.1em 0;
  font-size: 2.2em;
}
.intro {
  font-size: 1.1em;
  margin-bottom: 0.5em;
  color: #e0e6f6;
}
main {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
}
section {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(30,60,114,0.07);
  margin-bottom: 2rem;
  padding: 1.5rem 1.2rem;
}
section h2 {
  margin-top: 0;
  color: #1e3c72;
  font-size: 1.4em;
}
.videos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.videos iframe, .videos video {
  width: 500px;
  height: 300px;
  border-radius: 8px;
  border: none;
  background: #000;
}
.stats-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1em;
}
.stats-table th, .stats-table td {
  padding: 0.7em 1em;
  text-align: center;
  border-bottom: 1px solid #e0e6f6;
}
.stats-table th {
  background: #f0f4fa;
  color: #1e3c72;
}
.training-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.training-list li {
  margin-bottom: 1.2em;
  padding-left: 2em;
  position: relative;
}
.training-list li:before {
  content: '🏀';
  position: absolute;
  left: 0;
  top: 0.1em;
}
.contact {
  margin-top: 1.5em;
  text-align: center;
}
.contact a {
  color: #2a5298;
  text-decoration: none;
  font-weight: bold;
}
@media (max-width: 700px) {
  .videos {
    flex-direction: column;
    align-items: center;
  }
  .videos iframe, .videos video {
    width: 100%;
    max-width: 500px;
    height: 300px;
  }
  main {
    padding: 0 0.2rem;
  }
}
