/* Basketball Arena Style CSS - Authentic NBA Design */

/* Import Basketball Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@300;400;500;600;700&family=Roboto+Condensed:wght@300;400;500;700&display=swap');

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

:root {
    /* Basketball Arena Colors */
    --court-orange: #ee6a24;
    --court-deep-orange: #d63031;
    --arena-black: #2d3436;
    --arena-white: #ffffff;
    --hardwood-brown: #8b4513;
    --court-lines: #ffffff;
    --arena-lights: #ffeaa7;
    --scoreboard-red: #d63031;
    --championship-gold: #fdcb6e;
    --nba-blue: #17408b;
    --jersey-shadow: rgba(0, 0, 0, 0.3);
    
    /* Basketball Typography */
    --jersey-font: 'Bebas Neue', sans-serif;
    --arena-font: 'Oswald', sans-serif;
    --stats-font: 'Roboto Condensed', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--arena-font);
    background: var(--arena-black);
    color: var(--arena-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Basketball Court Header */
.court-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(45, 52, 54, 0.95) 0%, transparent 100%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid var(--court-orange);
}

.court-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 98px,
        var(--court-lines) 98px,
        var(--court-lines) 100px
    );
    opacity: 0.1;
}

.court-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--court-orange);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--jersey-font);
    font-size: 1.8rem;
    color: var(--arena-white);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    font-family: var(--arena-font);
    font-weight: 600;
    font-size: 1rem;
    color: var(--arena-white);
    text-decoration: none;
    letter-spacing: 1px;
    padding: 10px 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--court-orange);
    transition: width 0.3s ease;
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-links a:hover {
    color: var(--court-orange);
}

.nav-stats {
    display: flex;
    gap: 20px;
}

.nav-stats .stat {
    font-family: var(--stats-font);
    font-size: 0.8rem;
    color: var(--championship-gold);
    font-weight: 700;
    letter-spacing: 1px;
}



/* Basketball Arena Hero Section */
.arena-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(ellipse at center, #8b4513 0%, #654321 100%);
}

.court-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.court-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 48px,
            rgba(255, 255, 255, 0.1) 48px,
            rgba(255, 255, 255, 0.1) 50px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 98px,
            rgba(255, 255, 255, 0.1) 98px,
            rgba(255, 255, 255, 0.1) 100px
        );
}

.arena-lights {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(255, 234, 167, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 234, 167, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 90% 40%, rgba(255, 234, 167, 0.3) 0%, transparent 50%);
}

.arena-content {
    position: relative;
    text-align: center;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.jersey-number {
    position: absolute;
    top: -50px;
    right: -100px;
    font-family: var(--jersey-font);
    font-size: 15rem;
    color: rgba(238, 106, 36, 0.1);
    line-height: 1;
    pointer-events: none;
}

.arena-title {
    font-family: var(--jersey-font);
    font-size: 4.5rem;
    line-height: 0.9;
    margin-bottom: 30px;
    text-shadow: 3px 3px 6px var(--jersey-shadow);
}

.title-line {
    display: block;
    letter-spacing: 4px;
}

.title-line.highlight {
    color: var(--court-orange);
    text-shadow: 0 0 20px rgba(238, 106, 36, 0.5);
}

.arena-subtitle {
    font-family: var(--arena-font);
    font-size: 1.5rem;
    color: var(--championship-gold);
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.arena-cta {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 50px;
}

.cta-btn {
    font-family: var(--arena-font);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 18px 40px;
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-btn.primary {
    background: var(--court-orange);
    color: var(--arena-white);
    box-shadow: 0 8px 25px rgba(238, 106, 36, 0.3);
}

.cta-btn.primary:hover {
    background: var(--court-deep-orange);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(238, 106, 36, 0.4);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--arena-white);
    border: 2px solid var(--arena-white);
}

.cta-btn.secondary:hover {
    background: var(--arena-white);
    color: var(--arena-black);
    transform: translateY(-3px);
}

.basketball-animation {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
    transition: transform 0.5s ease-out;
}

.basketball {
    font-size: 4rem;
    animation: basketballSpin 8s linear infinite;
    transform-origin: center center;
    will-change: transform, filter;
}

@keyframes bounce {
    0% { 
        transform: translateX(-50%) translateY(0) scaleY(1) scaleX(1);
        filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    }
    8% { 
        transform: translateX(-50%) translateY(-8px) scaleY(1.02) scaleX(0.98);
        filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.25));
    }
    15% { 
        transform: translateX(-50%) translateY(-18px) scaleY(1.01) scaleX(0.99);
        filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.2));
    }
    25% { 
        transform: translateX(-50%) translateY(-30px) scaleY(1) scaleX(1);
        filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
    }
    35% { 
        transform: translateX(-50%) translateY(-40px) scaleY(0.98) scaleX(1.02);
        filter: drop-shadow(0 35px 30px rgba(0, 0, 0, 0.1));
    }
    50% { 
        transform: translateX(-50%) translateY(-45px) scaleY(0.95) scaleX(1.05);
        filter: drop-shadow(0 45px 35px rgba(0, 0, 0, 0.08));
    }
    65% { 
        transform: translateX(-50%) translateY(-35px) scaleY(0.98) scaleX(1.02);
        filter: drop-shadow(0 35px 30px rgba(0, 0, 0, 0.1));
    }
    75% { 
        transform: translateX(-50%) translateY(-20px) scaleY(1.01) scaleX(0.99);
        filter: drop-shadow(0 20px 20px rgba(0, 0, 0, 0.2));
    }
    85% { 
        transform: translateX(-50%) translateY(-8px) scaleY(1.02) scaleX(0.98);
        filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.25));
    }
    92% { 
        transform: translateX(-50%) translateY(-2px) scaleY(1.03) scaleX(0.97);
        filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
    }
    100% { 
        transform: translateX(-50%) translateY(0) scaleY(1) scaleX(1);
        filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    }
}

