/* Custom Styles for beats365 */

html {
    scroll-behavior: smooth;
}

body {
    background-color: #09090b; /* zinc-950 */
    color: #d4d4d8; /* zinc-300 */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #09090b;
}
::-webkit-scrollbar-thumb {
    background: rgba(245, 158, 11, 0.2); /* amber-500/20 */
    border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(245, 158, 11, 0.4); /* amber-500/40 */
}

/* Animations */
@keyframes pulse-slow {
    0%, 100% { opacity: 0.3; transform: scale(1.05); }
    50% { opacity: 0.5; transform: scale(1.1); }
}

.animate-pulse-slow {
    animation: pulse-slow 8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.scrollbar-hide {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Navigation Link Active State */
.nav-link.active {
    color: #fbbf24; /* amber-400 */
}

/* Page Transitions */
#main-content {
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.fade-out {
    opacity: 0;
    transform: translateX(-10px);
}

.fade-in {
    opacity: 1;
    transform: translateX(0);
}

/* Line Clamp Utility (since we are not using full tailwind plugins) */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

/* Aspect Ratio Utility */
.aspect-video {
    aspect-ratio: 16 / 9;
}

.aspect-square {
    aspect-ratio: 1 / 1;
}
