:root {
    /* Dark Navy Blue Theme Colors */
    --primary-dark: #001f3f;          /* Dark Navy Blue */
    --secondary-dark: #003366;        /* Slightly lighter navy */
    --accent-blue: #00aaff;           /* Bright accent blue */
    --accent-blue-light: #33bbff;     /* Lighter accent blue */
    --accent-purple: #7209b7;         /* Accent purple */
    --accent-green: #10b981;          /* Success green */
    --text-light: #e2e8f0;            /* Light text */
    --text-light-secondary: #94a3b8;  /* Secondary text */
    --border-color: rgba(0, 51, 102, 0.3);
    --border-color-hover: rgba(0, 170, 255, 0.5);
    --scrollbar-color: rgba(0, 51, 102, 0.7);
    --scrollbar-color-hover: rgba(0, 51, 102, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    min-height: 100vh;
    color: var(--text-light);
}

.glass-effect {
    background: rgba(0, 31, 63, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.stream-card {
    transition: all 0.3s ease;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(0, 31, 63, 0.5);
    border: 1px solid var(--border-color);
}

.stream-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
    border-color: var(--border-color-hover);
}
.live-indicator {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

.donation-animation {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.chat-message {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.donation-alert {
    animation: bounceIn 0.6s ease-out;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    70% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    overflow: auto;
    padding: 20px;
}

.modal.active {
    display: flex;
}

@media (max-width: 768px) {
    .modal {
        padding: 10px;
    }
}

.stream-type-badge {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--secondary-dark);
    box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.5);
}
.badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.viewer-count {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 6px 12px;
}

/* Enhanced button styles */
button {
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--scrollbar-color);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--scrollbar-color-hover);}

/* Input fields */
input, textarea, select {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: white;
    transition: all 0.3s ease;
}

input::placeholder, textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Header enhancements */
header h1 {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Card enhancements */
.stream-card img {
    transition: transform 0.3s ease;
}

.stream-card:hover img {
    transform: scale(1.05);
}

/* Live badge enhancements */
.live-badge {
    background: linear-gradient(45deg, var(--secondary-dark), var(--primary-dark));
    color: white;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
/* Category filter enhancements */
.category-filter {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.category-filter:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.category-filter.active {
    background: linear-gradient(45deg, var(--accent-blue), var(--accent-blue-light));
    border-color: transparent;
    color: white;
    font-weight: 600;
}
/* Donation button enhancements */
.donation-button {
    background: linear-gradient(45deg, var(--accent-blue), var(--secondary-dark));
    color: white;
    font-weight: 700;
    padding: 16px;
    border-radius: 16px;
    transition: all 0.3s ease;
}
.donation-button:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 51, 102, 0.6);
}

/* Notification styles */
.notification {
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Loading spinner */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Stream category option styles */
.stream-category-option {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: white;
    transition: all 0.3s ease;
}

.stream-category-option:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.stream-category-option.selected {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-blue-light) 100%);
    border-color: transparent;
}

/* Focus states for better accessibility */
input:focus, textarea:focus, select:focus, button:focus {
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
}