/* CSS Variables */
:root {
    --mcneese-blue: #003366;
    --townsley-green: #2d5016;
    --accent-orange: #ff6b35;
    --mcneese-yellow: #f9d61d;
    --light-blue: #4a90a4;
    --dark-gray: #333333;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
    --hero-glow-x: 0px;
    --hero-glow-y: 0px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    font-size: 85%; /* Scale down by 15% */
}

/* Mobile-first touch targets */
button, 
a, 
input, 
select, 
textarea {
    min-height: 44px;
    min-width: 44px;
}

/* Improve touch scrolling on mobile */
* {
    -webkit-overflow-scrolling: touch;
}

.container {
    max-width: 1020px; /* 1200 * 0.85 */
    width: 100%;
    margin: 0 auto;
    padding: 0 17px; /* 20 * 0.85 */
}

@media (min-width: 1440px) {
    .container {
        max-width: 1530px; /* 1800 * 0.85 */
        padding: 0 34px; /* 40 * 0.85 */
    }
    .hero-content {
        max-width: 1360px; /* 1600 * 0.85 */
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.125rem; /* 2.5 * 0.85 */
    color: var(--mcneese-blue);
    margin-bottom: 13px; /* 15 * 0.85 */
}

.section-header p {
    font-size: 1.02rem; /* 1.2 * 0.85 */
    color: var(--dark-gray);
    max-width: 510px; /* 600 * 0.85 */
    margin: 0 auto;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 51, 102, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.nav-logos {
    display: flex;
    align-items: center;
    gap: 30px;
    background: transparent;
    padding: 30px 0;
}

.nav-logo {
    height: 75px;
    width: auto;
    transition: var(--transition);
}

.townsley-logo {
    height: 100px;
    background: #2d2d2d;
    border: 1px solid rgba(45, 45, 45, 0.3);
    border-radius: 8px;
    padding: 8px 12px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mcneese-logo {
    height: 95px;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.1));
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--mcneese-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--mcneese-blue);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.tickets-btn {
    background: var(--mcneese-yellow);
    color: var(--mcneese-blue) !important;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--mcneese-blue);
}

.tickets-btn:hover {
    background: #e55a2b;
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.tickets-btn::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 28px;
    height: 3px;
    background: var(--dark-gray);
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Basketball shot animation overlay */
.hero-shot {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1; /* above background, below content */
}

.basketball {
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ff8a4a, #e85c2f 60%, #c94b25);
    box-shadow: 0 10px 18px rgba(0,0,0,0.35), inset 0 2px 4px rgba(255,255,255,0.25);
    left: -80px; /* start off-screen left */
    bottom: 18%;
    transform-origin: 50% 50%;
    animation: ballSpin 1.6s linear forwards, ballArc 1.6s ease-out forwards;
}

.ball-shadow {
    position: absolute;
    width: 70px;
    height: 18px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.35), rgba(0,0,0,0) 70%);
    left: -80px;
    bottom: 12%;
    filter: blur(2px);
    animation: shadowMove 1.6s ease-out forwards;
}

/* Simulated hoop area highlight (optional subtle target glow) */
.hero-shot::after {
    content: '';
    position: absolute;
    right: 12%;
    top: 22%;
    width: 120px;
    height: 6px;
    border-radius: 6px;
    background: radial-gradient( 45px 10px at center, rgba(255,255,255,0.35), rgba(255,255,255,0));
    opacity: 0.6;
    animation: rimFlash 1.6s ease-out forwards;
}

@keyframes rimFlash {
    0%, 80% { filter: brightness(1); opacity: 0.4; }
    88%     { filter: brightness(1.35); opacity: 0.8; }
    100%    { filter: brightness(1); opacity: 0.4; }
}

@keyframes ballSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(-540deg); } /* backspin */
}

/* Arc across the hero with slight bezier-like vertical path via translate */
@keyframes ballArc {
    0% {
        transform: translate(0, 0);
    }
    20% {
        transform: translate(15vw, -6vh);
    }
    40% {
        transform: translate(35vw, -14vh);
    }
    60% {
        transform: translate(55vw, -22vh);
    }
    80% {
        transform: translate(72vw, -26vh);
    }
    100% {
        /* final near hoop area */
        transform: translate(78vw, -23vh) scale(0.92);
        opacity: 0;
    }
}

@keyframes shadowMove {
    0%   { transform: translateX(0) scale(0.7); opacity: 0.0; }
    20%  { transform: translateX(15vw) scale(0.75); opacity: 0.25; }
    40%  { transform: translateX(35vw) scale(0.85); opacity: 0.35; }
    60%  { transform: translateX(55vw) scale(0.95); opacity: 0.4; }
    80%  { transform: translateX(72vw) scale(1.0); opacity: 0.45; }
    100% { transform: translateX(78vw) scale(0.95); opacity: 0.35; }
}

/* Reduced motion: fade in ball near hoop without animation */
@media (prefers-reduced-motion: reduce) {
    .basketball, .ball-shadow { animation: none !important; }
    .basketball {
        left: auto; right: 12%; top: 22%; bottom: auto;
    }
}

/* Mobile performance optimizations */
@media (max-width: 768px) {
    /* Reduce animations on mobile for better performance */
    .hero::before,
    .hero::after {
        display: none;
    }
    
    /* Simplify hover effects on mobile */
    .arena-card:hover,
    .team-card:hover,
    .event-card:hover {
        transform: none;
    }
    
    /* Optimize image loading */
    .hero-image {
        will-change: auto;
    }
    
    /* Reduce complex shadows on mobile */
    .arena-card,
    .event-card,
    .team-card {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .arena-card:hover,
    .event-card:hover,
    .team-card:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
}

/* Futuristic ambient layers */
.hero::before {
    content: '';
    position: absolute;
    inset: -20% -10% -10% -20%;
    background: radial-gradient(60% 60% at 20% 20%, rgba(0, 51, 102, 0.35) 0%, transparent 60%),
                radial-gradient(50% 50% at 80% 30%, rgba(255, 107, 53, 0.22) 0%, transparent 60%),
                radial-gradient(40% 40% at 50% 80%, rgba(45, 80, 22, 0.18) 0%, transparent 60%);
    filter: blur(40px);
    transform: translate3d(var(--hero-glow-x), var(--hero-glow-y), 0) scale(1.05);
    transition: transform 300ms ease;
    z-index: -3;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
    background-size: 60px 60px, 60px 60px;
    mask-image: radial-gradient(circle at 50% 50%, rgba(0,0,0,0.7), transparent 70%);
    pointer-events: none;
    transform: translate3d(calc(var(--hero-glow-x) * 0.4), calc(var(--hero-glow-y) * 0.4), 0);
    transition: transform 300ms ease;
    z-index: -1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: none; /* Disable parallax transform */
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 2000px;
    padding: 48px 36px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    background: transparent;
    border: none;
    box-shadow: none;
    will-change: transform;
}

.hero-title {
    font-size: clamp(2.2rem, 7vw, 7.5rem);
    font-weight: 900;
    margin-bottom: clamp(18px, 3vw, 40px);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--mcneese-yellow);
    text-shadow: 5px 5px 0 var(--mcneese-blue);
    animation: fadeInUp 0.9s ease both;
}

