/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --usc-cardinal: #990000;
    --usc-gold: #FFCC00;
    --black: #000000;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --chess-dark: #2c3e50;
    --chess-light: #ecf0f1;
    --chess-accent: #e74c3c;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    overflow-x: hidden;
    background: linear-gradient(135deg, var(--chess-light) 0%, var(--white) 100%);
}

/* Chess Board Pattern Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, var(--chess-dark) 25%, transparent 25%),
        linear-gradient(-45deg, var(--chess-dark) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, var(--chess-dark) 75%),
        linear-gradient(-45deg, transparent 75%, var(--chess-dark) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Chess Piece Icons */
.chess-icon {
    font-family: 'Arial Unicode MS', sans-serif;
    font-size: 1.2em;
    margin-right: 0.5rem;
}

.chess-king::before { content: '♔'; }
.chess-queen::before { content: '♕'; }
.chess-rook::before { content: '♖'; }
.chess-bishop::before { content: '♗'; }
.chess-knight::before { content: '♘'; }
.chess-pawn::before { content: '♙'; }

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 2px solid var(--usc-gold);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-link {
    display: block;
    width: 60px;
    height: 60px;
    background: url('logo.png') center/contain no-repeat;
    background-size: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--usc-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--usc-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--usc-cardinal) 0%, var(--black) 100%);
    z-index: -2;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('PXL_20250428_015931423.MP.jpg') center/cover;
    opacity: 0.3;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(153, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
    z-index: -1;
}

/* Chess pieces floating in hero */
.hero::before {
    content: '♔♕♖♗♘♙';
    position: absolute;
    top: 10%;
    right: 5%;
    font-size: 3rem;
    color: rgba(255, 204, 0, 0.1);
    font-family: 'Arial Unicode MS', sans-serif;
    animation: float 6s ease-in-out infinite;
    z-index: 0;
}

.hero::after {
    content: '♙♘♗♖♕♔';
    position: absolute;
    bottom: 10%;
    left: 5%;
    font-size: 2.5rem;
    color: rgba(255, 204, 0, 0.1);
    font-family: 'Arial Unicode MS', sans-serif;
    animation: float 8s ease-in-out infinite reverse;
    z-index: 0;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    position: relative;
}

.hero-title::before {
    content: '♔';
    position: absolute;
    left: -40px;
    top: 0;
    font-size: 2rem;
    color: var(--usc-gold);
    font-family: 'Arial Unicode MS', sans-serif;
}

.hero-title::after {
    content: '♔';
    position: absolute;
    right: -40px;
    top: 0;
    font-size: 2rem;
    color: var(--usc-gold);
    font-family: 'Arial Unicode MS', sans-serif;
}

.hero-subtitle {
    display: block;
    font-size: 2rem;
    color: var(--usc-gold);
    font-weight: 600;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--usc-gold);
    color: var(--black);
}

.btn-primary:hover {
    background: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 204, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2::before {
    content: '♔';
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--usc-cardinal);
    font-family: 'Arial Unicode MS', sans-serif;
}

.section-header h2::after {
    content: '♔';
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--usc-cardinal);
    font-family: 'Arial Unicode MS', sans-serif;
}

/* Remove chess kings from sections with red backgrounds */
.hall-of-fame .section-header h2::before,
.hall-of-fame .section-header h2::after,
.hype-video .section-header h2::before,
.hype-video .section-header h2::after {
    display: none;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--gray-100);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--usc-cardinal);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--gray-700);
}

.achievement-highlight {
    background: var(--usc-cardinal);
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 2rem;
}

.achievement-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--usc-gold);
    margin-bottom: 0.5rem;
}

.achievement-text {
    font-size: 1.1rem;
    font-weight: 500;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Team Section */
.team {
    background: var(--white);
}

.captain-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
    background: var(--gray-100);
    padding: 40px;
    border-radius: 20px;
}

.captain-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.captain-info h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--usc-cardinal);
    margin-bottom: 0.5rem;
}

.captain-title {
    color: var(--usc-gold);
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 1rem;
}

.captain-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--gray-700);
}

.captain-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--usc-cardinal);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 500;
}

.team-roster h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 2rem;
    text-align: center;
}

.roster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.player-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.player-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.player-image {
    height: 200px;
    overflow: hidden;
}

.player-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.player-card:hover .player-image img {
    transform: scale(1.05);
}

