/* Kahuwa Shorts - Modern Web Frontend Styles */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --brand-pink: #ff2a85;
    --brand-rose: #e11d48;
    --brand-glow: #ff007a;
    --brand-amber: #f59e0b;
    --dark-bg: #080207;
    --dark-card: rgba(26, 6, 22, 0.75);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--dark-bg);
    color: #f1f5f9;
    overflow-x: hidden;
    touch-action: pan-y;
}

.font-heading {
    font-family: 'Outfit', sans-serif;
}

/* Glassmorphism Cards */
.glass-card {
    background: linear-gradient(135deg, rgba(26, 6, 22, 0.85) 0%, rgba(16, 3, 14, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 42, 133, 0.15);
}

.glass-card:hover {
    border-color: rgba(255, 42, 133, 0.35);
}

.glass-card-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px -5px rgba(255, 42, 133, 0.25);
    border-color: rgba(255, 42, 133, 0.4);
}

/* Neon Glows */
.glow-pink {
    box-shadow: 0 0 45px -5px rgba(255, 42, 133, 0.38);
}

.text-glow {
    text-shadow: 0 0 20px rgba(255, 42, 133, 0.5);
}

/* Vertical 9:16 Shorts Video Aspect */
.aspect-shorts {
    aspect-ratio: 9 / 16;
}

/* Spinning Vinyl Record Disc Animation */
@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.animate-spin-slow {
    animation: spin-slow 3.8s linear infinite;
}

/* Pulse Glow Animation */
@keyframes pulse-glow {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.animate-pulse-glow {
    animation: pulse-glow 3s ease-in-out infinite;
}

/* Floating Like Hearts */
@keyframes float-heart {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0; }
    50% { transform: translate(-50%, -50%) scale(1.4); opacity: 1; }
    100% { transform: translate(-50%, -160%) scale(1.1); opacity: 0; }
}

.heart-pop {
    animation: float-heart 0.75s ease-out forwards;
}

/* Center Double-Tap Heart Burst */
@keyframes heart-burst {
    0% { transform: scale(0.3); opacity: 0; }
    40% { transform: scale(1.3); opacity: 1; }
    70% { transform: scale(1.0); opacity: 0.9; }
    100% { transform: scale(1.4) translateY(-30px); opacity: 0; }
}

.animate-heart-burst {
    animation: heart-burst 0.85s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* Fade In Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fadeIn {
    animation: fadeIn 0.25s ease-out forwards;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #080207;
}
::-webkit-scrollbar-thumb {
    background: #380e2f;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #ff2a85;
}

/* Video Card Thumbnail Hover Zoom */
.video-card-img {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.group:hover .video-card-img {
    transform: scale(1.06);
}

/* Range Slider Styling */
input[type=range] {
    accent-color: #ff2a85;
}

/* Hide scrollbar utility */
/* Hide scrollbar utility */
.scrollbar-none::-webkit-scrollbar {
    display: none;
}
.scrollbar-none {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