@keyframes heroTitleShine {
    0% { background-position: -100% 0; }
    100% { background-position: 200% 0; }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 2.5rem);
    margin-bottom: clamp(18px, 2vw, 40px);
    opacity: 0.95;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    color: var(--white);
    white-space: nowrap;
}

@media (max-width: 768px) {
    .hero-subtitle {
        white-space: normal;
    }
}

.no-break {
    white-space: nowrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}
.hero-stats .stat-item {
    opacity: 0;
    transform: translateY(12px);
    animation: statPop 0.8s ease forwards;
}
.hero-stats .stat-item:nth-child(1) { animation-delay: 0.2s; }
.hero-stats .stat-item:nth-child(2) { animation-delay: 0.35s; }
.hero-stats .stat-item:nth-child(3) { animation-delay: 0.5s; }
@keyframes statPop {
    from { opacity: 0; transform: translateY(12px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.stat-item {
    text-align: center;
    padding: 14px 18px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* The Townsley Law Arena stat numbers*/
.stat-number {
    display: block;
    font-size: clamp(1.5rem, 4vw, 4rem);
    font-weight: 700;
    color: var(--mcneese-yellow);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
    /* Prevent digit width shifting during animation */
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum" 1, "lnum" 1;
}

/* The label underneath the Townsley Law Arena stats */
.stat-label {
    display: block;
    font-size: clamp(0.9rem, 2vw, 1.5rem);
    opacity: 0.95;
    margin-top: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    color: var(--white);
    font-weight: 500;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 100vw;
    padding: clamp(18px, 5vw, 48px) clamp(12px, 3vw, 36px);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    background: transparent;
    border: none;
    box-shadow: none;
    will-change: transform;
}

/* Diagonal light sweep on buttons */
.btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -30%;
    width: 50%;
    height: 200%;
    background: linear-gradient(120deg, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.45) 50%, rgba(255,255,255,0.0) 100%);
    transform: translateX(-120%) rotate(20deg);
    transition: transform 0.6s ease;
    pointer-events: none;
}
.btn:hover::before,
.btn:focus-visible::before {
    transform: translateX(260%) rotate(20deg);
}
.btn {
    display: inline-block;
    padding: 14px 32px;
    min-width: 120px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-sizing: border-box;
}

.btn-primary {
    background: var(--mcneese-yellow);
    color: var(--mcneese-blue);
    border: 2px solid var(--mcneese-blue);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 700;
    min-width: 120px;
    text-align: center;
}

.btn-primary:hover {
    background: transparent;
    color: var(--mcneese-yellow);
    border-color: var(--mcneese-yellow);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--mcneese-blue);
    color: var(--white);
    border: 2px solid var(--mcneese-blue);
    box-shadow: 0 8px 18px rgba(0,51,102,0.18);
    font: bold;
    font-size: 1.1rem;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 700;
    min-width: 120px;
    text-align: center;
}

.btn-secondary:hover {
    background: transparent;
    color: var(--mcneese-blue);
    border-color: var(--mcneese-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Arena Section */
.arena-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.arena-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.arena-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0,0,0,0.04);
}

.arena-card::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.25), rgba(255, 107, 53, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.arena-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
    border-color: rgba(0,51,102,0.15);
}

.arena-card:hover::after {
    opacity: 1;
}

.card-icon {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--mcneese-blue);
    font-size: 2rem;
    position: relative;
}

.card-icon::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    filter: blur(6px);
    z-index: -1;
}

.arena-card h3 {
    font-size: 1.5rem;
    color: var(--mcneese-blue);
    margin-bottom: 15px;
}

.arena-card p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Arena Gallery Slideshow */
.arena-gallery-section {
    padding: 80px 0;
    background: var(--white);
}

.arena-slideshow {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background: var(--light-gray);
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slideshow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    pointer-events: none;
}

.slideshow-btn {
    pointer-events: all;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--mcneese-blue);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.slideshow-btn:hover {
    background: var(--mcneese-blue);
    color: var(--white);
    transform: scale(1.1);
}

.slideshow-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d0d0d0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: var(--mcneese-blue);
    transform: scale(1.3);
    border-color: var(--mcneese-blue);
}

.dot:hover {
    background: var(--light-blue);
    transform: scale(1.2);
}

/* Responsive Slideshow */
@media (max-width: 1024px) {
    .slideshow-container {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .slideshow-container {
        height: 400px;
        border-radius: 12px;
    }
    
    .slideshow-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slideshow-nav {
        padding: 0 10px;
    }
}

@media (max-width: 640px) {
    .slideshow-container {
        height: 300px;
    }
    
    .arena-gallery-section {
        padding: 50px 0;
    }
    
    .slideshow-dots {
        gap: 8px;
        margin-top: 20px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

/* Teams Showcase */
.teams-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
}

.teams-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(0,0,0,0.16);
}

.team-image-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.6s ease;
}

.team-card:hover .team-image {
    transform: scale(1.05);
}

.team-caption {
    padding: 14px 18px;
    text-align: center;
    font-weight: 600;
    color: var(--mcneese-blue);
}

@media (max-width: 1200px) {
    .container {
        max-width: 100vw;
        padding: 0 10px;
    }
    .hero-content {
        max-width: 100vw;
    }
}

@media (max-width: 992px) {
    .teams-grid { grid-template-columns: 1fr 1fr; }
    .arena-grid { grid-template-columns: 1fr 1fr; }
    .events-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: clamp(1.5rem, 5vw, 3rem); }
    .hero-subtitle { font-size: clamp(1rem, 3vw, 1.5rem); }
    .stat-number { font-size: clamp(1.2rem, 3vw, 2rem); }
    .stat-label { font-size: clamp(0.8rem, 2vw, 1.1rem); }
}

@media (max-width: 600px) {
    .teams-grid { grid-template-columns: 1fr; }
}

/* Legal Section */
.legal-section {
    padding: 80px 0; /* 100 * 0.8 */
    background: var(--white);
}

.legal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px; /* 60 * 0.8 */
    align-items: center;
}

.legal-text h2 {
    font-size: 3.2rem; /* 4 * 0.8 */
    color: var(--townsley-green);
    margin-bottom: 20px; /* 25 * 0.8 */
}

.legal-intro {
    font-size: 1.44rem; /* 1.8 * 0.8 */
    color: var(--dark-gray);
    margin-bottom: 32px; /* 40 * 0.8 */
    line-height: 1.7;
}

