﻿/* ================================
   EVENT DETAILS PAGE STYLESHEET
   ================================ */

/* ============================
   EVENT HERO SECTION
   ============================ */
.event-hero {
    position: relative;
    height: 600px;
    margin-top: 80px;
    overflow: hidden;
}

.event-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient( to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(10, 10, 10, 0.7) 50%, rgba(10, 10, 10, 0.95) 100% );
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px 0;
    z-index: 2;
}

    .hero-content .container {
        position: relative;
    }

.event-hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--vendetta-white);
    margin-bottom: 20px;
    text-transform: uppercase;
    background: linear-gradient(45deg, var(--vendetta-white), var(--vendetta-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s var(--transition-smooth);
}

.event-hero-description {
    font-family: 'Barlow', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #CCC;
    max-width: 800px;
    animation: fadeInUp 0.8s 0.2s backwards;
}

.status-badge {
    display: inline-block;
    padding: 10px 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
    animation: fadeInUp 0.8s 0.1s backwards;
}

.status-happening {
    background: var(--vendetta-green);
    color: var(--vendetta-black);
    animation: livePulse 2s infinite;
}

.status-closing {
    background: var(--vendetta-gold);
    color: var(--vendetta-black);
    animation: closingPulse 1.5s infinite;
}

.status-finished {
    background: #666;
    color: var(--vendetta-white);
}

/* ============================
   EVENT INFO SECTION
   ============================ */
.event-info-section {
    padding: 80px 0;
    background: var(--vendetta-dark);
}

.event-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-card {
    background: linear-gradient(135deg, var(--vendetta-gray), var(--vendetta-black));
    border: 2px solid var(--vendetta-border);
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all var(--transition-speed);
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

    .info-card:hover {
        border-color: var(--vendetta-red);
        transform: translateY(-5px);
        box-shadow: 0 10px 30px var(--vendetta-red-glow);
    }

.info-card-highlight {
    border-color: var(--vendetta-red);
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), var(--vendetta-black));
}

.info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--vendetta-red);
    color: var(--vendetta-white);
    font-size: 24px;
    flex-shrink: 0;
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.info-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--vendetta-red);
    margin-bottom: 8px;
}

.info-content p {
    font-size: 18px;
    color: var(--vendetta-white);
    font-weight: 600;
    margin: 0;
}

.info-time {
    font-size: 16px;
    color: #888;
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--vendetta-red);
    line-height: 1;
}

.countdown-label {
    font-size: 10px;
    letter-spacing: 1px;
    color: #888;
    margin-top: 4px;
}

/* ============================
   MATCHES SECTION
   ============================ */
.matches-section {
    padding: 80px 0;
    background: var(--vendetta-gray);
}

.matches-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.match-card-detail {
    background: linear-gradient(135deg, var(--vendetta-dark), var(--vendetta-black));
    border: 2px solid var(--vendetta-border);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-speed);
}

    .match-card-detail::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, transparent, var(--vendetta-red), transparent);
    }

    .match-card-detail:hover {
        border-color: var(--vendetta-red);
        box-shadow: 0 15px 50px var(--vendetta-red-glow);
        transform: translateY(-5px);
    }

.match-header-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--vendetta-border);
}

.match-type {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    letter-spacing: 2px;
    color: var(--vendetta-red);
    font-weight: 700;
}

.match-rounds {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    color: #888;
}

.match-fighters-detail {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
}

.fighter-detail {
    display: flex;
    gap: 25px;
    align-items: center;
}

.fighter-image-detail {
    position: relative;
    width: 180px;
    height: 220px;
    overflow: hidden;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    flex-shrink: 0;
}

    .fighter-image-detail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s;
    }

.match-card-detail:hover .fighter-image-detail img {
    transform: scale(1.1);
}

.fighter-overlay-detail {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(196,30,58,0.3) 100%);
}

