/**
 * Ponta Firme FC - Identidade Visual Premium
 * Design inspirado em clubes profissionais
 * Paleta: Branco + Vermelho (#D40000) + Preto
 */

 html {
    scroll-behavior: smooth;
}

:root {
    /* Cores Primárias */
    --white: #FFFFFF;
    --red: #D40000;
    --black: #000000;
    
    /* Cores Secundárias */
    --gray-light: #F4F4F4;
    --gray-dark: #1A1A1A;
    --gray-medium: #7A7A7A;
    --red-overlay: rgba(212, 0, 0, 0.85);
    --red-light: rgba(212, 0, 0, 0.1);
    
    /* Tipografia - SEM MONTSERRAT */
    --font-primary: 'Poppins', sans-serif;
    --font-menu: 'Oswald', sans-serif;
    --font-title: 'Bebas Neue', sans-serif;
    
    /* Estilos */
    --radius: 12px;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 24px rgba(212, 0, 0, 0.25);
    --shadow-red: 0 4px 16px rgba(212, 0, 0, 0.2);
    
    --transition: all 0.2s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Textura sutil esportiva no fundo */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(212, 0, 0, 0.02) 2px,
            rgba(212, 0, 0, 0.02) 4px
        );
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Divisor vermelho fino */
.divider-red {
    height: 2px;
    background-color: var(--red);
    width: 100%;
    margin: 40px 0;
}

.divider-red-thin {
    height: 1px;
    background-color: var(--red);
    width: 80%;
    margin: 30px auto;
    max-width: 200px;
}

/* Navbar */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    border-bottom: 2px solid var(--red);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand .logo-text {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--red);
    text-decoration: none;
    font-family: var(--font-title);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    font-family: var(--font-menu);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--red);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--red);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--black);
    transition: var(--transition);
}

/* Hero Section - Premium com overlay */
.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    margin-bottom: 60px;
    background-color: var(--black);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--red-overlay) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-family: var(--font-title);
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero .btn {
    font-size: 1.1rem;
    padding: 16px 40px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: var(--font-menu);
    font-weight: 600;
}

/* Buttons Premium */
.btn {
    display: inline-block;
    padding: 14px 28px;
    background-color: var(--red);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: var(--shadow-red);
    font-family: var(--font-primary);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    background-color: #B80000;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    filter: brightness(1.1);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--red);
    color: var(--red);
    box-shadow: none;
}

.btn-secondary:hover {
    background-color: var(--red);
    color: var(--white);
    box-shadow: var(--shadow-red);
}

/* Cards Premium */
.card {
    background-color: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--red);
    transform: scaleX(0);
    transition: var(--transition);
    z-index: 1;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--red);
}

.card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.card:hover .card-img {
    transform: scale(1.05);
}

.card-body {
    padding: 1.8rem;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--black);
    font-family: var(--font-menu);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-text {
    color: var(--gray-medium);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

/* Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 60px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

/* Sections */
.section {
    padding: 80px 20px;
    position: relative;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--red);
    font-family: var(--font-title);
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--red);
}

/* About Section */
.about {
    background-color: var(--gray-light);
    padding: 100px 20px;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--red);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--red);
    font-weight: 400;
    font-family: var(--font-title);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-content h3 {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--red);
    font-family: var(--font-title);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--black);
    line-height: 1.9;
    margin-bottom: 1.8rem;
    font-weight: 400;
    text-align: justify;
}

.about-content .quote {
    font-style: italic;
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: rgba(212, 0, 0, 0.05);
    border-left: 4px solid var(--red);
    border-radius: var(--radius);
}

.about-content .highlight {
    margin-top: 1.5rem;
    font-weight: 600;
}

.about-logo {
    width: 220px;
    height: 220px;
    margin: 0 auto 3rem;
    background: linear-gradient(135deg, var(--red) 0%, #B80000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-hover);
    border: 4px solid var(--white);
    position: relative;
    overflow: hidden;
    padding: 10px;
}

.equipe-logo {
    width: 70%;
    height: 70%;
    object-fit: contain;
    border-radius: 50%;
}

.about-logo::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid var(--red);
    opacity: 0.3;
}

/* Quick Links */
.quick-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.98);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    width: 90vw;
    max-width: 1400px;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: var(--radius);
    border: 3px solid var(--red);
    display: block;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-family: var(--font-menu);
    z-index: 2001;
    line-height: 1;
}