.player-info {
    padding: 20px;
    text-align: center;
}

.player-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.player-position {
    color: var(--usc-cardinal);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Hall of Fame Section */
.hall-of-fame {
    background: linear-gradient(135deg, var(--usc-cardinal) 0%, var(--black) 100%);
    color: var(--white);
    position: relative;
}

.hall-of-fame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,204,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.3;
}

.hall-of-fame .section-header h2 {
    color: var(--white);
}

.hall-of-fame .section-header p {
    color: var(--gray-300);
}

.hof-intro {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.hof-trophy {
    font-size: 4rem;
    color: var(--usc-gold);
    margin-bottom: 1rem;
    animation: shine 2s infinite;
    position: relative;
}

.hof-trophy::before {
    content: '♔♕♖♗♘♙';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: var(--usc-cardinal);
    font-family: 'Arial Unicode MS', sans-serif;
    opacity: 0.7;
}

@keyframes shine {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3) drop-shadow(0 0 10px var(--usc-gold)); }
}

.hof-intro h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--usc-gold);
    margin-bottom: 1rem;
}

.hof-intro p {
    font-size: 1.2rem;
    color: var(--gray-300);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.hof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.hof-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.hof-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--usc-gold);
}

.hof-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.hof-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Specific adjustment for Chris's photo */
.hof-card:nth-child(9) .hof-image img {
    object-position: center 20%;
}

/* Specific adjustment for Stone's photo */
.hof-card:nth-child(2) .hof-image img {
    object-position: center 30%;
}

/* Specific adjustment for Jarod's photo - zoom out to show more of his face */
.hof-card:nth-child(6) .hof-image img {
    object-fit: contain;
    background-color: rgba(0, 0, 0, 0.3);
}

/* Specific adjustment for Ella's photo - zoom out to show more of her face */
.hof-card:nth-child(4) .hof-image img {
    object-fit: contain;
    background-color: rgba(0, 0, 0, 0.3);
}

/* Class of 2026 — fill card while keeping faces in frame */
.hof-grid-2026 .hof-image img {
    object-fit: cover;
    object-position: center center;
    background-color: rgba(176, 12, 12, 0.35);
}

/* Max, Minh, Riley — show full face without card crop */
.hof-grid-2026 .hof-card:nth-child(2) .hof-image img,
.hof-grid-2026 .hof-card:nth-child(3) .hof-image img,
.hof-grid-2026 .hof-card:nth-child(4) .hof-image img {
    object-fit: contain;
}

/* Riley — shift framing down and left in the card */
.hof-grid-2026 .hof-card:nth-child(4) .hof-image img {
    object-position: 40% 38%;
}

/* Individual 2026 photo controls (zoom + framing) */
.hof-grid-2026 .hof-card:nth-child(1) .hof-image img {
    object-fit: contain;
    transform: scale(1.18);
    object-position: center 30%;
}

.hof-grid-2026 .hof-card:nth-child(2) .hof-image img {
    transform: scale(4);
    object-position: center center;
}

.hof-grid-2026 .hof-card:nth-child(3) .hof-image img {
    transform: scale(2.1);
    object-position: center 2%;
}

.hof-grid-2026 .hof-card:nth-child(4) .hof-image img {
    transform: scale(1);
    object-position: 40% 38%;
}

.hof-grid-2026 .hof-card:nth-child(5) .hof-image img {
    transform: scale(1);
    object-position: center center;
}

.hof-card:hover .hof-image img:not(.hof-toggle-photo--alt) {
    transform: scale(1.05);
}

.hof-card-minh:hover .hof-image img.hof-toggle-photo--alt {
    transform: scale(0.85);
}

.hof-photo-toggle {
    position: absolute;
    bottom: 12px;
    left: 12px;
    z-index: 2;
    padding: 6px 10px;
    border: 2px solid var(--usc-gold);
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.65);
    color: var(--usc-gold);
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.hof-photo-toggle:hover {
    transform: scale(1.08);
    background: rgba(153, 0, 0, 0.85);
}

.hof-toggle-photo--alt {
    object-fit: contain;
    background-color: rgba(0, 0, 0, 0.35);
}

.hof-grid-2026 .hof-card-minh .hof-image img.hof-toggle-photo--alt {
    transform: scale(0.82);
    object-fit: contain;
    object-position: center center;
}