.legal-stats {
    display: flex;
    gap: 32px; /* 40 * 0.8 */
    margin-bottom: 32px; /* 40 * 0.8 */
}

.legal-stat {
    text-align: center;
}

.legal-number {
    display: block;
    font-size: 2.4rem; /* 3 * 0.8 */
    font-weight: 700;
    color: var(--mcneese-yellow);
    font-family: 'Montserrat', sans-serif;
}

.legal-label {
    display: block;
    font-size: 0.88rem; /* 1.1 * 0.8 */
    color: var(--dark-gray);
    margin-top: 4px; /* 5 * 0.8 */
}

.legal-areas {
    margin-bottom: 32px; /* 40 * 0.8 */
}

.legal-areas h4 {
    color: var(--townsley-green);
    margin-bottom: 12px; /* 15 * 0.8 */
    font-size: 1.28rem; /* 1.6 * 0.8 */
}

.legal-areas ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px; /* 10 * 0.8 */
}

.legal-areas li {
    position: relative;
    padding-left: 16px; /* 20 * 0.8 */
    color: var(--dark-gray);
    font-size: 0.88rem; /* Scale down text */
}

.legal-areas li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--townsley-green);
    font-weight: bold;
}

.partnership-image {
    width: 100%;
    height: auto;
    min-height: 320px; /* 400 * 0.8 */
    max-height: 400px; /* 500 * 0.8 */
    object-fit: contain;
    object-position: center;
    border-radius: 12px; /* 15 * 0.8 */
    box-shadow: var(--shadow);
    background: var(--white);
}

/* Events Section */
.events-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.events-list-section {
    padding: 80px 0;
    background: var(--white);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.event-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    padding: 24px;
    gap: 16px 24px;
    min-height: 160px;
    border-left: 5px solid var(--mcneese-blue);
    position: relative;
    cursor: pointer;
}

.event-title-with-logo {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.event-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    flex-shrink: 0;
}

.event-title-with-logo h4 {
    margin: 0;
    font-size: 1.8rem;
    color: var(--mcneese-blue);
    font-weight: 600;
    line-height: 1.3;
}

.event-matchup {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 8px;
    padding: 0 10px;
}

.team-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.team-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.team-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--mcneese-blue);
    text-align: center;
}

.vs-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-gray);
    text-transform: uppercase;
    flex-shrink: 0;
}

.event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.event-card.basketball-card {
    border-left-color: var(--mcneese-blue);
}

.event-card.volleyball-card {
    border-left-color: var(--townsley-green);
}

.event-card.ceremony-card {
    border-left-color: var(--accent-orange);
}

.event-card.community-card {
    border-left-color: var(--mcneese-yellow);
}

.event-sport-icon {
    font-size: 3rem;
    color: var(--mcneese-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.1), rgba(0, 51, 102, 0.05));
    border-radius: 12px;
}

.volleyball-card .event-sport-icon {
    color: var(--townsley-green);
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.1), rgba(45, 80, 22, 0.05));
}

.ceremony-card .event-sport-icon {
    color: var(--accent-orange);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
}

.event-date-box {
    text-align: center;
    background: var(--mcneese-blue);
    color: var(--white);
    padding: 16px 20px;
    border-radius: 12px;
    min-width: 90px;
    box-shadow: 0 4px 12px rgba(0, 51, 102, 0.2);
}

.volleyball-card .event-date-box {
    background: var(--townsley-green);
}

.ceremony-card .event-date-box {
    background: var(--accent-orange);
}

.event-weekday {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    opacity: 0.9;
    letter-spacing: 1px;
}

.event-month {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    margin: 4px 0;
    letter-spacing: 1px;
}

.event-day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.event-info {
    flex: 1;
    min-width: 0;
}

.sport-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sport-badge.mens {
    background: linear-gradient(135deg, var(--mcneese-blue), var(--light-blue));
    color: var(--white);
}

.sport-badge.womens {
    background: linear-gradient(135deg, var(--townsley-green), #3d6b1f);
    color: var(--white);
}

.sport-badge.ceremony {
    background: linear-gradient(135deg, var(--accent-orange), #ff8555);
    color: var(--white);
}

.sport-badge.community {
    background: linear-gradient(135deg, var(--mcneese-yellow), #fde047);
    color: var(--dark-gray);
}

.event-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.opponent-name {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--mcneese-blue);
    margin-bottom: 12px;
}

.event-meta {
    display: flex;
    gap: 24px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: #555;
}

.meta-item i {
    color: var(--mcneese-blue);
    font-size: 0.95rem;
}

.event-description {
    font-size: 1.05rem;
    color: #666;
    margin-top: 12px;
    line-height: 1.5;
}

.event-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.event-ticket-btn {
    background: var(--mcneese-yellow);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    text-align: center;
    min-width: 80px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.event-ticket-btn:hover {
    background: var(--mcneese-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 51, 102, 0.3);
}

.event-ticket-btn.disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
    box-shadow: none;
}

.add-to-calendar-btn {
    background: var(--mcneese-blue);
    color: var(--white);
    border: 2px solid var(--mcneese-yellow);
    padding: 12px;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 51, 102, 0.12);
}

.add-to-calendar-btn:hover {
    background: var(--light-blue);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 51, 102, 0.3);
}

.event-date {
    background: var(--mcneese-blue);
    color: var(--white);
    text-align: center;
    padding: 16px 12px;
    border-radius: 12px;
    min-width: 80px;
    flex-shrink: 0;
    font-size: 1.4rem;
}

.month {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    opacity: 0.9;
    letter-spacing: 1px;
}

