/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(240, 240, 240, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1.5rem;
}

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

.nav-menu a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-menu a:hover {
    color: #1a1a1a;
    background: rgba(255, 215, 0, 0.1);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #1a1a1a;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    color: #ffd700;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        align-items: flex-start;
        padding-top: 90px;
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.hero-text h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-primary, .btn-secondary {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #ffd700;
    color: #1a1a1a;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
    background: #ffed4a;
}

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

.btn-secondary:hover {
    background: #ffd700;
    color: #1a1a1a;
}

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

.hero-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.image-placeholder {
    width: 100%;
    max-width: 400px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    margin: 0 auto;
}

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.image-placeholder p {
    font-size: 1.1rem;
    opacity: 0.8;
}

#player-photo {
    display: block;
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.image-placeholder {
    display: none;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1a365d;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: #ffd700;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Profile Section */
.profile {
    background: #f8fafc;
}

.profile-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.profile-info h3 {
    font-size: 1.8rem;
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.profile-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 2rem;
}

.profile-details {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
}

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

.label {
    font-weight: 600;
    color: #2d3748;
}

.value {
    color: #4a5568;
}

.achievements {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.achievements h3 {
    font-size: 1.5rem;
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.achievement-list {
    list-style: none;
}

.achievement-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: #4a5568;
}

.achievement-list i {
    color: #ffd700;
    font-size: 1.1rem;
}

/* Statistics Section */
.stats {
    background: white;
}

/* Special mobile layout for 5 stat cards */
@media (max-width: 768px) {
    .stats-section .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 0.75rem;
    }
    
    .stats-section .stats-grid .stat-card:nth-child(5) {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
}

.stats-section {
    margin-bottom: 3rem;
}

.stats-section h3 {
    font-size: 1.8rem;
    color: #1a365d;
    margin-bottom: 2rem;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: #1a1a1a;
    color: #ffd700;
    padding: 2rem 1rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid #ffd700;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Pitch Info */
.pitch-info {
    margin-bottom: 3rem;
}

.velocity-section h3 {
    font-size: 1.8rem;
    color: #1a365d;
    margin-bottom: 2rem;
    text-align: center;
}

.pitch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.pitch-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.pitch-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

.pitch-type {
    font-weight: 600;
    color: #2d3748;
}

.velocity {
    font-weight: 700;
    color: #1a1a1a;
}

/* Career Stats Table */
.career-stats h3 {
    font-size: 1.8rem;
    color: #1a365d;
    margin-bottom: 2rem;
    text-align: center;
}

.table-responsive {
    overflow-x: auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stats-table {
    width: 100%;
    border-collapse: collapse;
}

.stats-table th,
.stats-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.stats-table th {
    background: #1a1a1a;
    color: #ffd700;
    font-weight: 600;
    font-size: 0.9rem;
}

.stats-table tr:hover {
    background: #f8fafc;
}

.total-row {
    background: #f1f5f9 !important;
    border-top: 2px solid #ffd700;
}

.total-row td {
    font-weight: 600;
    color: #1a365d;
}

/* Videos Section */
.videos {
    background: #f8fafc;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.video-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
}

.video-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffd700;
}

.video-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.video-placeholder p {
    font-size: 1.1rem;
    font-weight: 600;
}

.video-item h4 {
    padding: 1rem 1.5rem 0.5rem;
    color: #1a365d;
    font-size: 1.2rem;
    font-weight: 600;
}

.video-item p {
    padding: 0 1.5rem 1.5rem;
    color: #4a5568;
    font-size: 0.9rem;
}

.video-instructions {
    background: #e6fffa;
    border: 1px solid #38b2ac;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.video-instructions p {
    color: #2d3748;
    margin: 0;
}

/* Academics Section */
.academics {
    background: white;
}

.academic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.academic-info h3,
.academic-goals h3 {
    font-size: 1.8rem;
    color: #1a365d;
    margin-bottom: 2rem;
}

.gpa-display {
    text-align: center;
    background: #1a1a1a;
    color: #ffd700;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 2px solid #ffd700;
}

.gpa-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.gpa-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.test-scores {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.test-scores h4 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.score-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.score-item:last-child {
    border-bottom: none;
}

.test-name {
    font-weight: 600;
    color: #2d3748;
}

.score {
    font-weight: 700;
    color: #1a1a1a;
}

.course-info {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 10px;
}

.course-info h4 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.course-info ul {
    list-style: none;
}

.course-info li {
    padding: 0.25rem 0;
    color: #4a5568;
}

.course-info li::before {
    content: '▸';
    color: #ffd700;
    margin-right: 0.5rem;
    font-weight: bold;
}

.interest-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.interest-item h4 {
    color: #1a365d;
    margin-bottom: 0.75rem;
}

.interest-item p {
    color: #4a5568;
    line-height: 1.6;
}

.interest-item ul {
    list-style: none;
    margin-top: 0.75rem;
}

.interest-item li {
    padding: 0.25rem 0;
    color: #4a5568;
}

.interest-item li::before {
    content: '✓';
    color: #38a169;
    margin-right: 0.5rem;
    font-weight: bold;
}

/* Events Section */
.events {
    background: white;
    padding: 80px 0;
}

.event-card {
    background: #f8fafc;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #ffd700;
    max-width: 800px;
    margin: 0 auto;
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.event-header h3 {
    color: #1a365d;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.event-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4a5568;
    font-weight: 600;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.event-date i {
    color: #ffd700;
}

.event-details {
    margin-bottom: 1.5rem;
}

.event-info {
    margin-bottom: 1.5rem;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #4a5568;
}

.event-item i {
    color: #ffd700;
    font-size: 1rem;
    width: 20px;
}

.event-description p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.event-cta {
    background: #1a1a1a;
    color: #ffd700;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 1.5rem;
}

.event-cta p {
    margin: 0;
    font-weight: 600;
}

.phone-number {
    color: #ffd700 !important;
    text-decoration: none !important;
    font-weight: 600;
}

.event-cta .phone-number {
    color: #ffd700 !important;
}

.event-cta strong .phone-number {
    color: #ffd700 !important;
}

/* Additional specificity to override any blue text */
#events .event-cta .phone-number,
#events .event-cta strong .phone-number,
.event-card .event-cta .phone-number {
    color: #ffd700 !important;
}

/* Mobile-specific phone number styling */
@media (max-width: 768px) {
    .phone-number,
    span.phone-number,
    .phone-number:link,
    .phone-number:visited,
    .phone-number:hover,
    .phone-number:active {
        color: #ffd700 !important;
        background: none !important;
        border: none !important;
        padding: 0 !important;
        text-decoration: none !important;
        font-weight: 600 !important;
    }
    
    .event-cta .phone-number,
    .event-cta strong .phone-number,
    #events .event-cta .phone-number,
    #events .event-cta strong .phone-number,
    .event-cta span.phone-number,
    .event-cta strong span.phone-number {
        color: #ffd700 !important;
        background: none !important;
        border: none !important;
    }
    
    /* Override any link styling on mobile */
    .event-cta a.phone-number,
    .event-cta strong a.phone-number,
    a[href^="tel:"],
    a[href*="604"] {
        color: #ffd700 !important;
        text-decoration: none !important;
        background: none !important;
    }
    
    /* Force override for any auto-detected phone links */
    #events a,
    #events a:link,
    #events a:visited,
    #events a:hover,
    #events a:active {
        color: inherit !important;
    }
    
    #events .event-cta a,
    #events .event-cta a:link,
    #events .event-cta a:visited {
        color: #ffd700 !important;
    }
    
    /* Social links mobile styling */
    .social-links {
        gap: 1rem;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

.schedule-section {
    margin: 2rem 0;
}

.schedule-section h4 {
    color: #1a365d;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

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

.game-item {
    background: white;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid #ffd700;
    transition: transform 0.2s ease;
}

.game-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.game-date {
    font-weight: 700;
    color: #1a365d;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.game-time {
    color: #ffd700;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    background: #1a1a1a;
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    display: inline-block;
}

.game-field {
    color: #4a5568;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Contact Section */
.contact {
    background: #f8fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-details {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item i {
    color: #ffd700;
    font-size: 1.1rem;
    width: 20px;
}

.contact-item strong {
    color: #2d3748;
    margin-right: 0.5rem;
}

.contact-item span {
    color: #4a5568;
}

/* Contact Form */
.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
    font-size: 1.8rem;
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d3748;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
}

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

.contact-form .btn-primary {
    width: 100%;
    background: #1a1a1a;
    color: #ffd700;
    border: 2px solid #ffd700;
    cursor: pointer;
    font-size: 1rem;
}

.contact-form .btn-primary:hover {
    background: #ffd700;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    color: #ffd700;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-info p {
    opacity: 0.8;
    margin-bottom: 0.25rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: flex-end;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-social {
    text-align: center;
    margin: 2rem 0;
}

.footer-social h4 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid #ffd700;
    border-radius: 50%;
    color: #ffd700;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ffd700;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(240, 240, 240, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        z-index: 999;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        padding: 90px 0 40px;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-image {
        order: 1;
        margin-bottom: 1rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 0.5rem;
    }
    
    .hero-text h2 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        opacity: 0.9;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin-bottom: 1.5rem;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .stat-item {
        padding: 0.75rem 0.5rem;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 8px;
    }
    
    .stat-number {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 0.25rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
        opacity: 0.9;
    }
    
    #player-photo {
        max-width: 250px;
        height: auto;
        margin: 0 auto;
        display: block;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    }
    
    .hero-buttons {
        gap: 0.75rem;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .profile-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        max-width: 100%;
    }
    
    .stat-card {
        padding: 1rem 0.75rem;
    }
    
    .stat-value {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .pitch-grid,
    .pitch-list {
        grid-template-columns: 1fr;
    }
    
    .pitch-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .pitch-type {
        font-size: 1.1rem;
        font-weight: 600;
    }
    
    .velocity {
        font-size: 0.9rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-item {
        padding: 1rem 0;
        flex-wrap: wrap;
    }
    
    .contact-item div {
        flex: 1;
        min-width: 200px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .footer-links a {
        padding: 0.5rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        max-width: 100% !important;
    }
    
    .video-item iframe {
        height: 250px;
    }
    
    .video-item h4 {
        font-size: 1.1rem;
        padding: 1rem 1rem 0.5rem;
    }
    
    .video-item p {
        font-size: 0.9rem;
        padding: 0 1rem 1rem;
    }
    
    .event-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .event-header h3 {
        font-size: 1.5rem;
    }
    
    .event-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .event-item {
        flex-wrap: wrap;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .game-item {
        padding: 0.75rem;
    }
    
    .schedule-section h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero {
        padding: 80px 0 30px;
    }
    
    .hero-text h1 {
        font-size: 1.7rem;
        line-height: 1.1;
        margin-bottom: 0.25rem;
    }
    
    .hero-text h2 {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        margin-bottom: 1rem;
        max-width: 350px;
    }
    
    .stat-item {
        padding: 0.6rem 0.4rem;
        background: rgba(255, 255, 255, 0.12);
    }
    
    .stat-number {
        font-size: 1.2rem;
        margin-bottom: 0.15rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    #player-photo {
        max-width: 220px;
        border-radius: 12px;
    }
    
    .hero-buttons {
        gap: 0.5rem;
        max-width: 350px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .stat-card {
        padding: 0.75rem 0.5rem;
    }
    
    .stat-value {
        font-size: 1.4rem;
        margin-bottom: 0.25rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 12px 16px;
        font-size: 0.9rem;
        border-radius: 25px;
    }
    
    #player-photo {
        max-width: 280px;
    }
    
    .profile-info h3,
    .achievements h3 {
        font-size: 1.3rem;
    }
    
    .profile-info p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .contact-item i {
        margin-bottom: 0.25rem;
    }
    
    .stats-table {
        font-size: 0.8rem;
    }
    
    .stats-table th,
    .stats-table td {
        padding: 0.5rem 0.25rem;
    }
    
    .video-item iframe {
        height: 200px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Better touch targets for mobile */
@media (max-width: 768px) {
    .nav-menu a,
    .btn-primary,
    .btn-secondary,
    .contact-form button {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hamburger {
        padding: 10px;
        min-height: 44px;
        min-width: 44px;
    }
    
    .contact-form input,
    .contact-form textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Extra mobile improvements for hero */
@media (max-width: 375px) {
    .hero-container {
        padding: 0 15px;
    }
    
    .hero-stats {
        max-width: 320px;
    }
    
    .hero-text h1 {
        font-size: 1.5rem;
    }
    
    .hero-text h2 {
        font-size: 0.9rem;
    }
    
    #player-photo {
        max-width: 200px;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
}

/* Improve table scrolling on mobile */
@media (max-width: 768px) {
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 10px;
    }
    
    .stats-table {
        min-width: 500px;
        white-space: nowrap;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Print Styles */
@media print {
    .navbar,
    .footer {
        display: none;
    }
    
    .hero {
        background: white;
        color: #333;
        page-break-after: always;
    }
    
    section {
        page-break-inside: avoid;
    }
}
