
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #e0e0e0;
    background: linear-gradient(180deg, #1a1a1a 0%, #121212 100%);
}

/* Navigation Styles */
nav {
    background: linear-gradient(90deg, #4F46E5, #6366F1);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Gradient Utilities */
.bg-clip-text-override {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Gradient Buttons */
.btn-gradient-cyan {
    background: linear-gradient(90deg, #06b6d4, #0ea5e9);
    border-radius: 9999px;
}

.btn-gradient-purple {
    background: linear-gradient(90deg, #8b5cf6, #a855f7);
}

.btn-gradient-pink {
    background: linear-gradient(90deg, #ec4899, #db2777);
}

.button-shadow {
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.button-shadow:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}

/* Card Styles */
.card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Channel List Cards */
.channel-card {
    background: #1a1a1a;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.channel-card:hover {
    transform: scale(1.02);
}

/* Form Inputs */
.input-field {
    background-color: #1e1e1e !important;
    border: 1px solid #2c2c2c;
    border-radius: 0.5rem;
    padding: 0.75rem;
    color: #e0e0e0;
}

.input-field:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

/* Animations */
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container {
        padding: 1rem 2rem;
    }
    
    .button-lg {
        padding: 0.75rem 2rem;
        font-size: 0.9rem;
    }
}