.lightbox-close:hover {
    background: rgba(212, 0, 0, 0.8);
    border-color: var(--red);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    padding: 0;
    cursor: pointer;
    font-size: 2rem;
    transition: var(--transition);
    font-family: var(--font-menu);
    z-index: 2001;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.lightbox-nav:hover {
    background: rgba(212, 0, 0, 0.8);
    border-color: var(--red);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1rem;
    font-family: var(--font-menu);
    background: rgba(0, 0, 0, 0.6);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    z-index: 2001;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.98);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 90vw;
    max-width: 1400px;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal video {
    width: 100%;
    max-width: 100%;
    max-height: 90vh;
    height: auto;
    border-radius: var(--radius);
    border: 3px solid var(--red);
    display: block;
    object-fit: contain;
}

.video-modal iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius);
    min-height: 50vh;
    border: 3px solid var(--red);
}

.video-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-family: var(--font-menu);
    z-index: 2001;
    line-height: 1;
}

.video-modal-close:hover {
    background: rgba(212, 0, 0, 0.8);
    border-color: var(--red);
    transform: scale(1.1);
}

.video-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    padding: 0;
    cursor: pointer;
    font-size: 2rem;
    transition: var(--transition);
    font-family: var(--font-menu);
    z-index: 2001;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.video-modal-nav:hover {
    background: rgba(212, 0, 0, 0.8);
    border-color: var(--red);
    transform: translateY(-50%) scale(1.1);
}

.video-modal-prev {
    left: 20px;
}

.video-modal-next {
    right: 20px;
}

.video-modal-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1rem;
    font-family: var(--font-menu);
    background: rgba(0, 0, 0, 0.6);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    z-index: 2001;
}

/* Player Profile Modal */
.player-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.player-modal.active {
    display: flex;
}

.player-modal-content {
    background-color: var(--white);
    border-radius: var(--radius);
    max-width: 650px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 3rem;
    border-top: 5px solid var(--red);
    box-shadow: var(--shadow-hover);
}

.player-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--red);
    font-size: 2.5rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    transition: var(--transition);
    font-family: var(--font-menu);
    line-height: 1;
}

.player-modal-close:hover {
    color: var(--black);
    transform: rotate(90deg);
}

.player-profile-img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 2rem;
    display: block;
    border: 6px solid var(--red);
    box-shadow: var(--shadow-red);
}

.player-profile-name {
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--red);
    font-family: var(--font-title);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.player-profile-info {
    text-align: center;
    color: var(--black);
    margin-bottom: 2rem;
    font-weight: 500;
    padding: 1.5rem;
    background-color: var(--gray-light);
    border-radius: var(--radius);
    border-left: 4px solid var(--red);
}

.player-profile-info p {
    margin: 0.8rem 0;
    font-size: 1.05rem;
}

.player-profile-info strong {
    color: var(--red);
    font-weight: 600;
    font-family: var(--font-menu);
    text-transform: uppercase;
}

.player-profile-history {
    color: var(--black);
    line-height: 1.9;
    margin-top: 2rem;
    font-weight: 400;
    padding-top: 2rem;
    border-top: 2px solid var(--gray-light);
}

.player-profile-history h3 {
    color: var(--red);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.2rem;
    font-family: var(--font-title);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.player-profile-history p {
    text-align: justify;
    font-size: 1rem;
}

/* Sponsors Section - Seção de Patrocinadores */
.sponsors-section {
    background-color: var(--gray-light);
    padding: 60px 20px;
    margin-top: 80px;
    border-top: 2px solid var(--red);
    border-bottom: 1px solid var(--gray-light);
}

.sponsors-title {
    font-size: 1.8rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--red);
    font-family: var(--font-title);
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 1rem;
}

.sponsors-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: var(--red);
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
    justify-items: center;
}

.sponsor-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
    width: 100%;
    max-width: 200px;
    height: 120px;
}

.sponsor-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--red);
}

.sponsor-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    transition: var(--transition);
}

.sponsor-logo {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0.3);
    transition: var(--transition);
}

.sponsor-item:hover .sponsor-logo {
    filter: grayscale(0);
    transform: scale(1.05);
}

/* Footer */
.footer {
    background-color: var(--black);
    padding: 3rem 20px;
    text-align: center;
    color: var(--white);
    border-top: 4px solid var(--red);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.footer a {
    color: var(--red);
    text-decoration: none;
    transition: var(--transition);
    font-family: var(--font-menu);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Event Card */
.event-card {
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid var(--gray-light);
    position: relative;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--red);
    transform: scaleX(0);
    transition: var(--transition);
    z-index: 1;
}

.event-card:hover::before {
    transform: scaleX(1);
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--red);
}

.event-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
}

.event-card:hover .event-card-img {
    transform: scale(1.08);
}

.event-card-body {
    padding: 1.8rem;
}

.event-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--black);
    font-family: var(--font-menu);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-card-date {
    color: var(--gray-medium);
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.event-card-count {
    color: var(--red);
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-menu);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Player Card Premium */
.player-card {
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid var(--gray-light);
    position: relative;
    user-select: none;
    overflow: hidden;
}

.player-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--red);
    transform: scaleX(0);
    transition: var(--transition);
    z-index: 1;
}

