/* Elephant Color - Base Frontend Styles (Parity with index.html) */

:root {
    --accent-color: #ec4899;
    --bg-color: #f5f5f7;
    --text-main: #1d1d1f;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: black;
    color: white;
    cursor: default;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

p {
    letter-spacing: -0.01em;
    line-height: 1.6;
}

.text-accent {
    color: var(--accent-color);
}

.bg-accent {
    background-color: var(--accent-color);
}

/* --- Noise Overlay --- */
.noise-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 50;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* --- Animations --- */
@keyframes marquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.animate-marquee {
    animation: marquee 40s linear infinite;
}

.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Parity Elements --- */
.shadow-section {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.interactive:hover {
    transform: scale(1.02);
}

.interactive {
    transition: transform 0.3s ease;
}

.hero-video {
    width: 400vw;
    height: 225vw;
}

@media (min-width: 768px) {
    .hero-video {
        width: 100vw;
        height: 56.25vw;
    }

    @media (max-aspect-ratio: 16/9) {
        .hero-video {
            width: 177.78vh;
            height: 100vh;
        }
    }
}

.interactive-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease-out;
    will-change: transform;
}

.spotlight {
    position: absolute;
    inset: 0;
    background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y), rgba(236, 72, 153, 0.15), transparent 40%);
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.interactive-card:hover .spotlight {
    opacity: 1;
}

.parallax-bg {
    position: absolute;
    inset: -15%;
    width: 130%;
    height: 130%;
    object-fit: cover;
    max-width: none !important;
    will-change: transform;
}

/* --- Premium Shows / Universos Styles --- */
.uni-card {
    height: 480px !important;
    min-height: 480px !important;
    position: relative;
    background-color: #1a1a1a;
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s ease;
}

.uni-card:hover {
    border-color: rgba(236, 72, 153, 0.3);
    transform: translateY(-5px);
}

.uni-bg {
    height: 100% !important;
    width: 130% !important;
    object-fit: cover !important;
}

.uni-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    z-index: 5;
}

.category-title {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 3rem;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: #ec4899;
}