.fighter-info-detail {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .fighter-info-detail h3 {
        font-family: 'Oswald', sans-serif;
        font-size: 24px;
        font-weight: 700;
        letter-spacing: 2px;
        color: var(--vendetta-white);
        text-transform: uppercase;
        margin: 0;
    }

.fighter-nickname {
    font-size: 14px;
    color: var(--vendetta-red);
    font-weight: 600;
    letter-spacing: 1px;
}

.fighter-stats-detail {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 14px;
}

.stat-label {
    color: #666;
    letter-spacing: 1px;
}

.stat-value {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--vendetta-white);
    letter-spacing: 1px;
}

.fighter-country-detail {
    font-size: 14px;
    color: #888;
    letter-spacing: 1px;
}

.vs-badge-detail {
    width: 80px;
    height: 80px;
    background: var(--vendetta-red);
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    flex-shrink: 0;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.vs-badge-detail span {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--vendetta-white);
    animation: rotate 20s linear infinite reverse;
}

.match-winner {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 255, 136, 0.2);
    border: 1px solid var(--vendetta-green);
    color: var(--vendetta-green);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    clip-path: polygon(4px 0, 100% 0, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0 100%, 0 4px);
}

.match-result {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--vendetta-border);
    font-size: 14px;
    color: #AAA;
    text-align: center;
}

    .match-result strong {
        color: var(--vendetta-red);
        letter-spacing: 1px;
    }

/* ============================
   TICKETS SECTION - REALISTIC DESIGN
   ============================ */
.tickets-section {
    padding: 80px 0;
    background: var(--vendetta-dark);
}

.tickets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

/* ================================
   TICKET CARD - REALISTIC DESIGN
   ================================ */
.ticket-card {
    position: relative;
    display: grid;
    grid-template-columns: 3fr 1fr;
    background: linear-gradient(135deg, #1A1A1A 0%, #0A0A0A 100%);
    border: 2px solid var(--vendetta-border);
    min-height: 500px;
    transition: all 0.3s ease;
    overflow: visible;
}

    .ticket-card:hover {
        transform: translateY(-10px) rotate(-1deg);
        box-shadow: 0 20px 60px rgba(0,0,0,0.7);
        z-index: 10;
    }

/* Ticket Corners */
.ticket-corner {
    position: absolute;
    width: 15px;
    height: 15px;
    background: var(--vendetta-dark);
    z-index: 2;
}

    .ticket-corner.tl {
        top: -2px;
        left: -2px;
        clip-path: polygon(0 0, 100% 0, 0 100%);
    }

    .ticket-corner.tr {
        top: -2px;
        right: -2px;
        clip-path: polygon(100% 0, 100% 100%, 0 0);
    }

    .ticket-corner.bl {
        bottom: -2px;
        left: -2px;
        clip-path: polygon(0 0, 0 100%, 100% 100%);
    }

    .ticket-corner.br {
        bottom: -2px;
        right: -2px;
        clip-path: polygon(100% 0, 100% 100%, 0 100%);
    }

/* Perforated Edge */
.ticket-perforation-left,
.ticket-perforation-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 20px;
    background-image: repeating-linear-gradient( 0deg, transparent, transparent 8px, var(--vendetta-dark) 8px, var(--vendetta-dark) 12px );
    z-index: 1;
}

.ticket-perforation-left {
    left: -10px;
}

.ticket-perforation-right {
    right: 80px;
}

/* ================================
   TICKET MAIN CONTENT
   ================================ */