.hof-number {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--usc-gold);
    color: var(--black);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hof-info {
    padding: 25px;
}

.hof-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.hof-position {
    color: var(--usc-gold);
    font-weight: 600;
    font-size: 1rem;
    display: block;
    margin-bottom: 1rem;
}

.hof-achievements {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.achievement-tag {
    background: var(--usc-gold);
    color: var(--black);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.hof-info p {
    color: var(--gray-300);
    line-height: 1.6;
    font-size: 0.95rem;
}

.hof-induction {
    text-align: center;
    position: relative;
    z-index: 1;
}

.induction-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--usc-gold);
    margin-bottom: 1rem;
}

.induction-text p {
    font-size: 1.1rem;
    color: var(--gray-300);
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.induction-quote {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.induction-quote blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.induction-quote cite {
    color: var(--usc-gold);
    font-weight: 600;
    font-size: 1rem;
}

/* Gallery Section */
.gallery {
    background: var(--gray-100);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--usc-cardinal);
    background: transparent;
    color: var(--usc-cardinal);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--usc-cardinal);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item img[src="team1.jpg"] {
    object-position: center 100%;
}

.gallery-item img[src="team6.jpg"] {
    object-position: center bottom;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Highlights Section */
.highlights {
    background: var(--white);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.highlight-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--gray-100);
    border-radius: 15px;
    transition: transform 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    background: linear-gradient(45deg, var(--usc-cardinal), var(--usc-gold));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.highlight-card:hover::before {
    opacity: 0.1;
}

.highlight-card:hover {
    border-color: var(--usc-cardinal);
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.highlight-icon {
    font-size: 3rem;
    color: var(--usc-cardinal);
    margin-bottom: 1rem;
}

.highlight-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1rem;
}

.highlight-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

.testimonial-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial cite {
    color: var(--usc-cardinal);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Video Highlights Section */
.video-highlights {
    margin-top: 80px;
    text-align: center;
}

.video-highlights h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
}

.video-highlights > p {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 2rem;
}

.video-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.video-item video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: var(--gray-900);
}

.video-caption {
    padding: 20px;
    text-align: center;
}

.video-caption h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.video-caption p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Graduation Section */
.graduation {
    background: linear-gradient(135deg, var(--usc-cardinal) 0%, #5c0000 50%, var(--black) 100%);
    color: var(--white);
    padding: 70px 0;
}

.graduation .section-header h2 {
    color: var(--usc-gold);
}

.graduation .section-header p {
    color: var(--gray-300);
}

.graduation-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
    max-width: 1150px;
    margin: 0 auto;
}

.graduation-image {
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid var(--usc-gold);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.graduation-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center 48%;
    transform: scale(1.42);
    display: block;
}

.graduation-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--usc-gold);
    margin-bottom: 1rem;
}

.graduation-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-200);
    margin-bottom: 1rem;
}

.graduation-signoff {
    color: var(--usc-gold);
    font-weight: 600;
    font-style: italic;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .graduation-content {
        grid-template-columns: 1fr;
    }

    .graduation-image img {
        height: 400px;
        object-position: center 48%;
        transform: scale(1.35);
    }
}

/* Contact Section */
.contact {
    background: var(--gray-100);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--usc-cardinal);
    width: 30px;
}

.contact-method h4 {
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.contact-method p {
    color: var(--gray-600);
    margin: 0;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--gray-300);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--usc-cardinal);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 20px;
    position: relative;
}

.footer::before {
    content: '♔♕♖♗♘♙♙♘♗♖♕♔';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 1.5rem;
    color: var(--usc-gold);
    font-family: 'Arial Unicode MS', sans-serif;
    opacity: 0.3;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 204, 0, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--usc-gold);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--gray-400);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--usc-gold);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--usc-cardinal);
    color: var(--white);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--usc-gold);
    color: var(--black);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--gray-800);
    color: var(--gray-400);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .captain-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .captain-stats {
        justify-content: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 200px;
    }

    .hof-grid {
        grid-template-columns: 1fr;
    }

    .hof-intro h3 {
        font-size: 2rem;
    }

    .hof-trophy {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .captain-info h3 {
        font-size: 2rem;
    }

    .roster-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .hof-intro h3 {
        font-size: 1.5rem;
    }

    .hof-trophy {
        font-size: 2.5rem;
    }
}

.testimonials {
    background: var(--gray-100);
    padding: 80px 0;
}

