* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background: linear-gradient(135deg, #000000 0%, #000 100%);
    color: rgb(204, 102, 0);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.tagline {
    font-size: 0.9rem;
    color: #f0f0f0;
    font-style: italic;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
    font-size: 1.1rem;
}

.nav-links a:hover {
    color: #FFD700;
}

/* Hero Section */
/* Hero Section - Carousel */
.hero {
    position: relative;
    color: white;
    padding: 150px 20px;
    text-align: center;
    overflow: hidden;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.carousel-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;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: bold;
}

.hero-tagline {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    font-style: italic;
    color: #cc6600;
}

.hero-description {
    max-width: 900px;
    margin: 2rem auto;
    font-size: 1.2rem;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #cc6600;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.hero-button:hover {
    background: #ff8800;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.donate-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a472a;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    border: 2px solid #FFD700;
    animation: pulse 2s infinite;
}

.donate-button:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6);
}

.heart-icon {
    display: inline-block;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    }
    50% {
        box-shadow: 0 5px 30px rgba(255, 215, 0, 0.7);
    }
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    10%, 30% {
        transform: scale(1.1);
    }
    20%, 40% {
        transform: scale(1);
    }
}

/* Carousel Navigation Buttons */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(204, 102, 0, 0.7);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    z-index: 4;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.carousel-nav:hover {
    background: rgba(204, 102, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: 20px;
}

.carousel-nav.next {
    right: 20px;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.indicator.active {
    background: #cc6600;
    border-color: #cc6600;
    transform: scale(1.3);
}

/* Section Styling */
section {
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #000000;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #cc6600;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* About Section */
.about-section {
    background: white;
}

.about-intro {
    text-align: center;
    font-size: 1.3rem;
    color: #333;
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.9;
    font-weight: 400;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid #e0e0e0;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border-color: #cc6600;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.4rem;
    color: #1a472a;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

/* Coaches Section */
.coaches-section {
    background: linear-gradient(to bottom, #f8f9fa 0%, #e8e9ea 100%);
}

.coaches-lineup {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.coach-position {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 320px;
    flex: 0 1 320px;
    transition: transform 0.3s ease;
}

.coach-position:hover {
    transform: translateY(-10px);
}

.coach-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid #cc6600;
    background: linear-gradient(135deg, #000000 0%, #cc6600 100%);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    margin-bottom: 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coach-circle::before {
    content: '👤';
    font-size: 80px;
    position: absolute;
    opacity: 0.3;
    z-index: 1;
}

.coach-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.coach-info {
    text-align: center;
}

.coach-info h3 {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.coach-title {
    color: #fff;
    font-weight: bold;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    background: #cc6600;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    display: inline-block;
    letter-spacing: 1px;
    box-shadow: 0 3px 10px rgba(204, 102, 0, 0.3);
}

.coach-bio {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

/* Players Section */
/* Players Section */
.players-section {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 20px 100px;
}

.section-subtitle {
    font-size: 2.5rem;
    color: #1a472a;
    font-weight: bold;
    text-align: center;
    margin: 1rem 0;
}

.players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 4rem auto 0;
    padding: 0 2rem;
}

.player-card {
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.player-card:nth-child(1) { animation-delay: 0.1s; }
.player-card:nth-child(2) { animation-delay: 0.2s; }
.player-card:nth-child(3) { animation-delay: 0.3s; }
.player-card:nth-child(4) { animation-delay: 0.4s; }
.player-card:nth-child(5) { animation-delay: 0.5s; }
.player-card:nth-child(6) { animation-delay: 0.6s; }
.player-card:nth-child(7) { animation-delay: 0.7s; }
.player-card:nth-child(8) { animation-delay: 0.8s; }
.player-card:nth-child(9) { animation-delay: 0.9s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.player-card:hover {
    transform: translateY(-10px);
}

.player-card-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(135deg, #000000 0%, #cc6600 100%);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    border: 4px solid #cc6600;
}

.player-card:hover .player-card-image {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0);
    transform: scale(1.05);
}

.player-card-image::before {
    content: '';
    font-size: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
    z-index: 1;
}

.player-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.player-card:hover .player-card-image img {
    transform: scale(1.1);
}

.player-card-name {
    font-size: 1.3rem;
    color: #000000;
    font-weight: bold;
    margin: 0;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.player-card:hover .player-card-name {
    color: #cc6600;
}



/* Sponsors Section */
.sponsors-section {
    background: #f8f9fa;
    padding: 6rem 0;
}

.sponsor-tiers {
    margin: 3rem 0;
}

.sponsor-tier {
    margin-bottom: 3.5rem;
}

.sponsor-tier-title {
    text-align: center;
    font-size: 1.4rem;
    color: #1a472a;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin: 0;
}

/* MVP tier: largest, most prominent */
.sponsor-tier-mvp .sponsors-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.sponsor-tier-mvp .sponsor-card {
    min-height: 240px;
    padding: 2.5rem;
    border-color: #cc6600;
    box-shadow: 0 8px 20px rgba(204, 102, 0, 0.15);
}

.sponsor-tier-mvp .sponsor-logo img {
    max-height: 180px;
}

/* All-Star tier: medium */
.sponsor-tier-all-star .sponsor-card {
    min-height: 200px;
}

.sponsor-tier-all-star .sponsor-logo img {
    max-height: 150px;
}

/* Team tier: base size */
.sponsor-tier-team .sponsor-logo img {
    max-height: 110px;
}

.sponsor-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.sponsor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(26, 71, 42, 0.15);
    border-color: #cc6600;
}

.sponsor-logo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor-logo img {
    max-width: 100%;
    max-height: 140px;
    object-fit: contain;
}

.sponsor-placeholder {
    color: #999;
    font-size: 1.1rem;
    text-align: center;
    font-weight: 600;
    padding: 2rem;
}

.sponsor-cta {
    background: linear-gradient(135deg, #000000 0%, #3a1d00 100%);
    color: white;
    padding: 4rem 3rem;
    border-radius: 15px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.sponsor-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #cc6600;
}

.sponsor-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.sponsor-cta ul {
    list-style-position: inside;
    color: white;
}

.sponsor-cta ul li {
    font-size: 1.05rem;
    margin: 0.5rem 0;
}

.sponsor-button {
    display: inline-block;
    background: #cc6600;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(204, 102, 0, 0.3);
}

.sponsor-button:hover {
    background: #ff8800;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204, 102, 0, 0.4);
}

/* Apparel Section */
.apparel-section {
    background: #fff;
    padding: 6rem 0;
}

.apparel-section .section-subtitle {
    color: #cc6600;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.apparel-cta {
    background: linear-gradient(135deg, #000000 0%, #cc6600 100%);
    color: white;
    padding: 4rem 3rem;
    border-radius: 15px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.apparel-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.apparel-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #cc6600;
}

.apparel-cta p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.apparel-button {
    display: inline-block;
    background: #cc6600;
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(204, 102, 0, 0.3);
    margin-bottom: 1.5rem;
}

.apparel-button:hover {
    background: #ff8800;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204, 102, 0, 0.4);
}

.apparel-note {
    font-size: 0.9rem;
    color: #e0e0e0;
    margin-top: 1rem;
    font-style: italic;
}

/* Contact Section */
.contact-section {
    background: #f8f9fa;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Hide honeypot field for spam protection */
.hidden {
    display: none;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1a472a;
    font-weight: bold;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #cc6600;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background: #000000;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-button:hover {
    background: #cc6600;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.contact-info {
    padding: 2rem 0;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: #cc6600;
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.info-item {
    margin: 1rem 0;
    font-size: 1.1rem;
    color: #333;
    padding: 0.5rem 0;
}

.info-item strong {
    color: #1a472a;
    display: inline-block;
    min-width: 100px;
}

/* Apparel Section */
.apparel-section {
    background: linear-gradient(135deg, #3b1e00 0%, #000000 100%);
    color: white;
}

.apparel-section .section-title {
    color: #cc6600;
}

.apparel-section .section-title::after {
    background: white;
}

.apparel-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.apparel-content p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.apparel-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: #cc6600;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s;
    margin: 2rem 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.apparel-button:hover {
    background: #b35900;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.apparel-note {
    font-size: 0.9rem !important;
    font-style: italic;
    opacity: 0.8;
}

/* Gallery Section */
.gallery-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    padding: 80px 20px 50px;
}

.gallery-carousel-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 3rem auto 0;
    height: 600px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.gallery-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-carousel-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;
}

.gallery-carousel-slide.active {
    opacity: 1;
}

.gallery-slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    color: #FFD700;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    padding: 3rem 2rem 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Gallery Navigation Buttons */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(204, 102, 0, 0.7);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    z-index: 4;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.gallery-nav:hover {
    background: rgba(204, 102, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev {
    left: 20px;
}

.gallery-nav.next {
    right: 20px;
}

/* Gallery Indicators */
.gallery-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}

.gallery-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.gallery-indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.gallery-indicator.active {
    background: #cc6600;
    border-color: #cc6600;
    transform: scale(1.3);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #000000 0%, #000000 100%);
    color: white;
    padding: 0;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    padding: 4rem 2rem;
}

.footer-section h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    border-bottom: 2px solid #cc6600;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.footer-section p {
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-style: italic;
    color: #cc6600 !important;
    font-weight: bold;
    margin-top: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #cc6600;
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 1rem;
    color: #e0e0e0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #cc6600;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #cc6600;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(204, 102, 0, 0.4);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.footer-credit {
    color: #b0b0b0;
}

.footer-credit a {
    color: #cc6600;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: #ff8800;
}

.footer-donate-button {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a472a;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    border: 2px solid #FFD700;
}

.footer-donate-button:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 2rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 2rem 1.5rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }
}

/* Player Modal */
.player-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3d 100%);
    margin: 5% auto;
    padding: 0;
    border: 5px solid #cc6600;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7);
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    color: #FFD700;
    float: right;
    font-size: 35px;
    font-weight: bold;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover,
.modal-close:focus {
    color: #cc6600;
    transform: scale(1.2);
}

.modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    gap: 25px;
}

.modal-player-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid #cc6600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-player-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-player-photo::before {
    content: '⚾';
    font-size: 80px;
    position: absolute;
    z-index: 1;
}

.modal-player-info {
    width: 100%;
    text-align: center;
}

.modal-player-info h2 {
    color: #FFD700;
    font-size: 2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.modal-player-details {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border-left: 4px solid #cc6600;
}

.detail-label {
    font-weight: bold;
    color: #FFD700;
    font-size: 1rem;
}

.detail-value {
    color: white;
    font-size: 1rem;
    font-weight: 600;
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }

    .modal-player-photo {
        width: 150px;
        height: 150px;
    }

    .modal-player-photo::before {
        font-size: 60px;
    }

    .modal-player-info h2 {
        font-size: 1.5rem;
    }

    .detail-label,
    .detail-value {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .modal-body {
        padding: 20px;
    }

    .modal-player-photo {
        width: 120px;
        height: 120px;
        border-width: 4px;
    }

    .modal-player-photo::before {
        font-size: 50px;
    }

    .modal-player-info h2 {
        font-size: 1.3rem;
    }

    .detail-row {
        padding: 8px 12px;
    }

    .detail-label,
    .detail-value {
        font-size: 0.85rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 0.8rem;
        font-size: 0.85rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-button,
    .donate-button {
        padding: 0.9rem 2rem;
        font-size: 1.1rem;
    }

    .hero {
        height: 600px;
        padding: 100px 20px;
    }

    .carousel-nav {
        font-size: 1.5rem;
        padding: 0.8rem 1.2rem;
    }

    .carousel-nav.prev {
        left: 10px;
    }

    .carousel-nav.next {
        right: 10px;
    }

    .carousel-indicators {
        bottom: 20px;
        gap: 8px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .section-title {
        font-size: 2rem;
    }

    .coaches-lineup {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .coach-circle {
        width: 150px;
        height: 150px;
    }

    .coach-circle::before {
        font-size: 60px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Player Grid Responsive */
    .players-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        padding: 0 1rem;
    }

    /* Sponsors Grid Responsive */
    .sponsors-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }

    .sponsor-card {
        min-height: 150px;
        padding: 1.5rem;
    }

    .sponsor-cta {
        padding: 2rem;
    }

    .sponsor-cta h3 {
        font-size: 1.5rem;
    }

    /* Apparel Section Responsive */
    .apparel-cta {
        padding: 2.5rem 2rem;
    }

    .apparel-cta h3 {
        font-size: 1.6rem;
    }

    .apparel-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .section-subtitle {
        font-size: 2rem;
    }

    .player-card-image {
        border-width: 3px;
    }

    .player-card-name {
        font-size: 1.1rem;
    }

    /* Gallery Responsive */
    .gallery-carousel-wrapper {
        height: 450px;
        margin: 2rem 1rem 0;
    }

    .gallery-nav {
        font-size: 1.5rem;
        padding: 0.8rem 1.2rem;
    }

    .gallery-nav.prev {
        left: 10px;
    }

    .gallery-nav.next {
        right: 10px;
    }

    .gallery-indicators {
        bottom: 20px;
        gap: 8px;
    }

    .gallery-indicator {
        width: 10px;
        height: 10px;
    }

    .gallery-slide-caption {
        font-size: 1.2rem;
        padding: 2rem 1.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        padding: 80px 20px;
        height: 500px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .hero-buttons {
        gap: 0.8rem;
    }

    .hero-button,
    .donate-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .carousel-nav {
        font-size: 1.2rem;
        padding: 0.6rem 1rem;
    }

    .carousel-indicators {
        bottom: 15px;
        gap: 6px;
    }

    .indicator {
        width: 8px;
        height: 8px;
    }

    .gallery-carousel-wrapper {
        height: 350px;
        margin: 2rem 0.5rem 0;
    }

    .gallery-nav {
        font-size: 1.2rem;
        padding: 0.6rem 1rem;
    }

    .gallery-nav.prev {
        left: 5px;
    }

    .gallery-nav.next {
        right: 5px;
    }

    .gallery-indicators {
        bottom: 15px;
        gap: 6px;
    }

    .gallery-indicator {
        width: 8px;
        height: 8px;
    }

    .gallery-slide-caption {
        font-size: 1rem;
        padding: 1.5rem 1rem 1rem;
        letter-spacing: 1px;
    }

    .players-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .section-subtitle {
        font-size: 1.6rem;
    }

    .player-card-image {
        border-width: 3px;
    }

    .player-card-name {
        font-size: 1rem;
    }
}