@keyframes basketballSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes basketballFloat {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    33% { transform: translateX(-48%) translateY(-2px); }
    66% { transform: translateX(-52%) translateY(-1px); }
}

/* Scoreboard */
.scoreboard {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--arena-black) 0%, #636e72 100%);
    border: 3px solid var(--court-orange);
    border-radius: 15px;
    padding: 20px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.scoreboard-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.team {
    text-align: center;
}

.team-name {
    display: block;
    font-family: var(--stats-font);
    font-size: 0.9rem;
    color: var(--arena-white);
    font-weight: 700;
    letter-spacing: 1px;
}

.score {
    display: block;
    font-family: var(--jersey-font);
    font-size: 2.5rem;
    color: var(--court-orange);
    line-height: 1;
}

.vs {
    font-family: var(--arena-font);
    font-size: 1.2rem;
    color: var(--championship-gold);
    font-weight: 700;
}

/* Legends Section */
.legends-section {
    padding: 120px 40px;
    background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
    position: relative;
}

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

.section-title {
    font-family: var(--jersey-font);
    font-size: 3.5rem;
    color: var(--arena-white);
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px var(--jersey-shadow);
}

.section-subtitle {
    font-family: var(--arena-font);
    font-size: 1.3rem;
    color: var(--championship-gold);
    letter-spacing: 1px;
}

.legends-court {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.legend-card {
    background: linear-gradient(135deg, var(--arena-black) 0%, #34495e 100%);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
}

.legend-card:hover {
    transform: translateY(-10px);
    border-color: var(--court-orange);
    box-shadow: 0 20px 40px rgba(238, 106, 36, 0.2);
}

.jersey-bg {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--court-orange) 0%, var(--court-deep-orange) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.2;
}

.jersey-number {
    font-family: var(--jersey-font);
    font-size: 3rem;
    color: var(--arena-white);
    font-weight: 900;
}

.legend-info h3 {
    font-family: var(--jersey-font);
    font-size: 2rem;
    color: var(--arena-white);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.position {
    font-family: var(--arena-font);
    font-size: 1.1rem;
    color: var(--court-orange);
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.achievements {
    font-family: var(--stats-font);
    font-size: 1rem;
    color: var(--championship-gold);
    margin-bottom: 20px;
    line-height: 1.4;
}

.legend-stats {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.legend-stats .stat {
    background: var(--court-orange);
    color: var(--arena-white);
    padding: 8px 12px;
    border-radius: 20px;
    font-family: var(--stats-font);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Collections Showcase */
.collections-showcase {
    padding: 120px 40px;
    background: var(--hardwood-brown);
    position: relative;
}

.locker-room-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 35px,
            rgba(255, 255, 255, 0.02) 35px,
            rgba(255, 255, 255, 0.02) 70px
        );
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.collection-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--arena-black);
}

.collection-item:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.collection-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.collection-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
    transition: all 0.3s ease;
}

.collection-item:hover .collection-image::before {
    background: rgba(0, 0, 0, 0.8);
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.collection-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
    color: var(--arena-white);
    padding: 25px 20px 20px;
    transform: translateY(0);
    transition: all 0.3s ease;
    z-index: 2;
}

.collection-item:hover .collection-overlay {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9));
}