.testimonials-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.mini-movie {
    flex: 1 1 350px;
    min-width: 320px;
    max-width: 600px;
    margin-bottom: 40px;
}

.mini-movie h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--usc-cardinal);
    margin-bottom: 1rem;
}

.movie-placeholder {
    background: #eee;
    border-radius: 12px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #888;
}

.written-testimonials {
    flex: 1 1 350px;
    min-width: 320px;
    max-width: 600px;
}

.written-testimonials h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--usc-cardinal);
    margin-bottom: 1rem;
}

.testimonial-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-block {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    padding: 30px 25px;
    font-size: 1.1rem;
    color: var(--gray-800);
    position: relative;
}

.testimonial-block blockquote {
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-block cite {
    color: var(--usc-cardinal);
    font-weight: 600;
    font-size: 1rem;
}

@media (max-width: 900px) {
    .testimonials-content {
        flex-direction: column;
        gap: 60px;
    }
    .mini-movie, .written-testimonials {
        max-width: 100%;
    }
}

/* Hype Video Section */
.hype-video {
    background: linear-gradient(135deg, var(--black) 0%, var(--usc-cardinal) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.hype-video .section-header h2 {
    color: var(--white);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hype-video .section-header p {
    color: var(--gray-300);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

/* Champions Section */
.champions {
    background: linear-gradient(135deg, var(--usc-cardinal) 0%, var(--black) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.champions::before {
    content: '🏆';
    position: absolute;
    top: 10%;
    left: 5%;
    font-size: 8rem;
    opacity: 0.1;
    z-index: 0;
}

.champions::after {
    content: '🏆';
    position: absolute;
    bottom: 10%;
    right: 5%;
    font-size: 8rem;
    opacity: 0.1;
    z-index: 0;
}

.champions .section-header h2 {
    color: var(--usc-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.champions .section-header p {
    color: var(--gray-200);
}

.champions-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.champions-season + .champions-season {
    margin-top: 80px;
    padding-top: 80px;
    border-top: 2px solid rgba(255, 204, 0, 0.35);
}

/* 2026 championship — navy / silver / cyan (distinct from 2025 cardinal & gold) */
.champions-season-2026 {
    --champ-26-bg-start: #0a1628;
    --champ-26-bg-mid: #132f4c;
    --champ-26-bg-end: #0c1f33;
    --champ-26-accent: #94a3b8;
    --champ-26-highlight: #38bdf8;
    --champ-26-highlight-soft: #7dd3fc;
    --champ-26-glow: rgba(56, 189, 248, 0.35);
    --champ-26-text: #e2e8f0;
    --champ-26-text-muted: rgba(226, 232, 240, 0.75);

    margin-top: 80px;
    padding: 60px 32px;
    border-top: none;
    border-radius: 24px;
    background: linear-gradient(145deg, var(--champ-26-bg-start) 0%, var(--champ-26-bg-mid) 45%, var(--champ-26-bg-end) 100%);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(148, 163, 184, 0.15);
    color: var(--champ-26-text);
    position: relative;
    overflow: hidden;
}

.champions-confetti {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.confetti-piece {
    position: absolute;
    top: -10%;
    opacity: 0.9;
    animation: confetti-fall linear infinite;
    will-change: transform;
}

@keyframes confetti-fall {
    0% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
    100% {
        transform: translate3d(var(--drift), 120%, 0) rotate(var(--spin));
    }
}

@media (prefers-reduced-motion: reduce) {
    .confetti-piece {
        animation: none;
        display: none;
    }
}

.champions-season-2026::before {
    content: '★';
    position: absolute;
    top: 24px;
    right: 28px;
    font-size: 2.5rem;
    color: var(--champ-26-highlight);
    opacity: 0.25;
    pointer-events: none;
}

.champions-season-2026 .champions-subtitle {
    background: rgba(56, 189, 248, 0.12);
    border-color: var(--champ-26-highlight);
    box-shadow: 0 10px 30px var(--champ-26-glow);
}

.champions-season-2026 .champions-subtitle h3 {
    color: var(--champ-26-highlight-soft);
    text-shadow: 0 0 20px var(--champ-26-glow);
}

.champions-season-2026 .champions-stat,
.champions-season-2026 .captain-group {
    border-color: var(--champ-26-accent);
    background: rgba(15, 23, 42, 0.55);
}

.champions-season-2026 .captain-group:hover {
    box-shadow: 0 12px 30px var(--champ-26-glow);
    border-color: var(--champ-26-highlight);
}

.champions-season-2026 .champions-stat strong,
.champions-season-2026 .captain-group .captain-title {
    color: var(--champ-26-highlight-soft);
}

.champions-season-2026 .captain-group .captain-label {
    color: var(--champ-26-text-muted);
}

.champions-season-2026 .captain-group .captain-name,
.champions-season-2026 .champions-stat {
    color: var(--champ-26-text);
}

.champions-season-2026 .champions-image {
    border-color: var(--champ-26-highlight);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 30px var(--champ-26-glow);
}

.champions-season-2026 .champions-image-placeholder {
    background: rgba(15, 23, 42, 0.6);
}

.champions-season-2026 .champions-placeholder-box {
    color: var(--champ-26-text-muted);
}

.champions-season-2026 .champions-placeholder-box i {
    color: var(--champ-26-highlight);
}

.champions-season-2026 .champions-description {
    border-color: rgba(148, 163, 184, 0.35);
    background: rgba(15, 23, 42, 0.45);
}

.champions-season-2026 .champions-description p {
    color: var(--champ-26-text);
}

.champions-season-2026 .champions-description p:last-child {
    color: var(--champ-26-highlight-soft);
}

.champions-season-2026 .champions-scores {
    border-color: rgba(56, 189, 248, 0.35);
    background: rgba(15, 23, 42, 0.45);
}

.champions-season-2026 .champions-scores h4 {
    color: var(--champ-26-highlight-soft);
}

.champions-season-2026 .score-list li {
    color: var(--champ-26-text);
    border-bottom-color: rgba(148, 163, 184, 0.25);
}

.champions-season-2026 .score-list li.playoffs-header {
    color: var(--champ-26-highlight-soft);
    border-bottom-color: var(--champ-26-highlight);
}

.champions-season-2026 .score-win {
    color: var(--champ-26-highlight);
    text-shadow: 0 0 12px var(--champ-26-glow);
}

.champions-season-2026 .score-loss {
    color: var(--champ-26-text-muted);
}

.champions-image-placeholder {
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
}

.champions-placeholder-box {
    text-align: center;
    color: var(--gray-300);
    padding: 40px;
}

.champions-placeholder-box i {
    font-size: 3rem;
    color: var(--usc-gold);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.champions-placeholder-box p {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.champions-subtitle {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 40px;
    background: rgba(255, 204, 0, 0.15);
    border: 3px solid var(--usc-gold);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(255, 204, 0, 0.3);
}

.champions-subtitle h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--usc-gold);
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.champions-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.champions-captains {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 20px;
}

.captain-group {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--usc-gold);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.captain-group:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(255, 204, 0, 0.4);
}

.captain-group .captain-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--usc-gold);
    margin: 0 0 10px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.captain-group .captain-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.captain-group .captain-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.champions-stat {
    font-size: 1.3rem;
    color: var(--white);
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--usc-gold);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.champions-stat strong {
    color: var(--usc-gold);
    font-weight: 700;
    font-size: 1.1em;
}

.champions-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 204, 0, 0.3);
    border: 4px solid var(--usc-gold);
    position: relative;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.champions-image:hover {
    transform: scale(1.02);
}

.champions-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.champions-scores {
    width: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(255, 204, 0, 0.3);
    backdrop-filter: blur(10px);
}

.champions-scores h4 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--usc-gold);
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.score-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.score-list li {
    font-size: 1.15rem;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
}

.score-list li:last-child {
    border-bottom: none;
}

.score-list li.playoffs-header {
    font-weight: 800;
    color: var(--usc-gold);
    font-size: 1.4rem;
    margin-top: 20px;
    padding-top: 25px;
    border-bottom: 3px solid var(--usc-gold);
    justify-content: flex-start;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.score-win {
    color: var(--usc-gold);
    font-weight: 700;
    font-size: 1.1em;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
}

.score-loss {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.champions-description {
    text-align: left;
    max-width: 800px;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid rgba(255, 204, 0, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.champions-description p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--white);
    margin: 0 0 1.5rem 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.champions-description p:last-child {
    margin-bottom: 0;
    font-weight: 600;
    color: var(--usc-gold);
    font-size: 1.3rem;
} 