body {
  font-family: monospace;
}

header {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("images/baseball-1.jpg");
  width: 100%;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  background-repeat: no-repeat;
  color: white;
  font-size: 20px;
  line-height: 1.5;
  padding: 40px;
  box-sizing: border-box;
}

header h1 {
  font-size: 80px;
  line-height: 1.2;
  margin: 0 0 20px 0;
}

header a {
  font-weight: 700;
  font-size: 14px;
  color: green;
  text-decoration: none;
  margin: 0;
  background-color: white;
  padding: 10px;
  display: inline-block;
}
.container {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  background-color: white;
  letter-spacing: 3px;
}

.site-footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 50px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 800px;
  margin: 0 auto;
}

.site-footer h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #f4f4f4;
}

.site-footer p {
  color: #bbb;
  margin-bottom: 25px;
  line-height: 1.5;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px auto;
  display: inline-block;
  text-align: left;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li a {
  color: #ff4d4d;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  font-size: 0.85rem;
}
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 40px;
}

.card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: grayscale(100%);
  transition: 0.3s;
}

.card:hover img {
  filter: grayscale(0%);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.player-feature {
  background: linear-gradient(#001a0f, #004d2c);
  transition: 0.3s;
  color: white;
  padding: 60px 20px;
  margin: 40px 0;
  border-radius: 15px;
}
.player-feature:hover {
  transform: scale(1.01);
  border-left: 15px solid #ff4d4d;
}
.feature-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.feature-text {
  flex: 1;
  min-width: 300px;
}

.feature-text h2 {
  color: #ff4d4d;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.feature-video {
  flex: 1;
  min-width: 300px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border: 3px solid #ff4d4d;
  border-radius: 8px;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.caption {
  font-style: italic;
  font-size: 0.9rem;
  margin-top: 10px;
  color: #bbb;
}
.stats-section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.table-title {
  text-align: center;
  color: #004d2c;
  margin-bottom: 20px;
}

.table-scroll {
  overflow-x: auto;
}

.player-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.player-table th,
.player-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.player-table th {
  background-color: #004d2c;
  color: white;
}

.player-table tr:hover {
  background-color: #f1f1f1;
}