.ticket-main {
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.ticket-badge {
    display: inline-block;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
    width: fit-content;
}

.ticket-card.premium .ticket-badge {
    background: linear-gradient(135deg, #C0C0C0, #808080);
    color: var(--vendetta-black);
}

.ticket-card.standard .ticket-badge {
    background: var(--vendetta-red);
    color: var(--vendetta-white);
}

.ticket-card.tribune .ticket-badge {
    background: #333;
    color: var(--vendetta-white);
}

.ticket-header {
    margin-bottom: 30px;
}

    .ticket-header h3 {
        font-family: 'Oswald', sans-serif;
        font-size: 28px;
        font-weight: 700;
        letter-spacing: 3px;
        color: var(--vendetta-white);
        text-transform: uppercase;
        line-height: 1.2;
        margin: 0;
    }

.ticket-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px dashed var(--vendetta-border);
}

.price-amount {
    font-family: 'Oswald', sans-serif;
    font-size: 52px;
    font-weight: 700;
    color: var(--vendetta-red);
    line-height: 1;
}

.price-label {
    font-size: 16px;
    color: #888;
}

/* Ticket Description */
.ticket-description {
    flex: 1;
    margin-bottom: 35px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .ticket-description p {
        color: #BBB;
        font-size: 15px;
        line-height: 1.9;
        text-align: center;
        padding: 25px;
        background: rgba(255, 255, 255, 0.02);
        border-left: 3px solid var(--vendetta-red);
        border-radius: 4px;
        margin: 0;
    }

.btn-buy-ticket {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
    padding: 18px 0;
    background: var(--vendetta-red);
    border: 3px solid var(--vendetta-red);
    color: var(--vendetta-white);
    cursor: pointer;
    transition: all 0.3s ease;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    margin-bottom: 20px;
    margin-top: auto;
    text-decoration: none;
    display: block;
    text-align: center;
}

    .btn-buy-ticket:hover {
        background: transparent;
        color: var(--vendetta-red);
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
    }

.ticket-availability {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.availability-status {
    padding: 6px 15px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 20px;
}

    .availability-status.available {
        background: rgba(0,255,0,0.1);
        color: #0F0;
        border: 1px solid #0F0;
    }

    .availability-status.limited {
        background: rgba(255,165,0,0.1);
        color: #FFA500;
        border: 1px solid #FFA500;
    }

    .availability-status.soldout {
        background: rgba(255,0,0,0.1);
        color: #F00;
        border: 1px solid #F00;
    }

.availability-count {
    color: #888;
}

/* ================================
   TICKET STUB
   ================================ */
.ticket-stub {
    background: var(--vendetta-black);
    border-left: 2px dashed var(--vendetta-border);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    writing-mode: vertical-lr;
    text-orientation: mixed;
}

.stub-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    writing-mode: horizontal-tb;
    transform: rotate(180deg);
}

    .stub-text span:first-child {
        font-family: 'Oswald', sans-serif;
        font-size: 24px;
        font-weight: 700;
        letter-spacing: 3px;
    }

    .stub-text span:last-child {
        font-size: 14px;
        color: #666;
        letter-spacing: 2px;
    }

.barcode {
    width: 60px;
    height: 120px;
    background-image: repeating-linear-gradient( 90deg, var(--vendetta-white), var(--vendetta-white) 2px, transparent 2px, transparent 4px, var(--vendetta-white) 4px, var(--vendetta-white) 5px, transparent 5px, transparent 8px );
    transform: rotate(180deg);
}

/* ================================
   VIP CARD - GELİŞTİRİLMİŞ ALTIN PARLAMA
   ================================ */
.ticket-card.vip {
    background: radial-gradient(ellipse at top, #2A2200, #1A1400);
    border: 3px solid #FFD700;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.2);
}

    /* Altın parıltı efekti - dönen ışık */
    .ticket-card.vip::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient( 45deg, transparent 30%, rgba(255, 215, 0, 0.15) 45%, rgba(255, 215, 0, 0.25) 50%, rgba(255, 215, 0, 0.15) 55%, transparent 70% );
        animation: goldShine 4s infinite linear;
        z-index: 0;
    }

    /* Ek ışık efekti - nabız gibi */
    .ticket-card.vip::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient( circle at 50% 0%, rgba(255, 215, 0, 0.1) 0%, transparent 70% );
        z-index: 0;
        animation: goldPulse 3s infinite ease-in-out;
    }

@keyframes goldShine {
    0% {
        transform: rotate(0deg) translateX(0);
    }

    100% {
        transform: rotate(360deg) translateX(0);
    }
}

@keyframes goldPulse {
    0%, 100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}

.ticket-card.vip:hover {
    box-shadow: 0 25px 80px rgba(255, 215, 0, 0.5), 0 0 60px rgba(255, 215, 0, 0.3);
    transform: translateY(-10px) rotate(-1deg) scale(1.02);
    border-color: #FFD700;
}

.ticket-card.vip .ticket-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500, #FFD700);
    background-size: 200% 200%;
    color: var(--vendetta-black);
    animation: badgePulse 2s infinite, goldBadgeShine 3s infinite;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    }

    50% {
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    }
}

