/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #0E1950;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* OWASP Security: Input validation styles */
.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: rgb(195, 5, 19);
    box-shadow: 0 0 0 2px rgba(195, 5, 19, 0.2);
}

/* OWASP Security: Secure form styling */
.secure-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.secure-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0.1);
}

/* Accessibility: Focus styles */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid rgb(195, 5, 19);
    outline-offset: 2px;
}

/* Accessibility: Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: rgb(195, 5, 19);
    color: white;
    padding: 8px;
    z-index: 100;
    border-radius: 4px;
}

.skip-link:focus {
    top: 6px;
}

/* Header Styles */
.main-header {
    background-color: #F5F5F6;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    margin-right: 15px;
}

.logo h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #0E1950;
    margin: 0;
}

.logo h1 span {
    color: rgb(195, 5, 19);
}

/* Navigation Styles */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    position: relative;
    margin-left: 30px;
}

.nav-link {
    text-decoration: none;
    color: #0E1950;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.nav-link:hover {
    color: rgb(195, 5, 19);
}

/* Dropdown Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0.1);
    border-radius: 4px;
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 8px 20px;
}

.dropdown-menu li a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: color 0.3s ease;
    display: block;
}

.dropdown-menu li a:hover {
    color: rgb(195, 5, 19);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #0E1950;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    margin-top: 80px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

.slide:nth-child(1) {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('https://img.mlbstatic.com/mlb-images/image/private/t_16x9/t_w1536/mlb/jayacmshbrbjf7cvykpn.jpg') no-repeat center center/cover;
}

.slide:nth-child(2) {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('https://img.mlbstatic.com/mlb-images/image/private/t_16x9/t_w1536/mlb/km8locagqu9xv5byr4fi.jpg') no-repeat center center/cover;
}

.slide:nth-child(3) {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('https://images.pexels.com/photos/163534/baseball-victory-game-sport-163534.jpeg') no-repeat center center/cover;
}

.slide:nth-child(4) {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('https://images.pexels.com/photos/8320932/pexels-photo-8320932.jpeg') no-repeat center center/cover;
}

.slide:nth-child(5) {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('https://images.pexels.com/photos/7238892/pexels-photo-7238892.jpeg') no-repeat center center/cover;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
    max-width: 800px;
}

.slide-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease;
}

.slide-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s both;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: rgb(195, 5, 19);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid rgb(195, 5, 19);
    animation: fadeInUp 1s ease 0.4s both;
}

.btn:hover {
    background-color: transparent;
    color: rgb(195, 5, 19);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(195, 5, 19, 0.2);
}

.btn-small {
    padding: 8px 20px;
    font-size: 14px;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 15px;
}

.prev-btn, .next-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
    background-color: rgba(195, 5, 19, 0.8);
    transform: scale(1.1);
}

/* Section Titles */
.section-title {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 60px 0 40px;
    position: relative;
    color: #0E1950;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: rgb(195, 5, 19);
}