.collection-type {
    font-family: var(--stats-font);
    font-size: 0.8rem;
    color: var(--court-orange);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.collection-overlay h3 {
    font-family: var(--jersey-font);
    font-size: 1.5rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.collection-overlay p {
    font-family: var(--arena-font);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 15px;
    opacity: 0.9;
}

.view-collection {
    background: var(--court-orange);
    color: var(--arena-white);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-family: var(--arena-font);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.view-collection:hover {
    background: var(--court-deep-orange);
    transform: translateY(-2px);
}

/* Highlights Section */
.highlights-section {
    padding: 120px 40px;
    background: var(--arena-black);
    position: relative;
}

.highlights-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(238, 106, 36, 0.05) 0%, transparent 70%);
}

.highlights-ticker {
    background: var(--scoreboard-red);
    padding: 15px 0;
    margin-bottom: 60px;
    overflow: hidden;
    position: relative;
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: scroll 30s linear infinite;
    font-family: var(--stats-font);
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
}

.breaking {
    background: var(--championship-gold);
    color: var(--arena-black);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
}

.news-item {
    color: var(--arena-white);
    font-size: 1rem;
}

.separator {
    color: var(--championship-gold);
    font-size: 1.2rem;
}

@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.highlights-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.highlight-card {
    background: linear-gradient(135deg, var(--arena-black) 0%, #34495e 100%);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.highlight-card:hover {
    border-color: var(--court-orange);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(238, 106, 36, 0.2);
}

.highlight-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.highlight-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
    transition: all 0.3s ease;
}

.highlight-card:hover .highlight-image::before {
    background: rgba(0, 0, 0, 0.8);
}



.highlight-card.main-story .highlight-image::before {
    background: rgba(0, 0, 0, 0.7);
}

.highlight-card.main-story:hover .highlight-image::before {
    background: rgba(0, 0, 0, 0.8);
}

.highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(238, 106, 36, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--arena-white);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.play-button:hover {
    background: var(--court-orange);
    transform: translate(-50%, -50%) scale(1.1);
}

.highlight-content {
    padding: 25px;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.highlight-category {
    font-family: var(--stats-font);
    font-size: 0.8rem;
    color: var(--court-orange);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.highlight-content h3 {
    font-family: var(--jersey-font);
    font-size: 1.4rem;
    color: var(--arena-white);
    margin-bottom: 15px;
    letter-spacing: 1px;
    line-height: 1.2;
}

.highlight-card.main-story .highlight-content h3 {
    font-size: 1.8rem;
}

.highlight-content p {
    font-family: var(--arena-font);
    font-size: 0.9rem;
    color: #ddd;
    line-height: 1.5;
    margin-bottom: 15px;
}

.highlight-stats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.highlight-stats .stat {
    background: var(--nba-blue);
    color: var(--arena-white);
    padding: 5px 10px;
    border-radius: 15px;
    font-family: var(--stats-font);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Championship Section */
.championship-section {
    padding: 120px 40px;
    background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
    position: relative;
}

.trophy-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(253, 203, 110, 0.1) 0%, transparent 50%);
}

.stats-banner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 80px;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--arena-black) 0%, #34495e 100%);
    border-radius: 15px;
    border: 2px solid var(--court-orange);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(238, 106, 36, 0.2);
}

.stat-number {
    display: block;
    font-family: var(--jersey-font);
    font-size: 3rem;
    color: var(--court-orange);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-family: var(--stats-font);
    font-size: 0.9rem;
    color: var(--arena-white);
    font-weight: 700;
    letter-spacing: 1px;
}