@keyframes goldBadgeShine {
    0%, 100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.ticket-card.vip .ticket-header h3 {
    color: #FFD700;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5), 0 0 15px rgba(255, 215, 0, 0.3);
    animation: goldTextGlow 2s infinite ease-in-out;
}

@keyframes goldTextGlow {
    0%, 100% {
        text-shadow: 0 0 30px rgba(255, 215, 0, 0.5), 0 0 15px rgba(255, 215, 0, 0.3);
    }

    50% {
        text-shadow: 0 0 40px rgba(255, 215, 0, 0.7), 0 0 25px rgba(255, 215, 0, 0.5), 0 0 10px rgba(255, 215, 0, 0.3);
    }
}

.ticket-card.vip .price-amount {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
    animation: goldPriceShine 3s infinite;
}

@keyframes goldPriceShine {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
    }

    50% {
        filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.7));
    }
}

.ticket-card.vip .btn-buy-ticket {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border: 3px solid #FFD700;
    color: var(--vendetta-black);
    font-weight: 800;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

    .ticket-card.vip .btn-buy-ticket:hover {
        background: transparent;
        color: #FFD700;
        border-color: #FFD700;
        box-shadow: 0 5px 30px rgba(255, 215, 0, 0.5);
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    }

.ticket-card.vip .ticket-stub {
    background: linear-gradient(180deg, #1A1400, #0A0A00);
    border-left-color: #FFD700;
}

.ticket-card.vip .stub-text span:first-child {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* ================================
   VIP FEATURED - EKSTRA ALTIN PARLAMA
   ================================ */
.ticket-card.vip.featured {
    animation: vipFeaturedPulse 3s infinite ease-in-out;
}

@keyframes vipFeaturedPulse {
    0%, 100% {
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.3), 0 0 80px rgba(255, 215, 0, 0.2);
    }

    50% {
        box-shadow: 0 0 60px rgba(255, 215, 0, 0.5), 0 0 100px rgba(255, 215, 0, 0.3), 0 0 140px rgba(255, 215, 0, 0.2);
    }
}

.ticket-card.vip.featured:hover {
    box-shadow: 0 30px 100px rgba(255, 215, 0, 0.6), 0 0 80px rgba(255, 215, 0, 0.4), 0 0 120px rgba(255, 215, 0, 0.3);
    transform: translateY(-15px) rotate(-1deg) scale(1.05);
}

/* ================================
   PREMIUM CARD - GÜMÜŞ PARLAMA
   ================================ */
.ticket-card.premium {
    background: linear-gradient(135deg, #252525, #151515);
    border: 2px solid #C0C0C0;
    position: relative;
    overflow: hidden;
}

    .ticket-card.premium::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient( 45deg, transparent 30%, rgba(192, 192, 192, 0.08) 50%, transparent 70% );
        animation: silverShine 3s infinite;
        z-index: 0;
    }

@keyframes silverShine {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.ticket-card.premium:hover {
    box-shadow: 0 20px 60px rgba(192, 192, 192, 0.3);
}

.ticket-card.premium .ticket-header h3 {
    color: #C0C0C0;
}

/* ================================
   PREMIUM FEATURED - EKSTRA GÜMÜŞ PARLAMA
   ================================ */
.ticket-card.premium.featured {
    box-shadow: 0 0 30px rgba(192, 192, 192, 0.2);
    animation: premiumFeaturedPulse 3s infinite ease-in-out;
}

@keyframes premiumFeaturedPulse {
    0%, 100% {
        box-shadow: 0 0 30px rgba(192, 192, 192, 0.2), 0 0 60px rgba(192, 192, 192, 0.1);
    }

    50% {
        box-shadow: 0 0 50px rgba(192, 192, 192, 0.4), 0 0 80px rgba(192, 192, 192, 0.2), 0 0 110px rgba(192, 192, 192, 0.1);
    }
}

.ticket-card.premium.featured:hover {
    box-shadow: 0 25px 80px rgba(192, 192, 192, 0.5), 0 0 60px rgba(192, 192, 192, 0.3), 0 0 100px rgba(192, 192, 192, 0.2);
    transform: translateY(-15px) rotate(-1deg) scale(1.03);
}

.ticket-card.premium.featured .ticket-header h3 {
    text-shadow: 0 0 20px rgba(192, 192, 192, 0.3), 0 0 10px rgba(192, 192, 192, 0.2);
    animation: silverTextGlow 2s infinite ease-in-out;
}

@keyframes silverTextGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(192, 192, 192, 0.3), 0 0 10px rgba(192, 192, 192, 0.2);
    }

    50% {
        text-shadow: 0 0 30px rgba(192, 192, 192, 0.5), 0 0 20px rgba(192, 192, 192, 0.3), 0 0 10px rgba(192, 192, 192, 0.2);
    }
}

/* ================================
   STANDARD CARD
   ================================ */
.ticket-card.standard {
    background: linear-gradient(135deg, #1A1A1A, #0A0A0A);
}

/* ================================
   TRIBUNE CARD
   ================================ */
.ticket-card.tribune {
    background: linear-gradient(135deg, #1A1A1A, #0A0A0A);
    border: 2px solid #555;
}

/* ================================
   NO TICKETS MESSAGE
   ================================ */
.no-tickets {
    text-align: center;
    padding: 80px 20px;
    background: var(--vendetta-black);
    border: 2px dashed var(--vendetta-border);
}

    .no-tickets p {
        font-size: 18px;
        color: #888;
        letter-spacing: 1px;
    }

/* ============================
   SPONSORS SECTION - ENDLESS CAROUSEL
   ============================ */
.sponsors-section {
    padding: 80px 0;
    background: var(--vendetta-dark);
    overflow: hidden;
}

.sponsors-carousel-container {
    width: 100%;
    margin-top: 40px;
}

.sponsors-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    mask-image: linear-gradient( to right, transparent, black 10%, black 90%, transparent );
    -webkit-mask-image: linear-gradient( to right, transparent, black 10%, black 90%, transparent );
}

.sponsors-carousel {
    display: flex;
    width: max-content;
    will-change: transform;
    gap: 40px;
}

/* Endless scroll animation */
@keyframes scrollEndless {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.sponsor-card {
    position: relative;
    background: var(--vendetta-gray);
    border: 2px solid var(--vendetta-border);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: all var(--transition-speed);
    overflow: hidden;
    flex-shrink: 0;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

    .sponsor-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, transparent, var(--vendetta-red), transparent);
        opacity: 0;
        transition: opacity var(--transition-speed);
    }

    .sponsor-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(196, 30, 58, 0.1), transparent);
        transition: left 0.6s;
    }

    .sponsor-card:hover {
        border-color: var(--vendetta-red);
        transform: translateY(-10px);
        box-shadow: 0 15px 40px var(--vendetta-red-glow);
        z-index: 10;
    }

        .sponsor-card:hover::before {
            opacity: 1;
        }

        .sponsor-card:hover::after {
            left: 100%;
        }

