        :root {
            --primary-color: #8A2BE2;
            --secondary-color: #4B0082;
            --boosty-orange: #FF6B35;
            --dark-bg: #0A0A1A;
            --light-bg: #1A1A2E;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0D0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: var(--dark-bg);
            color: var(--text-primary);
            line-height: 1.6;
            padding: 20px;
        }

        .admin-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .admin-header {
            text-align: center;
            margin-bottom: 3rem;
            padding: 2rem;
            background: rgba(255, 107, 53, 0.1);
            border-radius: 15px;
            border: 1px solid rgba(255, 107, 53, 0.3);
        }

        .admin-header h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--boosty-orange);
        }

        .admin-nav {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .admin-btn {
            padding: 0.8rem 1.5rem;
            background: rgba(255, 107, 53, 0.2);
            border: 1px solid var(--boosty-orange);
            color: var(--text-primary);
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .admin-btn:hover {
            background: rgba(255, 107, 53, 0.4);
        }

        .admin-btn.active {
            background: var(--boosty-orange);
            color: white;
        }

        .login-section {
            max-width: 400px;
            margin: 5rem auto;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            border: 1px solid rgba(138, 43, 226, 0.3);
        }

        .login-section h2 {
            margin-bottom: 1.5rem;
            color: var(--primary-color);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--text-secondary);
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.8rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 5px;
            color: var(--text-primary);
            font-size: 1rem;
        }

        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }

        .submit-btn {
            width: 100%;
            padding: 1rem;
            background: var(--boosty-orange);
            border: none;
            border-radius: 5px;
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background: #FF8C42;
            transform: translateY(-2px);
        }

        .streams-list {
            display: grid;
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        .stream-item {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(138, 43, 226, 0.2);
            border-radius: 10px;
            padding: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .stream-info h3 {
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .stream-info p {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .stream-actions {
            display: flex;
            gap: 0.5rem;
        }

        .action-btn {
            padding: 0.5rem 1rem;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .edit-btn {
            background: rgba(0, 123, 255, 0.2);
            color: #007bff;
            border: 1px solid #007bff;
        }

        .delete-btn {
            background: rgba(220, 53, 69, 0.2);
            color: #dc3545;
            border: 1px solid #dc3545;
        }

        .add-stream-btn {
            margin-bottom: 2rem;
            padding: 1rem 2rem;
            background: var(--boosty-orange);
            border: none;
            border-radius: 5px;
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .add-stream-btn:hover {
            background: #FF8C42;
            transform: translateY(-2px);
        }

        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            padding: 1rem 1.5rem;
            background: rgba(40, 167, 69, 0.9);
            color: white;
            border-radius: 5px;
            z-index: 1000;
            display: none;
        }

        .logout-btn {
            position: fixed;
            top: 20px;
            right: 20px;
            padding: 0.5rem 1rem;
            background: rgba(220, 53, 69, 0.2);
            color: #dc3545;
            border: 1px solid #dc3545;
            border-radius: 5px;
            cursor: pointer;
            text-decoration: none;
        }

        .logout-btn:hover {
            background: rgba(220, 53, 69, 0.4);
        }