.day {
    display: block;
    font-size: 2.4rem;
    font-weight: 900;
    margin-top: 2px;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.event-details {
    flex: 1 1 auto;
    min-width: 10px;
    padding: 5px 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-details h4 {
    color: var(--mcneese-blue);
    font-size: 1.2rem;
    margin-bottom: 8px;
    line-height: 1.3;
    white-space: normal;
}

.event-type {
    color: var(--townsley-green);
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 3px;
    white-space: normal;
}

.event-time {
    color: var(--dark-gray);
    font-size: 1.05rem;
    margin-bottom: 3px;
    white-space: normal;
}

.event-venue {
    color: #666;
    font-size: 1rem;
    font-style: italic;
    white-space: normal;
}

.event-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    flex: 0 0 auto;
    margin-left: auto;
}


.events-footer {
    text-align: center;
    margin: 50px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 600px;
}

/* Footer */
.footer {
    background: var(--mcneese-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--mcneese-yellow);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--mcneese-yellow);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.contact-info p a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info i {
    color: var(--mcneese-yellow);
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Specific styling for globe icon alignment */
.contact-info .fa-globe {
    font-size: 14px;
    line-height: 1;
    vertical-align: middle;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: -1px; /* Fine-tune vertical position */
}

/* Global fix for all globe icons */
.fa-globe {
    display: inline-block !important;
    vertical-align: text-top !important;
    margin-top: 2px !important;
    line-height: 1 !important;
    font-size: 14px !important;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--mcneese-yellow);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Mobile-First Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        height: 80px;
        padding: 0 15px;
        position: relative;
        z-index: 1001;
    }

    .nav-logos {
        gap: 12px;
    }

    .nav-logo {
        height: 45px;
    }

    .townsley-logo {
        height: 50px;
        padding: 4px 8px;
    }

    .mcneese-logo {
        height: 40px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 20px 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 15px 20px;
        font-size: 1.1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .tickets-btn {
        padding: 15px 30px;
        font-size: 1.1rem;
        min-height: 44px;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        width: 44px;
        height: 44px;
        justify-content: center;
        align-items: center;
        gap: 0;
        padding: 8px;
    }
    
    .bar {
        width: 28px;
        height: 3px;
        background: var(--dark-gray);
        transition: all 0.3s ease;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
        transform: translateX(20px);
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .hero {
        min-height: 100vh;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 100px;
        padding-bottom: 60px;
        box-sizing: border-box;
        position: relative;
        overflow: visible;
        margin-top: 0;
    }
    
    /* Ensure hero content is visible and not cut off */
    .hero .hero-content {
        transform: translateY(0);
        max-height: none;
        overflow-y: visible;
        margin-top: 0;
        padding-top: 20px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero-title {
        font-size: clamp(1.8rem, 8vw, 3rem);
        line-height: 1.1;
        margin-bottom: 20px;
        margin-top: 0;
        padding-top: 0;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.4rem);
        margin-bottom: 30px;
    }

    .hero-content {
        padding: 20px 15px;
        margin: 0 10px;
        max-width: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        position: relative;
        z-index: 2;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }

    .stat-item {
        padding: 20px 15px;
        min-width: 200px;
    }

    .stat-number {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .stat-label {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 18px;
        font-size: 1rem;
        min-height: 44px;
    }

    /* Ensure hero buttons don't overpower text on mobile tablets */
    .btn-primary,
    .btn-secondary {
        font-size: 1rem;
        padding: 12px 18px;
        min-height: 44px;
    }

    .legal-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .legal-text h2 {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 20px;
    }

    .legal-intro {
        font-size: clamp(1.1rem, 4vw, 1.4rem);
        margin-bottom: 30px;
    }

    .partnership-image {
        max-height: 250px;
        object-fit: contain;
        width: 100%;
        height: auto;
    }

    .legal-stats {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }

    .legal-stat {
        padding: 15px;
        background: rgba(0, 51, 102, 0.05);
        border-radius: 10px;
    }

    .legal-number {
        font-size: 2.2rem;
    }

    .legal-areas ul {
        grid-template-columns: 1fr;
        gap: 12px;
        display: flex;
        flex-direction: column;
    }

    .legal-areas li {
        padding: 10px 0;
        font-size: 1rem;
        line-height: 1.4;
        position: relative;
        padding-left: 25px;
    }

    .legal-areas li::before {
        content: '✓';
        position: absolute;
        left: 0;
        top: 10px;
        color: var(--townsley-green);
        font-weight: bold;
        font-size: 1.1rem;
    }

    .events-grid {
        grid-template-columns: 1fr;
        max-width: none;
        gap: 20px;
    }

    .event-card {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px;
        min-height: auto;
    }
    
    .event-sport-icon {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
    
    .event-date-box {
        justify-self: start;
    }
    
    .event-info {
        order: 2;
    }
    
    .event-actions {
        order: 3;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        align-items: center;
    }
    
    .event-title {
        font-size: 1.2rem;
    }
    
    .opponent-name {
        font-size: 1rem;
    }
    
    .event-meta {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .event-date {
        margin: 0 auto;
        padding: 15px 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-width: auto;
        width: auto;
    }
    
    .month {
        font-size: 1.3rem;
        font-weight: 700;
        display: inline-block;
    }
    
    .day {
        font-size: 1.3rem;
        font-weight: 700;
        display: inline-block;
    }

    .event-actions {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        min-width: auto;
        width: 100%;
        margin-top: 15px;
    }

    .event-ticket-btn {
        padding: 12px 20px;
        font-size: 1rem;
        min-height: 44px;
    }

    .add-to-calendar-btn {
        width: 44px;
        height: 44px;
        min-height: 44px;
    }

    .section-header {
        margin-bottom: 32px;
    }
    .section-header h2 {
        font-size: clamp(1.6rem, 5.5vw, 2rem);
    }

    .section-header p {
        font-size: clamp(0.95rem, 3vw, 1.1rem);
    }

    .events-footer {
        margin: 30px auto 0;
        max-width: 100%;
        flex-direction: column;
        gap: 15px;
    }

    .arena-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .arena-card {
        padding: 30px 20px;
    }

    .card-icon {
        width: 120px;
        height: 120px;
        margin-bottom: 20px;
    }

    .arena-card h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .arena-card p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .teams-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .container {
        padding: 0 12px;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .nav-container {
        height: 70px;
        padding: 0 10px;
    }

    .nav-logos {
        gap: 8px;
    }

    .nav-logo {
        height: 35px;
    }

    .townsley-logo {
        height: 40px;
        padding: 3px 6px;
    }

    .mcneese-logo {
        height: 35px;
    }

    .nav-menu {
        top: 70px;
    }

    .hero-title {
        font-size: clamp(1.5rem, 10vw, 2.2rem);
        line-height: 1.1;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 4vw, 1.2rem);
        margin-bottom: 25px;
    }

    .hero-content {
        padding: 15px 10px;
        margin: 0 5px;
        padding-top: 20px;
    }

    .hero-stats {
        gap: 15px;
        margin-bottom: 25px;
    }

    .stat-item {
        padding: 15px 12px;
        min-width: 160px;
    }

    .stat-number {
        font-size: clamp(1.5rem, 8vw, 2rem);
    }

    .stat-label {
        font-size: clamp(0.8rem, 3vw, 1rem);
    }

    .btn {
        padding: 10px 16px;
        font-size: 0.9rem;
        min-height: 40px;
    }

    /* Match primary/secondary sizes with base button */
    .btn-primary,
    .btn-secondary {
        font-size: 0.9rem;
        padding: 10px 16px;
        min-height: 40px;
    }

    .legal-text h2 {
        font-size: clamp(1.6rem, 8vw, 2.5rem);
    }

    .legal-intro {
        font-size: clamp(1rem, 4vw, 1.2rem);
    }

    .legal-stats {
        flex-direction: column;
        gap: 15px;
    }

    .legal-stat {
        padding: 12px;
    }

    .legal-number {
        font-size: 1.8rem;
    }

    .partnership-image {
        max-height: 200px;
    }

    .arena-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .arena-card {
        padding: 25px 15px;
    }

    .card-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }

    .arena-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .arena-card p {
        font-size: 0.95rem;
    }

    .events-grid {
        grid-template-columns: 1fr;
        max-width: none;
        gap: 15px;
    }

    .event-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
        gap: 18px;
        min-height: 380px;
        display: flex;
        justify-content: space-between;
    }

    .event-title-with-logo {
        justify-content: center;
        margin-bottom: 12px;
    }

    .event-logo {
        width: 50px;
        height: 50px;
    }

    .event-title-with-logo h4 {
        font-size: 1.5rem;
    }

    .event-matchup {
        gap: 12px;
        padding: 0;
    }

    .team-logo {
        width: 70px;
        height: 70px;
    }

    .team-name {
        font-size: 1.1rem;
    }

    .vs-text {
        font-size: 1.5rem;
    }

    .event-details {
        order: 1;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 8px;
    }
    
    .event-details h4 {
        font-size: 1.3rem;
        line-height: 1.4;
        margin-bottom: 8px;
    }
    
    .event-type {
        font-size: 1.05rem;
    }
    
    .event-time {
        font-size: 1rem;
    }
    
    .event-venue {
        font-size: 0.95rem;
    }

    .event-date {
        order: 2;
        margin: 0 auto;
        padding: 15px 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-width: auto;
        width: auto;
    }
    
    .month {
        font-size: 1.3rem;
        font-weight: 700;
        display: inline-block;
    }
    
    .day {
        font-size: 1.3rem;
        font-weight: 700;
        display: inline-block;
    }

    .event-actions {
        order: 3;
        flex-direction: row;
        gap: 15px;
        margin-top: 10px;
        width: 100%;
        justify-content: center;
    }

    .event-ticket-btn {
        padding: 10px 16px;
        font-size: 0.95rem;
        min-height: 40px;
    }

    .add-to-calendar-btn {
        width: 40px;
        height: 40px;
        min-height: 40px;
    }

    .events-footer {
        margin: 25px auto 0;
        flex-direction: column;
        gap: 12px;
        max-width: 100%;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: clamp(1.5rem, 8vw, 2rem);
    }

    .section-header p {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }

    .container {
        padding: 0 10px;
    }
    
    /* Footer Mobile Optimizations */
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h4 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .footer-section p {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }
    
    .contact-info p {
        font-size: 0.9rem;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-align: center;
    }
    
    .contact-info i {
        flex-shrink: 0;
        width: 16px;
        height: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
        gap: 12px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .footer-bottom {
        padding-top: 15px;
        font-size: 0.85rem;
    }
    
    /* Additional mobile footer fixes */
    .footer-section .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    
    .footer-section .contact-info p {
        margin: 0;
        padding: 2px 0;
    }
    
    /* Mobile-specific globe icon alignment */
    .contact-info .fa-globe {
        font-size: 13px;
        line-height: 1;
        vertical-align: text-top;
        display: inline-block;
        margin-top: 1px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out 0.5s both;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Reduced Motion - global safety net */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto !important; }
    /* Reduce only heavy/decorative motion, preserve key UI transitions */
    .hero-shot .basketball,
    .hero-shot .ball-shadow { animation: none !important; }
    .hero::before,
    .hero::after { transition: none !important; }
    .arena-card:hover,
    .team-card:hover,
    .event-card:hover { transform: none !important; }
    /* Ensure stats visible without entrance animation */
    .hero-stats .stat-item { opacity: 1 !important; transform: none !important; }
}

/* Focus States for Accessibility */
.nav-link:focus,
.btn:focus,
.event-ticket-btn:focus,
.social-link:focus {
    outline: 2px solid var(--mcneese-yellow);
    outline-offset: 2px;
}

/* Legal Excellence Page Styles */
.legal-excellence-hero {
    padding: 140px 0 64px; /* Increased top padding to avoid navbar overlap */
    background: var(--white);
    min-height: auto;
    display: flex;
    align-items: center;
}

.legal-excellence-content {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr; /* Make image column a bit larger */
    gap: 64px; /* 80 * 0.8 */
    align-items: center;
    max-width: 1120px; /* 1400 * 0.8 */
    margin: 0 auto;
}

.legal-excellence-title {
    font-size: 3.1rem; /* Slightly smaller */
    color: var(--townsley-green);
    margin-bottom: 20px; /* 25 * 0.8 */
    font-weight: 700;
    line-height: 1.1;
}

.legal-excellence-description {
    font-size: 1.25rem; /* Slightly smaller */
    color: var(--dark-gray);
    margin-bottom: 40px; /* 50 * 0.8 */
    line-height: 1.6;
}

.legal-excellence-stats {
    display: flex;
    gap: 40px; /* 50 * 0.8 */
    margin-bottom: 40px; /* 50 * 0.8 */
}

.legal-excellence-stat {
    text-align: center;
}

.legal-excellence-number {
    display: block;
    font-size: 2.8rem; /* 3.5 * 0.8 */
    font-weight: 700;
    color: var(--mcneese-yellow);
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    margin-bottom: 6px; /* 8 * 0.8 */
}

.legal-excellence-label {
    display: block;
    font-size: 0.96rem; /* 1.2 * 0.8 */
    color: var(--dark-gray);
    font-weight: 500;
}

.practice-areas {
    margin-bottom: 40px; /* 50 * 0.8 */
}

.practice-areas h4 {
    color: var(--townsley-green);
    margin-bottom: 20px; /* 25 * 0.8 */
    font-size: 1.44rem; /* 1.8 * 0.8 */
    font-weight: 600;
}

.practice-areas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px; /* 20 * 0.8 */
}

.practice-area-item {
    display: flex;
    align-items: center;
    gap: 10px; /* 12 * 0.8 */
    margin-bottom: 10px; /* 12 * 0.8 */
    color: var(--dark-gray);
    font-size: 0.88rem; /* 1.1 * 0.8 */
}

.practice-area-item i {
    color: var(--townsley-green);
    font-weight: bold;
    font-size: 0.8rem; /* 1 * 0.8 */
}

.learn-more-btn {
    font-size: 0.96rem; /* 1.2 * 0.8 */
    padding: 13px 32px; /* 16 * 0.8, 40 * 0.8 */
    border-radius: 24px; /* 30 * 0.8 */
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
}

.legal-excellence-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.partnership-image {
    width: 100%;
    height: auto;
    max-height: 600px; /* Increase image size */
    object-fit: contain;
    object-position: center;
    border-radius: 15px;
    box-shadow: var(--shadow);
    background: var(--white);
}

/* Legal Victories Section */
.legal-victories-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--mcneese-blue) 0%, var(--townsley-green) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.legal-victories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.legal-victories-section .section-header h2 {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.legal-victories-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 50px;
}

/* Navigation Active State */
.nav-link.active {
    color: var(--mcneese-blue);
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
    background: var(--mcneese-blue);
}

/* Responsive Design for Legal Excellence */
@media (max-width: 768px) {
    .legal-excellence-hero {
        padding: 120px 0 48px; /* Increased top padding for tablet */
        min-height: auto;
    }
    
    .legal-excellence-content {
        grid-template-columns: 1fr;
        gap: 32px; /* 40 * 0.8 */
    }
    
    .legal-excellence-title {
        font-size: clamp(2rem, 8vw, 2.8rem); /* Scaled down */
        margin-bottom: 16px; /* 20 * 0.8 */
    }
    
    .legal-excellence-description {
        font-size: clamp(0.96rem, 4vw, 1.2rem); /* Scaled down */
        margin-bottom: 32px; /* 40 * 0.8 */
    }
    
    .legal-excellence-stats {
        flex-direction: column;
        gap: 20px; /* 25 * 0.8 */
        margin-bottom: 32px; /* 40 * 0.8 */
    }
    
    .legal-excellence-stat {
        padding: 16px; /* 20 * 0.8 */
        background: rgba(0, 51, 102, 0.05);
        border-radius: 10px; /* 12 * 0.8 */
    }
    
    .legal-excellence-number {
        font-size: 2rem; /* 2.5 * 0.8 */
    }
    
    .legal-excellence-label {
        font-size: 0.8rem; /* 1 * 0.8 */
    }
    
    .practice-areas h4 {
        font-size: 1.12rem; /* 1.4 * 0.8 */
        margin-bottom: 16px; /* 20 * 0.8 */
    }
    
    .practice-areas-grid {
        grid-template-columns: 1fr;
        gap: 12px; /* 15 * 0.8 */
    }
    
    .practice-area-item {
        font-size: 0.8rem; /* 1 * 0.8 */
        margin-bottom: 8px; /* 10 * 0.8 */
    }
    
    .learn-more-btn {
        font-size: 0.88rem; /* 1.1 * 0.8 */
        padding: 11px 24px; /* 14 * 0.8, 30 * 0.8 */
        width: 100%;
        text-align: center;
    }
    
    .partnership-image {
        max-height: 240px; /* 300 * 0.8 */
    }
    
    .legal-victories-section {
        padding: 60px 0;
    }
    
    .legal-victories-section .section-header h2 {
        font-size: 2rem;
    }
    
    .legal-victories-section .section-header p {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .legal-excellence-hero {
        padding: 100px 0 32px; /* Increased top padding for mobile */
    }
    
    .legal-excellence-content {
        gap: 24px; /* 30 * 0.8 */
    }
    
    .legal-excellence-title {
        font-size: clamp(1.6rem, 10vw, 2.24rem); /* Scaled down */
    }
    
    .legal-excellence-description {
        font-size: clamp(0.88rem, 4vw, 1.04rem); /* Scaled down */
        margin-bottom: 24px; /* 30 * 0.8 */
    }
    
    .legal-excellence-stats {
        gap: 16px; /* 20 * 0.8 */
        margin-bottom: 24px; /* 30 * 0.8 */
    }
    
    .legal-excellence-stat {
        padding: 12px; /* 15 * 0.8 */
    }
    
    .legal-excellence-number {
        font-size: 1.6rem; /* 2 * 0.8 */
    }
    
    .legal-excellence-label {
        font-size: 0.72rem; /* 0.9 * 0.8 */
    }
    
    .practice-areas h4 {
        font-size: 0.96rem; /* 1.2 * 0.8 */
        margin-bottom: 12px; /* 15 * 0.8 */
    }
    
    .practice-area-item {
        font-size: 0.76rem; /* 0.95 * 0.8 */
        margin-bottom: 6px; /* 8 * 0.8 */
    }
    
    .learn-more-btn {
        font-size: 0.8rem; /* 1 * 0.8 */
        padding: 10px 20px; /* 12 * 0.8, 25 * 0.8 */
    }
    
    .partnership-image {
        max-height: 200px; /* 250 * 0.8 */
    }
    
    .legal-victories-section {
        padding: 40px 0;
    }
    
    .legal-victories-section .section-header h2 {
        font-size: 1.8rem;
    }
    
    .legal-victories-section .section-header p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero,
    .footer {
        display: none;
    }
    
    .arena-section,
    .legal-section,
    .events-section {
        padding: 20px 0;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    pointer-events: none;
}

/* Seating Chart Styles */
.seating-chart-container {
    margin: 20px 0;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--white);
    padding: 15px;
}

.seating-chart {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    transition: var(--transition);
}

.seating-chart:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

@media (max-width: 768px) {
    .seating-chart-container {
        padding: 10px;
        margin: 15px 0;
    }
}

/* Last Event Section Styles */
.last-event-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.last-event-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    max-width: 1400px;
    margin: 0 auto;
}

.last-event-image {
    display: none;
}

.last-event-content {
    padding: 60px 80px;
    display: flex;
    gap: 50px;
}

.last-event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    background: var(--mcneese-blue);
    color: var(--white);
    padding: 35px 30px;
    border-radius: 12px;
    text-align: center;
    margin-right: 20px;
}

.event-month {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.event-day {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.event-year {
    font-size: 1.5rem;
    font-weight: 700;
    opacity: 1;
}

.last-event-details {
    flex: 1;
}

.last-event-details h3 {
    color: var(--mcneese-blue);
    margin-bottom: 15px;
    font-size: 2rem;
}

.event-sport {
    color: var(--accent-orange);
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.event-result {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.result-label {
    font-weight: 600;
    color: var(--dark-gray);
}

.score {
    font-weight: 700;
    color: var(--mcneese-blue);
    margin-left: 10px;
}

.event-highlights {
    margin-bottom: 30px;
    line-height: 1.7;
    color: var(--dark-gray);
    font-size: 1.05rem;
}

.event-stats {
    display: flex;
    gap: 50px;
    margin-top: 30px;
}

.event-stats .stat-item {
    text-align: center;
}

.event-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--mcneese-blue);
    text-shadow: none;
}

.event-stats .stat-label {
    font-size: 1rem;
    color: var(--dark-gray);
    font-weight: 500;
    text-shadow: none;
}

.last-event-image {
    background: var(--mcneese-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.event-photo {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .last-event-card {
        grid-template-columns: 1fr;
        margin: 0 10px;
    }
    
    .last-event-content {
        flex-direction: column;
        padding: 25px 20px;
        gap: 20px;
    }
    
    .last-event-date {
        flex-direction: row;
        justify-content: center;
        min-width: auto;
        padding: 15px 20px;
    }
    
    .last-event-details h3 {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }
    
    .event-sport {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .event-result {
        margin-bottom: 12px;
    }
    
    .event-highlights {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .event-stats {
        justify-content: space-around;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .event-stats .stat-item {
        min-width: 80px;
    }
    
    .event-stats .stat-number {
        font-size: 1.3rem;
    }
    
    .event-stats .stat-label {
        font-size: 0.8rem;
    }
    
    .last-event-image {
        padding: 15px;
    }
    
    .event-photo {
        max-height: 200px;
    }
}

@media (max-width: 480px) {
    .last-event-card {
        margin: 0 5px;
    }
    
    .last-event-content {
        padding: 20px 15px;
        gap: 15px;
    }
    
    .last-event-date {
        padding: 15px 20px;
        min-width: auto;
        flex-direction: row;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    
    .event-month {
        font-size: 1.3rem;
        font-weight: 700;
        display: inline-block;
    }
    
    .event-day {
        font-size: 1.3rem;
        font-weight: 700;
        display: inline-block;
        margin: 0;
    }
    
    .event-year {
        font-size: 1.3rem;
        font-weight: 700;
        display: inline-block;
    }
    
    .last-event-details h3 {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .event-sport {
        font-size: 0.9rem;
    }
    
    .event-result {
        font-size: 0.9rem;
    }
    
    .event-highlights {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .event-stats {
        gap: 10px;
    }
    
    .event-stats .stat-item {
        min-width: 70px;
        padding: 8px;
    }
    
    .event-stats .stat-number {
        font-size: 1.1rem;
    }
    
    .event-stats .stat-label {
        font-size: 0.75rem;
    }
    
    .last-event-image {
        padding: 10px;
    }
    
    .event-photo {
        max-height: 150px;
    }
}

/* Verdicts Slider Section */
.verdicts-section {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--mcneese-blue) 0%, var(--townsley-green) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden; /* Prevent horizontal overflow on mobile */
    margin-top: 40px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    z-index: 1;
}

.verdicts-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.verdicts-section .section-header h2 {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.verdicts-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.verdicts-slider-container {
    position: relative;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    z-index: 2;
}

.verdicts-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    padding: 0 10px;
    min-height: 450px;
    position: relative;
    z-index: 3;
}

.verdict-card {
    flex: 0 0 calc((100% - 40px) / 3);
    width: calc((100% - 40px) / 3);
    min-width: calc((100% - 40px) / 3);
    min-height: 400px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    position: relative;
    box-sizing: border-box;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.verdict-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.12) 100%);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.verdict-icon {
    display: none;
}

.verdict-content {
    flex: 1;
    color: var(--white);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: space-between;
    height: 100%;
}

.verdict-amount {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--mcneese-yellow);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
}

.verdict-type {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.verdict-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}

.verdict-details {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.verdict-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    min-width: 70px;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 90px;
}

.verdict-detail:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.verdict-detail-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--mcneese-yellow);
    margin-bottom: 2px;
    line-height: 1;
}

.verdict-detail-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
    padding: 0 20px;
}

.slider-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    border: 3px solid var(--mcneese-blue);
    color: var(--mcneese-blue);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    pointer-events: all;
    box-shadow: 0 8px 20px rgba(0, 51, 102, 0.3);
    font-weight: bold;
}

.slider-btn:hover {
    background: linear-gradient(135deg, var(--mcneese-yellow) 0%, var(--accent-orange) 100%);
    color: var(--white);
    border-color: var(--mcneese-yellow);
    transform: scale(1.15);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
}

.slider-btn:active {
    transform: scale(1.05);
}

.slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.slider-dot.active {
    background: var(--mcneese-yellow);
    border-color: var(--white);
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

/* Responsive Design for Verdicts Slider */
@media (max-width: 768px) {
    .verdicts-section {
        padding: 30px 0;
    }
    
    .verdicts-slider-container {
        padding: 0 30px;
    }
    
    .verdicts-slider {
        gap: 15px;
        padding: 0 5px;
    }
    
    .verdict-card {
        flex: 0 0 calc((100% - 15px) / 2);
        width: calc((100% - 15px) / 2);
        min-width: calc((100% - 15px) / 2);
        padding: 35px 25px;
        gap: 15px;
        justify-content: center;
        min-height: 350px;
        border-radius: 16px;
    }
    
    .verdict-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 6px;
    }
    
    .verdict-amount {
        font-size: 1.8rem;
    }
    
    .verdict-type {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .verdict-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 15px;
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .verdict-details {
        gap: 5px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .verdict-detail {
        min-width: 55px;
        max-width: 70px;
        padding: 5px 8px;
    }
    
    .verdict-detail-value {
        font-size: 0.9rem;
    }
    
    .verdict-detail-label {
        font-size: 0.6rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-controls {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .verdicts-section {
        padding: 20px 0;
    }
    
    .verdicts-slider-container {
        padding: 0 15px;
    }
    
    .verdicts-slider {
        gap: 0;
        padding: 0;
    }
    
    .verdict-card {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
        padding: 30px 25px;
        justify-content: center;
        min-height: 340px;
        border-radius: 16px;
        margin: 0 5px;
    }
    
    .verdict-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 6px;
    }
    
    .verdict-amount {
        font-size: 1.5rem;
    }
    
    .verdict-type {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }
    
    .verdict-description {
        font-size: 0.85rem;
        line-height: 1.4;
        text-align: center;
        word-wrap: break-word;
        margin-bottom: 15px;
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .verdict-details {
        flex-direction: row;
        align-items: center;
        gap: 4px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .verdict-detail {
        min-width: 45px;
        max-width: 60px;
        padding: 4px 6px;
    }
    
    .verdict-detail-value {
        font-size: 0.8rem;
    }
    
    .verdict-detail-label {
        font-size: 0.55rem;
    }
    
    .slider-btn {
        width: 17px;
        height: 17px;
        font-size: 0.5rem;
        border: 1.5px solid var(--mcneese-blue);
    }
    
    .slider-controls {
        padding: 0 5px;
    }
    
    .slider-dots {
        margin-top: 20px;
        gap: 8px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
}

/* ============================================
   ROSTER PAGES STYLES
   ============================================ */

/* Team Card Links */
.team-card-link {
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}

.team-card-link:hover .team-card {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(0,0,0,0.16);
}

/* Roster Hero Section */
.roster-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--mcneese-blue) 0%, var(--light-blue) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.roster-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.mens-roster-hero {
    background: linear-gradient(135deg, var(--mcneese-blue) 0%, var(--townsley-green) 100%);
}

.volleyball-roster-hero {
    background: linear-gradient(135deg, var(--townsley-green) 0%, var(--mcneese-blue) 100%);
}

.roster-hero-content {
    position: relative;
    z-index: 1;
}

.roster-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.roster-season {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.roster-quick-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.roster-link {
    background: var(--mcneese-blue);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--mcneese-blue);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0, 51, 102, 0.2);
    font-size: 1rem;
}

.roster-link:hover {
    background: var(--white);
    color: var(--mcneese-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--mcneese-blue);
}

.roster-link i {
    font-size: 1.1rem;
}

/* Roster Section */
.roster-section {
    padding: 140px 0 80px;
    background: var(--light-gray);
}

.roster-section .section-header {
    margin-bottom: 80px;
    position: relative;
}

.roster-section .section-header .roster-quick-links {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.roster-section .section-header::after {
    display: none;
}

.roster-section .section-header h2 {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--mcneese-blue) 0%, var(--light-blue) 50%, var(--townsley-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    animation: slideInDown 0.8s ease-out;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.roster-section .section-header p {
    font-size: 1.8rem;
    color: var(--mcneese-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    position: relative;
}

.roster-section .section-header p::before {
    content: '◆';
    color: var(--mcneese-yellow);
    margin-right: 15px;
    font-size: 1.2rem;
}

.roster-section .section-header p::after {
    content: '◆';
    color: var(--mcneese-yellow);
    margin-left: 15px;
    font-size: 1.2rem;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.roster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Player Cards */
.player-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    text-align: center;
}

.player-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

/* Player Headshot */
.player-headshot {
    position: relative;
    height: 420px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--mcneese-blue) 0%, var(--light-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
}

.player-headshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
}

/* Mobile optimization for player headshots */
@media (max-width: 768px) {
    .player-headshot {
        height: 380px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .player-headshot img {
        object-fit: cover;
        object-position: 50% 50%;
        display: block;
        margin: 0 auto;
    }
}

.player-card:hover .player-headshot img {
    transform: scale(1.05);
}

.player-card:hover .placeholder-headshot img {
    transform: scale(1.05);
}

.placeholder-headshot {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--mcneese-blue) 0%, var(--light-blue) 100%);
}

.placeholder-headshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
}


/* Player Info */
.player-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.player-name {
    font-size: 1.4rem;
    color: var(--mcneese-blue);
    margin-bottom: 10px;
    font-weight: 600;
}

.player-details {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.player-position {
    background: var(--townsley-green);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    display: inline-block;
}

.player-class {
    background: var(--mcneese-blue);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    display: inline-block;
}

.player-bio {
    margin-bottom: 15px;
    flex: 1;
}

.player-bio p {
    margin-bottom: 8px;
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.player-bio strong {
    color: var(--mcneese-blue);
    font-weight: 600;
}

/* Player Stats */
.player-stats {
    display: flex;
    justify-content: space-around;
    gap: 10px;
    padding-top: 15px;
    border-top: 2px solid var(--light-gray);
    flex-wrap: wrap;
}

.player-stats .stat-item {
    text-align: center;
    flex: 1;
    min-width: 70px;
    padding: 8px 4px;
    background: var(--light-gray);
    border-radius: 8px;
}

.player-stats .stat-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--mcneese-blue);
    line-height: 1.2;
    margin-bottom: 4px;
    word-break: break-word;
}

.player-stats .stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--dark-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

/* Coach Card */
.coach-card .player-position {
    background: var(--mcneese-yellow);
    color: var(--mcneese-blue);
}

.coach-card .player-headshot {
    background: linear-gradient(135deg, var(--townsley-green) 0%, var(--mcneese-blue) 100%);
}

/* Stats Legend */
.stats-legend {
    margin-top: 60px;
    padding: 30px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stats-legend h3 {
    font-size: 1.5rem;
    color: var(--mcneese-blue);
    margin-bottom: 20px;
    text-align: center;
}

.legend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.legend-item {
    padding: 10px;
    background: var(--light-gray);
    border-radius: 8px;
    font-size: 0.95rem;
}

.legend-item strong {
    color: var(--mcneese-blue);
    font-weight: 600;
}

/* Responsive Design for Roster Pages */
@media (max-width: 768px) {
    .roster-section {
        padding: 120px 0 60px;
    }
    
    .roster-section .section-header .roster-quick-links {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: 30px;
    }
    
    .roster-link {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 24px;
    }
    
    .roster-section .section-header h2 {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .roster-section .section-header p {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }
    
    .roster-section .section-header {
        margin-bottom: 60px;
    }
    
    .roster-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .player-card {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    
    .player-headshot {
        height: 380px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .player-headshot img {
        object-fit: cover;
        object-position: 50% 50%;
        display: block;
        margin: 0 auto;
    }
    
    .placeholder-headshot img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 50% 50%;
        display: block;
        margin: 0 auto;
    }
    
    .player-name {
        font-size: 1.3rem;
    }
    
    .player-stats {
        gap: 8px;
    }
    
    .player-stats .stat-value {
        font-size: 1.2rem;
    }
    
    .stats-legend {
        margin-top: 40px;
        padding: 20px;
    }
    
    .legend-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .roster-section {
        padding: 100px 0 50px;
    }
    
    .roster-section .section-header .roster-quick-links {
        gap: 10px;
        margin-top: 25px;
    }
    
    .roster-link {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .roster-section .section-header h2 {
        font-size: 2rem;
        letter-spacing: 0.5px;
    }
    
    .roster-section .section-header p {
        font-size: 1.1rem;
        letter-spacing: 1.5px;
    }
    
    .roster-section .section-header p::before,
    .roster-section .section-header p::after {
        margin: 0 10px;
        font-size: 1rem;
    }
    
    .roster-section .section-header {
        margin-bottom: 50px;
    }
    
    .player-card {
        width: 100%;
        max-width: 100%;
    }
    
    .player-headshot {
        height: 340px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .player-headshot img {
        object-fit: cover;
        object-position: 50% 50%;
        width: 100%;
        height: 100%;
        display: block;
        margin: 0 auto;
    }
    
    .placeholder-headshot img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 50% 50%;
        display: block;
        margin: 0 auto;
    }
    
    .player-info {
        padding: 15px;
    }
    
    .player-name {
        font-size: 1.2rem;
    }
    
    .player-details {
        gap: 8px;
    }
    
    .player-position,
    .player-class {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
    
    .player-bio p {
        font-size: 0.9rem;
    }
    
    .player-stats {
        gap: 6px;
        flex-wrap: wrap;
    }
    
    .player-stats .stat-item {
        padding: 8px 4px;
        min-width: 65px;
        flex: 1 1 auto;
    }
    
    .player-stats .stat-value {
        font-size: 1rem;
        line-height: 1.2;
        word-break: break-word;
    }
    
    .player-stats .stat-label {
        font-size: 0.65rem;
        line-height: 1.2;
    }
    
    .stats-legend {
        padding: 15px;
    }
    
    .stats-legend h3 {
        font-size: 1.3rem;
    }
    
    .legend-item {
        font-size: 0.85rem;
        padding: 8px;
    }
}