.authenticity-guarantee {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.guarantee-content {
    background: linear-gradient(135deg, var(--arena-black) 0%, #34495e 100%);
    padding: 50px;
    border-radius: 20px;
    border: 3px solid var(--championship-gold);
    position: relative;
}

.certificate-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--championship-gold);
    color: var(--arena-black);
    padding: 10px 30px;
    border-radius: 25px;
    font-family: var(--stats-font);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.guarantee-text h3 {
    font-family: var(--jersey-font);
    font-size: 2.5rem;
    color: var(--arena-white);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.guarantee-text p {
    font-family: var(--arena-font);
    font-size: 1.1rem;
    color: #ddd;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 120px 40px;
    background: var(--hardwood-brown);
    position: relative;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 98px,
            rgba(255, 255, 255, 0.02) 98px,
            rgba(255, 255, 255, 0.02) 100px
        );
    pointer-events: none; /* 允许点击事件穿透 */
}

.contact-arena {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info-center {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    text-align: center;
}

.office-card {
    background: linear-gradient(135deg, var(--arena-black) 0%, #34495e 100%);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid var(--court-orange);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.office-card h3 {
    font-family: var(--jersey-font);
    font-size: 1.8rem;
    color: var(--court-orange);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.address p {
    font-family: var(--arena-font);
    font-size: 1.1rem;
    color: var(--arena-white);
    line-height: 1.4;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(238, 106, 36, 0.2);
}

.label {
    font-family: var(--stats-font);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--championship-gold);
    letter-spacing: 1px;
    min-width: 80px;
}

.value {
    font-family: var(--arena-font);
    font-size: 1rem;
    color: var(--arena-white);
}

.business-hours h4 {
    font-family: var(--jersey-font);
    font-size: 1.3rem;
    color: var(--court-orange);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.business-hours p {
    font-family: var(--arena-font);
    color: var(--arena-white);
    line-height: 1.5;
}



/* Footer */
.court-footer {
    background: var(--arena-black);
    padding: 60px 40px 30px;
    position: relative;
    border-top: 3px solid var(--court-orange);
}

.footer-court-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 98px,
        rgba(238, 106, 36, 0.1) 98px,
        rgba(238, 106, 36, 0.1) 100px
    );
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-direction: column;
}

.footer-brand img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--court-orange);
    box-shadow: 0 5px 15px rgba(238, 106, 36, 0.3);
}

.brand-info {
    text-align: center;
}

.brand-info h3 {
    font-family: var(--jersey-font);
    font-size: 1.8rem;
    color: var(--arena-white);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.brand-info p {
    font-family: var(--arena-font);
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 1rem;
}



.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(238, 106, 36, 0.3);
}

.copyright p {
    font-family: var(--stats-font);
    color: #999;
    font-size: 0.9rem;
}

.certifications {
    display: flex;
    gap: 20px;
}

.cert {
    background: var(--nba-blue);
    color: var(--arena-white);
    padding: 8px 15px;
    border-radius: 20px;
    font-family: var(--stats-font);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--arena-white);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: var(--court-orange);
}

.modal-content video {
    width: 100%;
    border-radius: 10px;
}

/* YouTube Video Modal */
.youtube-modal {
    width: 95%;
    max-width: 1200px;
}

.youtube-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: var(--arena-black);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.youtube-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .court-nav {
        padding: 15px 20px;
    }
    
    .nav-center {
        display: none;
    }
    
    .arena-title {
        font-size: 3rem;
    }
    
    .jersey-number {
        font-size: 8rem;
        top: -30px;
        right: -50px;
    }
    
    .arena-cta {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .legends-court {
        grid-template-columns: 1fr;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-image {
        height: 250px;
    }
    
    .stats-banner {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-arena {
        flex-direction: column;
        gap: 40px;
        min-height: auto;
    }
    

    
    .footer-content {
        padding: 0 20px;
    }
    
    .footer-brand {
        gap: 15px;
    }
    
    .footer-brand img {
        width: 70px;
        height: 70px;
    }
    
    .brand-info h3 {
        font-size: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    /* YouTube Modal responsive */
    .youtube-modal {
        width: 95%;
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .arena-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .scoreboard-content {
        gap: 20px;
    }
    
    .stats-banner {
        grid-template-columns: 1fr;
    }
    

}

 