.sponsor-logo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

    .sponsor-logo img {
        width: 100%;
        height: auto;
        max-height: 100px;
        object-fit: contain;
        filter: grayscale(100%) brightness(0.8);
        transition: all var(--transition-speed);
    }

.sponsor-card:hover .sponsor-logo img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

.sponsor-overlay {
    width: 100%;
    text-align: center;
}

.sponsor-name {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #888;
    transition: color var(--transition-speed);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.sponsor-card:hover .sponsor-name {
    color: var(--vendetta-red);
}

/* ============================
   BACK SECTION
   ============================ */
.back-section {
    padding: 60px 0;
    background: var(--vendetta-gray);
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: transparent;
    color: var(--vendetta-white);
    border: 2px solid var(--vendetta-border);
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    letter-spacing: 2px;
    transition: all var(--transition-speed);
    text-decoration: none;
}

    .btn-back:hover {
        border-color: var(--vendetta-red);
        color: var(--vendetta-red);
        transform: translateX(-5px);
    }

/* ============================
   NO CONTENT MESSAGE
   ============================ */
.no-content {
    text-align: center;
    padding: 80px 40px;
    color: #666;
}

    .no-content i {
        font-size: 64px;
        margin-bottom: 20px;
        color: var(--vendetta-border);
    }

    .no-content p {
        font-size: 18px;
        color: #888;
    }

/* ============================
   SECTION HEADER (SHARED)
   ============================ */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

    .section-header h2 {
        font-family: 'Oswald', sans-serif;
        font-size: clamp(36px, 5vw, 56px);
        letter-spacing: 4px;
        position: relative;
        display: inline-block;
        color: var(--vendetta-white);
    }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--vendetta-red);
        }

