@tailwind base;
@tailwind components;
@tailwind utilities;

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.mood-chip {
    @apply bg-zinc-800 hover:bg-pink-500 hover:text-white px-6 py-3 rounded-3xl whitespace-nowrap transition-all text-sm font-medium;
}

.thumbnail-container {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.thumbnail-container:hover {
    transform: scale(1.05);
}

.thumbnail-container:hover .play-overlay {
    opacity: 1;
}

.play-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(236, 72, 153, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s;
    font-size: 3rem;
}

.glass {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.modal-video {
    width: 100%;
    max-height: 75vh;
    background: #000;
}

.neon-text {
    text-shadow: 0 0 10px #ec4899, 0 0 20px #ec4899;
}