.player-card:hover::before {
    transform: scaleX(1);
}

.player-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--red);
}

.player-card-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    display: block;
    border: 5px solid var(--red);
    transition: var(--transition);
    box-shadow: var(--shadow-red);
}

.player-card:hover .player-card-img {
    transform: scale(1.05);
    border-color: #B80000;
    box-shadow: var(--shadow-hover);
    filter: brightness(1.1);
}

.player-card-name {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--red);
    font-family: var(--font-menu);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.player-card-age {
    color: var(--gray-medium);
    font-size: 1rem;
    font-weight: 400;
}

/* Photo Gallery - Grid Assimétrico/Diagonal */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
    background-color: var(--gray-light);
    aspect-ratio: 1;
    border: 2px solid transparent;
}

.photo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(212, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.photo-item:hover::before {
    opacity: 1;
}

.photo-item:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: var(--shadow-hover);
    border-color: var(--red);
}

.photo-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.photo-item:hover .photo-thumbnail {
    transform: scale(1.1);
}

/* Event Card as Link */
a.event-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

a.event-card:hover {
    text-decoration: none;
}

/* Video Gallery Premium */
.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.video-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
    background-color: var(--gray-light);
    border: 2px solid transparent;
}

.video-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--red);
    transform: scaleX(0);
    transition: var(--transition);
    z-index: 2;
}

.video-item:hover::before {
    transform: scaleX(1);
}

.video-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--red);
}

.video-thumbnail-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: var(--black);
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.video-thumbnail-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-item:hover .video-thumbnail {
    transform: scale(1.08);
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 1;
}

.video-item:hover .video-play-overlay {
    background-color: rgba(0, 0, 0, 0.6);
}

.video-play-icon {
    width: 90px;
    height: 90px;
    background-color: rgba(212, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.2rem;
    transition: var(--transition);
    transform: scale(1);
    border: 3px solid var(--white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.video-item:hover .video-play-icon {
    transform: scale(1.15);
    background-color: var(--red);
    box-shadow: 0 6px 24px rgba(212, 0, 0, 0.5);
}

.video-item-info {
    padding: 1.5rem;
    background-color: var(--white);
}

.video-item-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--black);
    margin: 0;
    font-family: var(--font-menu);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background-color: var(--white);
        box-shadow: var(--shadow);
        padding: 2rem;
        transition: var(--transition);
        border-top: 2px solid var(--red);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: 400px;
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .lightbox-content {
        width: 100vw;
        max-width: 100vw;
        max-height: 100vh;
        height: 100vh;
        padding: 0;
        margin: 0;
    }

    .lightbox-img {
        width: 100%;
        max-width: 100%;
        max-height: 100vh;
        height: auto;
        border: none;
        border-radius: 0;
        object-fit: contain;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
        background: rgba(0, 0, 0, 0.8);
    }

    .lightbox-counter {
        bottom: 10px;
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    .video-modal {
        padding: 0;
    }

    .video-modal-content {
        width: 100vw;
        max-width: 100vw;
        max-height: 100vh;
        height: 100vh;
        padding: 0;
        margin: 0;
    }

    .video-modal video {
        width: 100%;
        max-width: 100%;
        max-height: 100vh;
        height: auto;
        border: none;
        border-radius: 0;
        object-fit: contain;
    }

    .video-modal iframe {
        width: 100%;
        height: 100vh;
        min-height: 100vh;
        max-height: 100vh;
        border: none;
        border-radius: 0;
    }

    .video-modal-nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .video-modal-prev {
        left: 10px;
    }

    .video-modal-next {
        right: 10px;
    }

    .video-modal-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
        background: rgba(0, 0, 0, 0.8);
    }

    .video-modal-counter {
        bottom: 10px;
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    .quick-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        display: block;
        width: 100%;
        text-align: center;
    }

    .photo-gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }

    .video-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .video-item {
        width: 100%;
    }

    .video-thumbnail-container {
        aspect-ratio: 16 / 9;
    }

    .video-thumbnail,
    .video-thumbnail-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .video-modal-content {
        width: 100vw;
        max-width: 100vw;
        max-height: 100vh;
        height: 100vh;
        padding: 0;
        margin: 0;
    }

    .video-modal iframe {
        width: 100%;
        height: 100vh;
        min-height: 100vh;
        max-height: 100vh;
    }

    .about-content p {
        text-align: left;
    }
    
    .sponsors-section {
        padding: 40px 20px;
    }
    
    .sponsors-title {
        font-size: 1.5rem;
    }
    
    .sponsors-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1.5rem;
    }
    
    .sponsor-item {
        max-width: 100%;
        height: 100px;
        padding: 1rem;
    }
    
    .sponsor-logo {
        max-height: 60px;
    }
}