.section-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--vendetta-red), transparent);
    margin-left: 40px;
}

/* ============================
   RESPONSIVE DESIGN
   ============================ */
@media (max-width: 968px) {
    .event-hero {
        height: 500px;
    }

    .event-info-grid {
        grid-template-columns: 1fr;
    }

    .matches-grid {
        gap: 30px;
    }

    .match-fighters-detail {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .fighter-detail {
        flex-direction: column;
        text-align: center;
    }

    .fighter-info-detail {
        align-items: center;
    }

    .fighter-stats-detail {
        justify-content: center;
    }

    .vs-badge-detail {
        transform: rotate(90deg);
        margin: 20px 0;
    }

    .tickets-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .ticket-card {
        grid-template-columns: 2fr 1fr;
    }

    .countdown-timer {
        flex-wrap: wrap;
    }
}

@media (max-width: 640px) {
    .event-hero {
        height: 400px;
    }

    .hero-content {
        padding: 40px 0;
    }

    .event-info-section,
    .matches-section,
    .tickets-section,
    .sponsors-section {
        padding: 60px 0;
    }

    .info-card {
        flex-direction: column;
        text-align: center;
    }

    .fighter-image-detail {
        width: 100%;
        height: 280px;
    }

    .fighter-detail {
        width: 100%;
    }

    .vs-badge-detail {
        width: 60px;
        height: 60px;
    }

        .vs-badge-detail span {
            font-size: 24px;
        }

    .tickets-grid {
        grid-template-columns: 1fr;
    }

    .ticket-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .ticket-stub {
        writing-mode: horizontal-tb;
        padding: 20px;
        border-left: none;
        border-top: 2px dashed var(--vendetta-border);
    }

    .stub-text {
        flex-direction: row;
        transform: rotate(0);
    }

    .barcode {
        transform: rotate(0);
        width: 120px;
        height: 60px;
    }

    .ticket-perforation-right {
        right: 0;
        bottom: 80px;
        top: auto;
        width: 100%;
        height: 20px;
        background-image: repeating-linear-gradient( 90deg, transparent, transparent 8px, var(--vendetta-dark) 8px, var(--vendetta-dark) 12px );
    }

    .ticket-price .price-amount {
        font-size: 42px;
    }

    .section-line {
        display: none;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .sponsors-carousel {
        animation: none !important;
    }

    .sponsor-card:hover {
        transform: translateY(0);
    }

    .ticket-card,
    .ticket-card.vip,
    .ticket-card.premium {
        animation: none !important;
    }

        .ticket-card.vip::before,
        .ticket-card.vip::after,
        .ticket-card.premium::before {
            animation: none !important;
        }

        .ticket-card:hover {
            transform: translateY(-5px);
        }
}

/* ============================
   ANIMATIONS
   ============================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes livePulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    }

    50% {
        box-shadow: 0 0 30px rgba(0, 255, 136, 0.8);
    }
}

@keyframes closingPulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    }

    50% {
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.8);
    }
}
