@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;800&display=swap');

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

/* StreamOne Animated Glowing Logo */
.streamone-logo {
    font-weight: 800;
    font-size: 2rem;
    background: linear-gradient(90deg, #06B6D4, #8B5CF6, #E50914, #06B6D4);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 4s linear infinite;
    position: relative;
}

.streamone-logo::after {
    content: 'StreamOne';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #06B6D4, #8B5CF6, #E50914, #06B6D4);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 4s linear infinite;
    filter: blur(15px);
    opacity: 0.7;
    z-index: -1;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #09090b; /* Deep Charcoal */
}
::-webkit-scrollbar-thumb {
    background: #27272a;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #8B5CF6; /* Electric Purple */
}

/* Sticky footer structure */
.page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.main-content {
    flex: 1;
}

/* Glassmorphism utility */
.glass {
    background: rgba(24, 24, 27, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Channel Card Hover Micro-animation */
.channel-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.channel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.05), transparent);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
}
.channel-card:hover::before {
    left: 150%;
}
.channel-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 25px -5px rgba(139, 92, 246, 0.15), 0 8px 10px -6px rgba(139, 92, 246, 0.15);
    border-color: #8B5CF6;
}

/* Premium Button Glow */
.premium-btn-glow {
    animation: buttonGlow 2s ease-in-out infinite alternate;
}

@keyframes buttonGlow {
    from { box-shadow: 0 0 10px 2px rgba(139, 92, 246, 0.4); }
    to { box-shadow: 0 0 25px 8px rgba(139, 92, 246, 0.8), 0 0 10px 2px rgba(6, 182, 212, 0.6); }
}
