/* Venue 18 Specific Styling */

:root {
    --v18-red: #ef4444;
    --v18-red-glow: rgba(239, 68, 68, 0.3);
    --v18-zinc: #09090b;
}

* { cursor: none !important; }

#custom-cursor {
    width: 24px;
    height: 24px;
    background: var(--v18-red);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease-out, opacity 0.2s ease;
}

/* Nav Effects */
#navbar.scrolled {
    background-color: rgba(9, 9, 11, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-link-v18 {
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #94a3b8;
    transition: all 0.3s ease;
}
.nav-link-v18:hover { color: #ef4444; }

.mobile-link-v18 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
    padding: 0.5rem 0;
}

/* Experience Cards */
.experience-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-right: 1px solid #18181b;
    border-bottom: 1px solid #18181b;
}

.exp-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    filter: grayscale(1);
}
.experience-card:hover .exp-img { transform: scale(1.1); filter: grayscale(0); }

.exp-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #09090b 10%, rgba(9, 9, 11, 0.4) 100%);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}
.experience-card:hover .exp-overlay { opacity: 0.7; }

.exp-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 2rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}
.experience-card:hover .exp-content { transform: translateY(0); }

.exp-btn {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: #ef4444;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}
.experience-card:hover .exp-btn { gap: 12px; }

/* Fight Library / Highlights */
.highlight-thumb-box {
    position: relative;
    aspect-ratio: 16/9;
    background: #000;
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid #18181b;
    margin-bottom: 1.5rem;
    transition: border-color 0.3s ease;
}
.group:hover .highlight-thumb-box { border-color: var(--v18-red); }

.highlight-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: all 0.5s ease;
}
.group:hover .highlight-img { opacity: 0.85; transform: scale(1.05); }

.highlight-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn-circle {
    width: 4rem;
    height: 4rem;
    background: rgba(239, 68, 68, 0.9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.3);
}
.group:hover .play-btn-circle { transform: scale(1.1); }

/* Buttons */
.btn-primary-v18 {
    padding: 1rem 2.5rem;
    background: #ef4444;
    color: white;
    font-family: 'Oswald', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.2);
}
.btn-primary-v18:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(239, 68, 68, 0.4); background: #ff3b3b; }

.btn-outline-v18 {
    padding: 1rem 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'Oswald', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.btn-outline-v18:hover { border-color: white; background: rgba(255, 255, 255, 0.05); }

.social-icon-v18 {
    width: 3rem;
    height: 3rem;
    background: #18181b;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #94a3b8;
    transition: all 0.3s ease;
}
.social-icon-v18:hover { color: white; border-color: #ef4444; background: rgba(239, 68, 68, 0.1); transform: translateY(-3px); }

/* Scroll Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-up.revealed { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
    .experience-card { height: 400px; border-right: 0; }
    .exp-content { transform: translateY(0); }
    .exp-img { filter: grayscale(0); }
}