/* Latest News Section */
.news-section:first-of-type {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.news-section:first-of-type .section-title {
    color: #fff;
}

/* Gallery Section */
.gallery-section {
    padding: 60px 0;
    position: relative;
    background: url('https://images.pexels.com/photos/1661950/pexels-photo-1661950.jpeg') no-repeat center center/cover;
    z-index: 1;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
}


.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.news-card {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.news-card.fade-out {
    opacity: 0.7;
}

.card-hover-effect {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover-effect:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.news-img {
    height: 250px;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-img img {
    transform: scale(1.1);
}

.news-content {
    padding: 25px;
}

.news-content .date {
    color: rgb(195, 5, 19);
    font-weight: 500;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.news-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #0E1950;
}

.news-content p {
    color: #555;
    margin-bottom: 20px;
}

.read-more {
    text-decoration: none;
    color: rgb(195, 5, 19);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: rgb(195, 5, 19);
    letter-spacing: 1px;
}

.read-more::after {
    content: '\2192';
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(3px);
}

/* Games Section */
.games-section {
    padding: 60px 0;
}

.games-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.game-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 1.5fr 1fr;
    padding: 20px;
    border-bottom: 1px solid #eee;
    align-items: center;
    transition: background-color 0.3s ease;
}

.game-row:last-child {
    border-bottom: none;
}

.game-row:hover {
    background-color: #f8f9fa;
}

.game-date {
    font-weight: 700;
    color: rgb(195, 5, 19);
    font-size: 18px;
}

.game-opponent {
    font-weight: 500;
    font-size: 18px;
}

.game-time {
    font-size: 16px;
    color: #66;
}

.game-location {
    font-size: 16px;
    color: #666;
}

.game-tickets {
    text-align: right;
}

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

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Footer */
.main-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-section h3 span {
    color: rgb(195, 5, 19);
}

.footer-section h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: rgb(195, 5, 19);
}

.footer-section p {
    margin-bottom: 15px;
    color: #bbb;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: rgb(195, 5, 19);
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    text-decoration: none;
    color: #bbb;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: rgb(195, 5, 19);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #333;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 16px;
}

.social-links a:hover {
    background-color: rgb(195, 5, 19);
    transform: translateY(-5px);
}

/* Fallback styles for social icons in case Font Awesome fails to load */
.social-links a::before {
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
    font-size: 16px;
    transition: all 0.3s ease;
    color: inherit;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a[href*="facebook"]::before {
    content: "FB";
    font-family: Arial, sans-serif;
    font-weight: bold;
    color: #3b5998;
}

.social-links a[href*="twitter"]::before {
    content: "TW";
    font-family: Arial, sans-serif;
    font-weight: bold;
    color: #1DA1F2;
}

.social-links a[href*="instagram"]::before {
    content: "IG";
    font-family: Arial, sans-serif;
    font-weight: bold;
    color: #E1306C;
}

.social-links a[href*="youtube"]::before {
    content: "YT";
    font-family: Arial, sans-serif;
    font-weight: bold;
    color: #FF0000;
}

/* If Font Awesome loads successfully, these will override the fallback */
.social-links .fab {
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
    font-size: 16px;
    transition: all 0.3s ease;
    color: inherit;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Force display of Font Awesome icons by using UTF-8 codes */
.fab.fa-facebook-f::before {
    content: "\f39e";
}

.fab.fa-twitter::before {
    content: "\f099";
}

.fab.fa-instagram::before {
    content: "\f16d";
}

.fab.fa-youtube::before {
    content: "\f167";
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #333;
    color: #bbb;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Us Page Styles */
.hero-about {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://img.mlbstatic.com/mlb-images/image/private/t_16x9/t_w1536/mlb/jayacmshbrbjf7cvykpn.jpg') no-repeat center center/cover;
    margin-top: 80px;
}

.hero-about .about-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-about .about-content p {
    font-size: 1.2rem;
    color: #ddd;
    max-width: 800px;
    margin: 0 auto;
}

.about-section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.mission-box, .vision-box {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-box:hover, .vision-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mission-box h3, .vision-box h3 {
    font-family: 'Montserrat', sans-serif;
    color: rgb(195, 5, 19);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.mission-box p, .vision-box p {
    color: #555;
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.value-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(195, 5, 19);
    color: white;
    border-radius: 50%;
    font-size: 28px;
}

.value-card h3 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 15px;
    color: #0E1950;
}

.value-card p {
    color: #555;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.team-member {
    text-align: center;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-img {
    height: 250px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-info {
    padding: 25px;
}

.team-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #0E1950;
}

.team-info h4 {
    color: #e74c3c;
    margin-bottom: 15px;
    font-weight: 500;
}

.team-info p {
    color: #555;
    line-height: 1.6;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(rgba(195, 5, 19, 0.9), rgba(195, 5, 19, 0.9)),
                url('https://img.mlbstatic.com/mlb-images/image/private/t_16x9/t_w1536/mlb/km8locagqu9xv5byr4fi.jpg') no-repeat center center/cover;
    text-align: center;
    color: white;
    margin: 60px 0;
}

.cta-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Roster Page Styles */
.roster-section {
    padding: 60px 0;
}

.player-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.player-card {
    text-align: center;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.player-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.player-img {
    height: 250px;
    overflow: hidden;
}

.player-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.player-card:hover .player-img img {
    transform: scale(1.1);
}

.player-info {
    padding: 25px;
}

.player-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #0E1950;
}

.player-info h4 {
    color: #e74c3c;
    margin-bottom: 15px;
    font-weight: 500;
}

.player-info p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.player-stats {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.player-stats p {
    margin-bottom: 8px;
    font-size: 14px;
}

.player-stats strong {
    color: #1a1a1a;
}

/* New Roster Page Styles */
.player-roster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.player-card-new {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    text-align: center;
}

.player-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.player-number {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #e74c3c;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 1;
}

.player-img-new {
    height: 250px;
    overflow: hidden;
    background-color: #ccc; /* Placeholder background */
}

.player-img-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.player-card-new:hover .player-img-new img {
    transform: scale(1.1);
}

.player-info-new {
    padding: 15px;
}

.player-info-new h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #0E1950;
}

.player-info-new h4 {
    color: #e74c3c;
    margin-bottom: 10px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.player-info-new p {
    color: #555;
    line-height: 1.4;
    font-size: 0.9rem;
}

/* Responsive adjustments for new roster grid */
@media screen and (max-width: 768px) {
    .player-roster-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media screen and (max-width: 576px) {
    .player-roster-grid {
        grid-template-columns: 1fr;
    }
    .player-number {
        font-size: 1rem;
        padding: 3px 8px;
    }
    .player-info-new h3 {
        font-size: 1.2rem;
    }
    .player-info-new h4 {
        font-size: 0.8rem;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    background-color: #f8f9fa;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0E1950;
    margin-bottom: 10px;
}

.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #0E1950;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Coaches Page Styles */
.coaches-section {
    padding: 60px 0;
}

.coach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.coach-card {
    text-align: center;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.coach-img {
    height: 250px;
    overflow: hidden;
}

.coach-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.coach-card:hover .coach-img img {
    transform: scale(1.1);
}

.coach-info {
    padding: 25px;
}

.coach-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #0E1950;
}

.coach-info h4 {
    color: #e74c3c;
    margin-bottom: 15px;
    font-weight: 500;
}

.coach-info p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.coach-details {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.coach-details p {
    margin-bottom: 8px;
    font-size: 14px;
}

.coach-details strong {
    color: #1a1a1a;
}

/* Schedule Page Styles */
.schedule-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 20px;
    margin: 5px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background-color: #e74c3c;
    color: white;
    border-color: #e74c3c;
}

.tab-btn.active {
    background-color: #e74c3c;
    color: white;
    border-color: #e74c3c;
}

.schedule-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.game-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 1.5fr 1fr;
    padding: 20px;
    border-radius: 8px;
    background-color: #f8f9fa;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.game-row.month-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 1.5fr 1fr;
    align-items: center;
}

.game-date {
    font-weight: 700;
    color: #e74c3c;
    font-size: 18px;
}

.game-opponent {
    font-weight: 500;
    font-size: 18px;
}

.game-time {
    font-size: 16px;
    color: #66;
}

.game-location {
    font-size: 16px;
    color: #666;
}

.game-status {
    font-weight: 500;
    color: #27ae60;
    text-align: right;
}

.practice-schedule {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.practice-day {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.practice-day:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.practice-day h3 {
    color: #e74c3c;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
}

.practice-day p {
    margin-bottom: 10px;
    line-height: 1.5;
}

/* News Page Styles */
.about-section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.news-archive {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.news-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.news-img {
    height: 250px;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-img img {
    transform: scale(1.1);
}

.news-content {
    padding: 25px;
}

.news-content .date {
    color: #e74c3c;
    font-weight: 500;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.news-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #0E1950;
}

.news-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.read-more {
    text-decoration: none;
    color: #e74c3c;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #c0392b;
    letter-spacing: 1px;
}

.read-more::after {
    content: '\2192';
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(3px);
}

.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(rgba(195, 5, 19, 0.9), rgba(195, 5, 19, 0.9)),
                url('https://img.mlbstatic.com/mlb-images/image/private/t_16x9/t_w1536/mlb/km8locagqu9xv5byr4fi.jpg') no-repeat center center/cover;
    text-align: center;
    color: white;
    margin: 60px 0;
}

.newsletter-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.newsletter-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form .form-group {
    flex: 1;
    text-align: left;
}

.newsletter-form .form-group label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    color: white;
    margin-bottom: 8px;
    font-weight: 500;
}

.newsletter-form .form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.newsletter-form .form-group input:focus {
    outline: none;
    border-color: rgb(195, 5, 19);
    box-shadow: 0 0 0 2px rgba(195, 5, 19, 0.2);
}

.newsletter-form .btn {
    align-self: flex-end;
    margin-bottom: 3px;
}

.press-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.press-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.press-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.press-content .date {
    color: #e74c3c;
    font-weight: 500;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.press-content h3 {
    font-family: 'Montserrat', sans-serif;
    color: #e74c3c;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.press-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.press-content .read-more {
    text-decoration: none;
    color: #e74c3c;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.press-content .read-more:hover {
    color: #c0392b;
    letter-spacing: 1px;
}

.press-content .read-more::after {
    content: '\2192';
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.press-content .read-more:hover::after {
    transform: translateX(3px);
}

/* Contact Page Styles */
.hero-contact {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://img.mlbstatic.com/mlb-images/image/private/t_16x9/t_w1536/mlb/jayacmshbrbjf7cvykpn.jpg') no-repeat center center/cover;
    margin-top: 80px;
}

.hero-contact .contact-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-contact .contact-content p {
    font-size: 1.2rem;
    color: #ddd;
    max-width: 800px;
    margin: 0 auto;
}

.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    font-family: 'Montserrat', sans-serif;
    color: #e74c3c;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-info p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    color: #e74c3c;
    font-size: 20px;
    margin-top: 3px;
}

.contact-text h4 {
    font-family: 'Montserrat', sans-serif;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.contact-text p {
    color: #555;
    margin-bottom: 0;
}

.contact-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-family: 'Montserrat', sans-serif;
    color: #e74c3c;
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.map-section {
    padding: 60px 0;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0.1);
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.faq-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.faq-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-family: 'Montserrat', sans-serif;
    color: #e74c3c;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.faq-item p {
    color: #555;
    line-height: 1.8;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .game-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .game-date, .game-time {
        order: 1;
    }
    
    .game-opponent {
        order: 2;
        grid-column: span 2;
    }
    
    .game-location {
        order: 3;
    }
    
    .game-tickets {
        order: 4;
        text-align: left;
    }
    
    .hero-about .about-content h1 {
        font-size: 2rem;
    }
    
    .hero-about .about-content p {
        font-size: 1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 15px 0;
    }
    
    .nav-item:not(.dropdown) .nav-link {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .dropdown > .nav-link {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .dropdown > .nav-link::after {
        content: '\25BC';
        font-size: 0.7em;
        margin-left: 8px;
        transition: transform 0.3s ease;
    }
    
    .dropdown > .nav-link.active::after {
        transform: rotate(180deg);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 20px 0 30px;
        background-color: #f8f9fa;
        text-align: center;
        margin-top: 10px;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown-menu.active {
        max-height: 300px;
    }
    
    .dropdown-menu li {
        padding: 10px 0;
    }
    
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    
    .slide-content h2 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1.2rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .game-row {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .game-tickets {
        text-align: center;
    }
}

@media screen and (max-width: 576px) {
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .slider-nav {
        bottom: 15px;
        right: 15px;
    }
    
    .prev-btn, .next-btn {
        width: 40px;
        height: 40px;
    }
}

/* Scroll to Top Button */
#scrollToTopBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 30px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: transparent; /* Transparent background */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 0; /* Remove padding */
    border-radius: 50%; /* Rounded shape */
    width: 60px; /* Standard size */
    height: 60px; /* Standard size */
    transition: all 0.3s ease-in-out; /* Smooth transition */
}

#scrollToTopBtn img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
}

#scrollToTopBtn:hover {
    transform: scale(1.1); /* Slightly enlarge on hover */
}

/* Prospect Form Styles */
.prospect-section {
    padding: 60px 0;
}

.prospect-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.prospect-form h2 {
    font-family: 'Montserrat', sans-serif;
    color: #0E1950;
    margin-bottom: 30px;
    text-align: center;
}

.prospect-form .form-group {
    margin-bottom: 25px;
}

.prospect-form .form-group label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    color: #0E1950;
    margin-bottom: 8px;
    font-weight: 500;
}

.prospect-form .form-group input,
.prospect-form .form-group select,
.prospect-form .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.prospect-form .form-group input:focus,
.prospect-form .form-group select:focus,
.prospect-form .form-group textarea:focus {
    outline: none;
    border-color: rgb(195, 5, 19);
    box-shadow: 0 0 0 2px rgba(195, 5, 19, 0.2);
}

.prospect-form .form-group input[type="number"] {
    -webkit-appearance: textfield;
}

.prospect-form .form-group input[type="number"]::-webkit-outer-spin-button,
.prospect-form .form-group input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.prospect-form .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Address fields styling */
.form-group input[type="text"][placeholder="City"],
.form-group input[type="text"][placeholder="State"],
.form-group input[type="text"][placeholder="ZIP Code"] {
    margin-top: 10px;
    display: inline-block;
    width: calc(33.333% - 10px);
    margin-right: 10px;
}

.form-group input[placeholder="State"] {
    margin-left: 10px;
}

.form-group input[placeholder="ZIP Code"] {
    margin-left: 10px;
}

@media screen and (max-width: 768px) {
    .form-group input[type="text"][placeholder="City"],
    .form-group input[type="text"][placeholder="State"],
    .form-group input[type="text"][placeholder="ZIP Code"] {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
        margin-top: 10px;
    }

    .form-group input[placeholder="State"],
    .form-group input[placeholder="ZIP Code"] {
        margin-left: 0;
    }
}

/* Height fields styling */
.form-group input[name="heightFeet"],
.form-group input[name="heightInches"] {
    display: inline-block;
    width: 48%;
    margin-right: 4%;
}

.form-group input[name="heightInches"] {
    margin-right: 0;
}

@media screen and (max-width: 768px) {
    .form-group input[name="heightFeet"],
    .form-group input[name="heightInches"] {
        width: 100%;
        margin-right: 0;
        margin-top: 10px;
    }

    .form-group input[name="heightFeet"] {
        margin-top: 0;
    }
}

/* Validation styles */
.prospect-form .form-group input.valid,
.prospect-form .form-group select.valid,
.prospect-form .form-group textarea.valid {
    border-color: #27ae60;
}

.prospect-form .form-group input.invalid,
.prospect-form .form-group select.invalid,
.prospect-form .form-group textarea.invalid {
    border-color: #e74c3c;
}

/* Error message styles */
.field-error {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

/* Success message styles */
.form-message {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-top: 30px;
}

.form-message.success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.form-message.success i {
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
}

.form-message.success h3 {
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.form-message.success p {
    margin: 0;
}

/* Consent checkbox styling */
.form-group label:has(input[type="checkbox"]) {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0;
}

.form-group label input[type="checkbox"] {
    width: auto;
    margin: 0;
    accent-color: rgb(195, 5, 19);
}

.form-group label:has(input[type="checkbox"])::before {
    content: '';
}

/* Submit button styling */
.prospect-form .btn {
    width: 100%;
    margin-top: 30px;
    padding: 15px;
    font-size: 18px;
    font-weight: 500;
}

/* Responsive adjustments for prospect form */
@media screen and (max-width: 768px) {
    .prospect-section {
        padding: 40px 0;
    }

    .prospect-form {
        padding: 20px;
    }

    .prospect-form h2 {
        font-size: 1.8rem;
    }
}

/* Mobile-specific address field layout */
@media screen and (max-width: 576px) {
    .form-group input[type="text"][placeholder="Street Address"] {
        margin-bottom: 10px;
    }
}

/* Prospect Detail Page Styles */
.prospect-detail-container {
    max-width: 1000px;
    margin: 0 auto;
}

.prospect-main-info {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 50px;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.prospect-image {
    position: relative;
    text-align: center;
}

.prospect-image img {
    width: 100%;
    max-width: 280px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.prospect-image img:hover {
    transform: scale(1.05);
}

.prospect-info h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #0E1950;
    margin-bottom: 10px;
}

.prospect-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: rgb(195, 5, 19);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.prospect-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.stat-item strong {
    font-family: 'Montserrat', sans-serif;
    color: #0E1950;
    font-weight: 600;
    margin-bottom: 5px;
}

.stat-item span {
    color: #666;
    font-weight: 500;
}

.prospect-bio {
    margin-bottom: 20px;
}

.prospect-bio h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: #0E1950;
    margin-bottom: 15px;
    border-bottom: 2px solid rgb(195, 5, 19);
    padding-bottom: 8px;
}

.prospect-bio p {
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Prospect Stats Section */
.prospect-stats-section {
    margin-bottom: 50px;
}

.prospect-stats-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: #0E1950;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.prospect-stats-section h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: rgb(195, 5, 19);
}

.stats-grid-prospect {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.stat-card-prospect {
    text-align: center;
    padding: 25px 20px;
    border-radius: 12px;
    background-color: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-card-prospect:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.stat-card-prospect .stat-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: rgb(195, 5, 19);
    margin-bottom: 8px;
}

.stat-card-prospect .stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Prospect Highlights Section */
.prospect-highlights {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 50px;
}

.prospect-highlights h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: #0E1950;
    text-align: center;
    margin-bottom: 30px;
}

.prospect-highlights ul {
    list-style: none;
    padding: 0;
}

.prospect-highlights li {
    padding: 15px 20px;
    margin-bottom: 12px;
    background-color: white;
    border-radius: 8px;
    border-left: 4px solid rgb(195, 5, 19);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.prospect-highlights li:hover {
    transform: translateX(5px);
}

.prospect-highlights li:last-child {
    margin-bottom: 0;
}

/* Prospect Navigation */
.prospect-navigation {
    text-align: center;
}

.btn-secondary {
    background-color: transparent;
    color: #0E1950;
    border: 2px solid #0E1950;
}

.btn-secondary:hover {
    background-color: #0E1950;
    color: white;
}

/* Responsive Prospect Detail Styles */
@media screen and (max-width: 768px) {
    .prospect-main-info {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }

    .prospect-info h2 {
        font-size: 2rem;
        text-align: center;
    }

    .prospect-info h3 {
        font-size: 1.3rem;
        text-align: center;
    }

    .prospect-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .prospect-bio p {
        font-size: 1rem;
        text-align: justify;
    }

    .prospect-highlights {
        padding: 30px;
    }

    .prospect-highlights h3 {
        font-size: 1.8rem;
    }

    .prospect-highlights li {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 576px) {
    .prospect-detail-container {
        padding: 0 15px;
    }

    .prospect-main-info {
        padding: 20px;
    }

    .prospect-info h2 {
        font-size: 1.8rem;
    }

    .prospect-stats-section h3 {
        font-size: 1.6rem;
    }

    .stat-card-prospect .stat-value {
        font-size: 2rem;
    }

    .stat-card-prospect .stat-label {
        font-size: 0.8rem;
    }
}

/* Prospect Page Hero Styles */
.hero-prospect {
    height: 400px;
    position: relative;
    margin-top: 80px;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('https://img.mlbstatic.com/mlb-images/image/private/t_16x9/t_w1536/mlb/tpj28jukfp59iqikv1zi.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-prospect-content {
    text-align: center;
    color: white;
    width: 90%;
    max-width: 800px;
}

.hero-prospect-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-prospect-content p {
    font-size: 1.2rem;
    margin-bottom: 0;
}
